@import url('https://fonts.cdnfonts.com/css/amsterdam');
@import url('https://fonts.cdnfonts.com/css/glacial-indifference-2');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2C1810;
    background-color: #FDF5E6;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #4A3428;
    min-width: 180px;
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #FDF5E6;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #8B593E;
    color: #FDF5E6;
}

/* Breadcrumb */

.breadcrumb {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: auto;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #FDF5E6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #D4B08C;
}


.breadcrumb-separator {
    color: #FDF5E6;
    margin: 0 0.5rem;
}

.news-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    color: #FDF5E6;
    margin-left: auto;
    text-align: left;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 1rem;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4A3428;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
}

.coffee-cup {
    width: 40px;
    height: 40px;
    border: 4px solid #FDF5E6;
    border-radius: 50%;
    position: relative;
    animation: steam 2s infinite;
    margin-right: 10px;
}

.coffee-cup::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 5px;
    width: 15px;
    height: 20px;
    border: 4px solid #FDF5E6;
    border-radius: 0 10px 20px 0;
}

.preloader-text {
    color: #FDF5E6;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin-left: 15px;
    opacity: 0;
    animation: fadeIn 2s infinite;
}

@keyframes steam {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Navigation */
.navbar {
    background-color: #4A3428;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Burger Menu */
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: #FDF5E6;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu:hover {
    color: #D4B08C;
}

.nav-left .logo {
    color: #FDF5E6;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #FDF5E6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4B08C;
}

.nav-right .nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons a {
    color: #FDF5E6;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: #D4B08C;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #D4B08C;
    color: #4A3428;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    font-weight: bold;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #4A3428;
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    display: block;
}

.mobile-nav .nav-links {
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.mobile-nav .nav-links li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav .dropdown-menu {
    position: static;
    background-color: rgba(255, 255, 255, 0.1);
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .burger-menu {
        display: block;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-right .nav-icons {
        gap: 1rem;
    }

    .mobile-nav .nav-links {
        display: flex;
    }

    .mobile-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FDF5E6;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-content h1 {
    font-family: 'Amsterdam', sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 52, 40, 0.7);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Partners Section */
.partners {
    padding: 5rem 2rem;
    background-color: #FDF5E6;
    overflow: hidden;
}

.partners h2 {
    text-align: center;
    color: #4A3428;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.partners-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.partner-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.partner-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.partner-card:hover img {
    transform: scale(1.05);
}

.partner-info {
    padding: 1.5rem;
    text-align: center;
}

.partner-icon {
    font-size: 2rem;
    color: #8B593E;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-icon {
    transform: scale(1.2);
}

.partner-info h3 {
    color: #4A3428;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.partner-info p {
    color: #8B593E;
    font-size: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4A3428;
    color: #FDF5E6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #8B593E;
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .partner-card {
        flex: 0 0 250px;
    }
    
    .partners-carousel {
        padding: 0;
    }
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    position: relative;
    background-color: transparent;
    z-index: 1;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 1.2rem;
    color: #8B593E;
    margin: 1rem 0;
}

.buy-button {
    background-color: #8B593E;
    color: #FDF5E6;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #4A3428;
}

/* About Section */
.about {
    background-color: #4A3428;
    color: #FDF5E6;
    padding: 5rem 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
}

.about-hero {
    height: 70vh;
    background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
    font-family: 'Amsterdam', sans-serif;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FDF5E6;
    padding: 2rem;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.about-hero-content p {
    font-size: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Vision Mission Values Section */
.vmv-section {
    padding: 5rem 2rem;
    background-color: #FDF5E6;
}

.vmv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vmv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F1F0FB;
    text-align: center;
}

.vmv-card:hover {
    transform: translateY(-10px);
    border-color: #4A3428;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vmv-icon {
    font-size: 2.5rem;
    color: #4A3428;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.vmv-card:hover .vmv-icon {
    transform: scale(1.1);
}

.vmv-card h2 {
    color: #4A3428;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vmv-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.vmv-card.values ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.vmv-card.values li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.vmv-card.values li::before {
    content: '•';
    color: #9b87f5;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.vmv-card.values li span {
    color: #4A3428;
    font-weight: 600;
}

@media (max-width: 768px) {
    .vmv-container {
        grid-template-columns: 1fr;
    }

    .vmv-card {
        padding: 1.5rem;
    }

    .vmv-card h2 {
        font-size: 1.5rem;
    }
}

/* Best Sellers Section */
.best-sellers {
    padding: 5rem 2rem;
    background-color: #FDF5E6;
}


.best-sellers h2 {
    text-align: center;
    color: #4A3428;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.best-sellers h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #8B593E;
}

.best-seller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.best-seller-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.best-seller-card:hover {
    transform: translateY(-10px);
}

.best-seller-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #D4B08C;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    z-index: 1;
}   

.best-seller-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    padding: 2rem;
    background: #f8f8f8;
    transition: transform 0.3s ease;
}

.best-seller-card:hover img {
    transform: scale(1.05);
}

.best-seller-content {
    padding: 1.5rem;
}

.best-seller-content h3 {
    font-size: 1.25rem;
    color: #2C1810;
    margin-bottom: 0.5rem;
}

.best-seller-content p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.best-seller-price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4A3428;
    margin-bottom: 1rem;
}

.best-seller-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.best-seller-rating i {
    color: #FFD700;
}

.best-seller-rating span {
    color: #666;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.best-seller-button {
    width: 100%;
    background-color: #4A3428;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.best-seller-button:hover {
    background-color: #2C1810;
}

@media (max-width: 768px) {
    .best-seller-grid {
        grid-template-columns: 1fr;
    }
    
    .best-seller-card img {
        height: 240px;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background-color: #4A3428;
    position: relative;
    overflow: hidden;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 52, 40, 0.95) 0%, rgba(139, 89, 62, 0.95) 100%);
    z-index: 1;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.newsletter-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newsletter-image:hover img {
    transform: scale(1.05);
}

.newsletter-content {
    padding: 2rem;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #FDF5E6;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #D4B08C;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #D4B08C;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #FDF5E6;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #D4B08C;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FDF5E6;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    background-color: #D4B08C;
    color: #4A3428;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: #FDF5E6;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-image {
        order: 2;
    }

    .newsletter-content {
        order: 1;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }
}

.history-section, .owner-section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 1s ease forwards;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid #D4B08C;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.history-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.history-image img:hover {
    transform: scale(1.02);
}

.history-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.owner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.owner-card {
    background: #FFF;
    padding: 2rem;
    border: 1px solid #D4B08C;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.owner-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D4B08C;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.owner-image img:hover {
    transform: scale(1.1);
}

.owner-card h3 {
    color: #4A3428;
    margin-bottom: 0.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Services Page Styles */
.services-hero {
    height: 60vh;
    background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    color: #FDF5E6;
    z-index: 1;
    padding: 2rem;
}

.services-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.services-hero-content p {
    font-size: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #4A3428;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border: 1px solid #D4B08C;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #4A3428;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.service-features li {
    color: #8B593E;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4B08C;
}

.kape-services {
    background-color: #FDF5E6;
}

.professional-services {
    background-color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #FDF5E6;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    opacity: 0.7;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    color: #4A3428;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(74, 52, 40, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    margin: 2rem auto;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(74, 52, 40, 0.15);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #FDF5E6;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4A3428;
    color: #FDF5E6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #8B593E;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D4B08C;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4A3428;
    transform: scale(1.2);
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

.stars i {
    margin: 0 2px;
}

.testimonial-text {
    color: #4A3428;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-name {
    color: #8B593E;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-title {
    color: #8B593E;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: #FDF5E6;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #D4B08C;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #8B593E;
    color: #FDF5E6;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #4A3428;
}

/* Footer */
.footer {
    background-color: #4A3428;
    color: #FDF5E6;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #FDF5E6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D4B08C;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #8B593E;
}

/* Products Page Specific Styles */
.products-hero {
    height: 40vh;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.products-hero-content h1 {
    font-size: 3rem;
    color: #4A3428;
    margin-bottom: 1rem;
}

.products-hero-content p {
    font-size: 1.2rem;
    color: #8B593E;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.products-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.filters {
    margin-bottom: 2rem;
    text-align: center;
}

.filters h3 {
    color: #4A3428;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #4A3428;
    background: transparent;
    color: #4A3428;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #4A3428;
    color: #FDF5E6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #4A3428;
    color: #FDF5E6;
}

.filter-group h4 {
    margin-bottom: 0.5rem;
    color: #4A3428;
}

.filter-group label {
    display: block;
    margin: 0.5rem 0;
    color: #666;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    color: #4A3428;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-details p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #F1F0FB;
    color: #4A3428;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.price-buy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #4A3428;
    font-weight: 600;
    font-size: 1.1rem;
}

.buy-button {
    padding: 0.5rem 1rem;
    background: #4A3428;
    color: #FDF5E6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background: #8B593E;
}

@media (max-width: 768px) {
    .products-section {
        padding: 2rem 1rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Detail Page Styles */
.product-detail {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
}

.product-breadcrumb {
    margin-bottom: 2rem;
    color: #666;
}

.product-breadcrumb a {
    color: #8B593E;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-gallery {
    position: relative;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.05);
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumbnail-images img.active,
.thumbnail-images img:hover {
    opacity: 1;
}

.product-info h1 {
    font-size: 2.5rem;
    color: #4A3428;
    margin-bottom: 1rem;
}

.product-rating {
    color: #FFB800;
    margin-bottom: 1rem;
}

.product-rating span {
    color: #666;
    margin-left: 0.5rem;
}

.product-price {
    font-size: 2rem;
    color: #8B593E;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1rem;
}

.option-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4A3428;
}

.option-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #D4B08C;
    border-radius: 5px;
    background-color: #fff;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #D4B08C;
    border-radius: 5px;
}

.quantity-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    color: #8B593E;
    cursor: pointer;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 0.5rem;
}

.add-to-cart-btn {
    flex: 1;
    background-color: #8B593E;
    color: #FDF5E6;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #4A3428;
}

.wishlist-btn {
    background: none;
    border: 1px solid #D4B08C;
    padding: 0.8rem;
    border-radius: 5px;
    color: #8B593E;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background-color: #FDF5E6;
}

.product-meta {
    color: #666;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #D4B08C;
}

.product-meta p {
    margin-bottom: 0.5rem;
}

.product-tabs {
    margin: 3rem 0;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #D4B08C;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: #8B593E;
}

.tab-btn.active {
    color: #8B593E;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8B593E;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Additional Information Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.info-table th,
.info-table td {
    padding: 1rem;
    border-bottom: 1px solid #D4B08C;
    text-align: left;
}

.info-table th {
    width: 30%;
    color: #4A3428;
    font-weight: 600;
    background-color: #FDF5E6;
}

/* Reviews Styles */
.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem;
    background-color: #FDF5E6;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: #4A3428;
    display: block;
}

.stars {
    color: #FFB800;
    margin: 0.5rem 0;
}

.total-reviews {
    color: #666;
    font-size: 0.9rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 1rem;
}

.bar {
    height: 8px;
    background-color: #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background-color: #FFB800;
    border-radius: 4px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer-info h4 {
    margin: 0;
    color: #4A3428;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.review-text {
    color: #2C1810;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-photos {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.review-photos img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-hero-content h1 {
        font-size: 2rem;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
    }
    
    .rating-bar {
        grid-template-columns: 50px 1fr 30px;
    }
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.close-modal:hover {
    color: #ccc;
}

/* FAQ Hero Section */
.faq-hero {
    height: 50vh;
    background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
    font-family: 'Amsterdam', sans-serif;
}

.faq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    color: #FDF5E6;
    padding: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.faq-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.faq-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #FDF5E6;
}

.faq-categories {
    display: grid;
    gap: 3rem;
}

.faq-category {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-5px);
}

.faq-category h2 {
    color: #4A3428;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category h2 i {
    color: #8B593E;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid #D4B08C;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #4A3428;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: #8B593E;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero-content h1 {
        font-size: 2.5rem;
    }

    .faq-hero-content p {
        font-size: 1rem;
    }

    .faq-category {
        padding: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }
}


/* News Blog Section */
.news-blog {
    padding: 5rem 2rem;
    background-color: #FDF5E6;
    overflow: hidden;
}

.news-blog h2 {
    text-align: center;
    color: #4A3428;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.news-blog h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #8B593E;
}

.blog-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.blog-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.blog-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.blog-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4A3428;
    color: #FDF5E6;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
}

.blog-date span {
    display: block;
}

.blog-date span:first-child {
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #4A3428;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #8B593E;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #8B593E;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #4A3428;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4A3428;
    color: #FDF5E6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.blog-carousel-btn:hover {
    background: #8B593E;
}

.blog-carousel-btn.prev-btn {
    left: 0;
}

.blog-carousel-btn.next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 300px;
    }
    
    .blog-carousel {
        padding: 0;
    }
    
    .news-blog h2 {
        font-size: 2rem;
    }
}

/* Cart */
.cart-container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-title {
    text-align: center;
    color: #4A3428;
    margin-bottom: 40px;
    grid-column: 1 / -1;
}

.cart-items {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 20px;
    border-bottom: 1px solid #eee;
    gap: 20px;
}

.cart-item-image {
    position: relative;
    width: 150px;
    height: 150px;
}

.cart-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-details h3 {
    color: #4A3428;
    margin: 0;
    font-size: 1.2rem;
}

.item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 5px;
}

.quantity-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A3428;
    cursor: pointer;
    transition: color 0.3s ease;
}

.quantity-btn:hover {
    color: #8B593E;
}

.quantity {
    font-weight: 500;
    min-width: 30px;
    text-align: center;
}

.price {
    font-weight: 600;
    color: #4A3428;
    font-size: 1.1rem;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.remove-btn:hover {
    color: #cc0000;
}

.cart-summary {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #4A3428;
    margin-top: 10px;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #4A3428;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: #8B593E;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: #666;
    grid-column: 1 / -1;
}

.continue-shopping {
    display: inline-block;
    margin-top: 20px;
    color: #4A3428;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: #8B593E;
}

.special-instructions {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.special-instructions label {
    display: block;
    color: #4A3428;
    font-weight: 500;
    margin-bottom: 8px;
}

.special-instructions textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #D4B08C;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    background: white;
    color: #4A3428;
    transition: border-color 0.3s ease;
}

.special-instructions textarea:focus {
    outline: none;
    border-color: #8B593E;
}

.special-instructions textarea::placeholder {
    color: #999;
}

.special-instructions .char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 100px 1fr;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }
}

/* News Page Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 80px auto 0;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeIn 0.6s ease-out forwards;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4A3428;
    color: #FDF5E6;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: #4A3428;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.news-category {
    background: #8B593E;
    color: #FDF5E6;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-hero {
    height: 60vh;
    background: linear-gradient(to right, #243949 0%, #517fa4 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb') center/cover no-repeat;
    opacity: 0.3;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.news-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    color: #FDF5E6;
}

.news-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.news-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 2.5rem;
    }
    
    .news-hero p {
        font-size: 1rem;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem auto;
    padding: 1rem;
}

.pagination-button {
    background: #4A3428;
    color: #FDF5E6;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.pagination-button:hover {
    background: #8B593E;
}

.pagination-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.pagination-info {
    color: #4A3428;
    font-size: 1rem;
}

.news-card {
    display: none;
}

.news-card.active {
    display: block;
    animation: fadeIn 0.6s ease-out forwards;
}

/* News Details */
.news-details {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
}

.news-header {
    margin-bottom: 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1rem 0;
    color: #666;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.news-category {
    background: #8B593E;
    color: #FDF5E6;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    line-height: 1.8;
    color: #333;
}

.news-content p {
    margin-bottom: 1.5rem;
}

.news-content h2 {
    color: #4A3428;
    margin: 2rem 0 1rem;
}

.share-section {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.share-button:hover {
    opacity: 0.9;
}

.facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }
.linkedin { background: #0A66C2; }

.related-articles {
    margin: 4rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-10px);
}

.related-image {
    height: 200px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    color: #4A3428;
    margin-bottom: 0.5rem;
}

.related-content p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .news-details {
        margin-top: 100px;
    }

    .news-image {
        height: 300px;
    }

    .news-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* 404 Error Page Styles */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%);
    padding: 2rem;
    margin-top: -60px; /* Adjust for navbar height */
}

.error-content {
    text-align: center;
    color: #FDF5E6;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.error-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: #D4B08C;
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.back-home {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #D4B08C;
    color: #4A3428;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home:hover {
    background-color: #FDF5E6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .error-content h1 {
        font-size: 6rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-content p {
        font-size: 1rem;
    }
}

/* Artist Hero Section */
.artist-hero {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FDF5E6;
    margin-top: 60px;
}

.artist-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 52, 40, 0.7);
}

.artist-hero .hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.artist-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.artist-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.bg-alternate {
    background-color: #FFF8F0;
}


.artist-profile {
    padding: 8rem 2rem 5rem;
    background-color: #FDF5E6;
    transition: background-color 0.3s ease;
}

.artist-profile .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links .instagram {
    background-color: #E4405F;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links .instagram:hover {
    background-color: #D63251;
}

.artist-container {
    max-width: 1200px;
    margin: 0 auto;
}

.artist-header {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.artist-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info {
    flex: 1;
}

.artist-info h1 {
    font-size: 2.5rem;
    color: #4A3428;
    margin-bottom: 0.5rem;
}

.artist-title {
    font-size: 1.2rem;
    color: #8B593E;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #4267B2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #365899;
}

.about-artist {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-artist h2 {
    color: #4A3428;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-artist p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Artist Projects Section */
.artist-projects {
    margin-top: 4rem;
}

.artist-projects h2 {
    color: #4A3428;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-item {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: #FDF5E6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artist-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .artist-image {
        flex: 0 0 250px;
        height: 250px;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}


/* Partners Shop Page Styles */
.partners-hero {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.partners-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 52, 40, 0.7);
}

.partners-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FDF5E6;
    padding: 2rem;
}

.partners-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.partners-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.shops-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.shop-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.shop-card:hover {
    transform: translateY(-10px);
}

.shop-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.shop-info {
    padding: 1.5rem;
}

.shop-info h3 {
    color: #4A3428;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location, .contact {
    color: #8B593E;
    margin: 0.25rem 0;
}

/* Modal Styles */
.shop-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 5vh auto;
    width: 90%;
    max-width: 1200px;
    border-radius: 10px;
    position: relative;
    padding: 2rem;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #4A3428;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modal-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-img:hover {
    opacity: 0.8;
}

.modal-info {
    color: #4A3428;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-info p {
    color: #8B593E;
    margin-bottom: 0.5rem;
}

.shop-description, .shop-hours {
    margin-top: 2rem;
}

.shop-description h3, .shop-hours h3 {
    color: #4A3428;
    margin-bottom: 0.5rem;
}

.shop-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .partners-hero h1 {
        font-size: 2.5rem;
    }

    .partners-hero p {
        font-size: 1.2rem;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 2vh auto;
        padding: 1rem;
    }
}

/* Messenger */
#messenger-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; font-family: 'Poppins', sans-serif; }
.messenger-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); transition: transform 0.3s ease; position: relative; }
.messenger-icon i { color: #FDF5E6; font-size: 24px; }
.messenger-icon:hover { transform: scale(1.1); }
.messenger-icon.hidden { display: none; }
.notification-badge { position: absolute; top: -5px; right: -5px; background-color: #FF4B4B; color: white; font-size: 12px; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #FDF5E6; }
.messenger-window { position: fixed; bottom: 100px; right: 20px; width: 340px; height: 450px; background-color: #FDF5E6; border-radius: 15px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; }
.messenger-window.open { opacity: 1; visibility: visible; transform: translateY(0); }
.messenger-header { background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%); padding: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; justify-content: space-between; align-items: center; color: #FDF5E6; }
.messenger-title { display: flex; align-items: center; gap: 10px; }
.messenger-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.messenger-info h3 { font-size: 16px; margin: 0; }
.online-status { font-size: 12px; opacity: 0.8; }
.close-messenger { background: none; border: none; color: #FDF5E6; cursor: pointer; padding: 5px; }
.messenger-messages { flex-grow: 1; padding: 15px; overflow-y: auto; background-color: #FFF; }
.message { margin-bottom: 15px; max-width: 80%; position: relative; }
.message p { padding: 10px 15px; border-radius: 15px; margin: 0; font-size: 14px; }
.message-time { font-size: 11px; color: #999; margin-top: 5px; display: block; }
.bot-message { margin-right: auto; }
.bot-message p { background-color: #F0F0F0; color: #333; }
.user-message { margin-left: auto; }
.user-message p { background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%); color: #FDF5E6; }
.typing-indicator { padding: 15px; display: flex; gap: 4px; margin-bottom: 15px; }
.typing-indicator span { width: 8px; height: 8px; background-color: #D4B08C; border-radius: 50%; animation: typing 1s infinite; opacity: 0.4; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.messenger-input { padding: 15px; background-color: #FFF; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; display: flex; align-items: center; gap: 10px; border-top: 1px solid #EEE; }
.input-container { flex-grow: 1; display: flex; align-items: center; background-color: #F5F5F5; border-radius: 20px; padding: 8px 15px; }
.input-container input { flex-grow: 1; border: none; background: none; padding: 0 10px; outline: none; font-size: 14px; }
.emoji-icon, .attachment-icon { color: #999; cursor: pointer; font-size: 18px; }
.send-messenger { background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%); border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s ease; }
.send-messenger i { color: #FDF5E6; font-size: 16px; }
.send-messenger:hover { transform: scale(1.1); }
.quick-actions { display: flex; gap: 10px; margin-top: 10px; margin-bottom: 5px; }
.quick-action-btn { background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%); color: #FDF5E6; border: none; padding: 8px 12px; border-radius: 20px; cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 5px; transition: transform 0.2s ease; }
.quick-action-btn:hover { transform: scale(1.05); }
.quick-action-btn i { font-size: 12px; }

/* Emojis */
.emoji-picker {
    position: absolute;
    bottom: 70px;
    left: 10px;
    z-index: 1000;
    --background: #FDF5E6;
    --border-color: #E5E5E5;
    --indicator-color: #8B593E;
    --hover-background: #F0F0F0;
    --category-icon-size: 20px;
}

/* Ensure the emoji picker stays within the messenger window */
.messenger-window {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 340px;
    height: 450px;
    background-color: #FDF5E6;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: visible; /* Allow emoji picker to overflow */
}


@media (max-width: 768px) {
    .messenger-window {
        width: calc(100% - 40px);
        height: calc(100vh - 120px);
        bottom: 80px;
    }

    #messenger-container {
        bottom: 10px;
        right: 10px;
    }
}
