/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --pink: #FAF5EB; /* Cream background exactly matching the image */
    --green: #2A3B29; /* Dark forest green exactly matching the footer */
    --gold: #B69A5D; /* Classic gold from the footer headings */
    --dark: #3F3730; /* Dark brownish text for regular content */
    --light: #FFFFFF;
    --grey: #EAE4D7; /* Darker cream */
    --shadow: 0 5px 20px rgba(0,0,0,0.05); /* Soft shadow */
    --transition: all 0.3s ease;

    /* Responsive Typography Scaling */
    --font-size-h1: clamp(28px, 5vw, 48px);
    --font-size-h2: clamp(24px, 4vw, 36px);
    --font-size-h3: clamp(18px, 3vw, 24px);
    --font-size-body: clamp(14px, 2vw, 16px);
    --font-size-small: clamp(12px, 1.5vw, 14px);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: transparent;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Navigation */
.mobile-search-only { display: none; }
.navbar {
    background: var(--pink);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(243, 236, 225, 0.95);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
}

.logo span {
    background: linear-gradient(
        110deg,
        var(--gold) 35%,
        #ffffff 50%,
        var(--gold) 65%
    );
    background-size: 400% auto;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineRibbon 3s linear infinite alternate;
    display: inline-block;
}

@keyframes shineRibbon {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.nav-search form {
    display: flex;
    align-items: center;
    background: var(--grey);
    border-radius: 30px;
    padding: 5px 15px;
}

.nav-search input {
    border: none;
    background: none;
    padding: 8px;
    width: 200px;
    outline: none;
}

.nav-search button {
    background: none;
    border: none;
    color: var(--green);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--green);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.05);
    background: #128C7E;
    color: white;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--transition);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    padding: 80px 0 0 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--pink);
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 21 / 9;
    height: auto;
    margin-top: 20px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 0;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide:first-child {
    opacity: 1;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    font-size: 20px;
    backdrop-filter: blur(10px);
    padding: 0;
    font-family: inherit;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.15);
}

.carousel-button:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-button.prev {
    left: 30px;
}

.carousel-button.next {
    right: 30px;
}

.hero > .container {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    width: 100%;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
    justify-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(196, 169, 98, 0.15);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: clamp(15px, 2vw, 20px);
    border: 1px solid rgba(196, 169, 98, 0.4);
}

.hero-content {
    max-width: 700px;
    width: 100%;
}

.hero-content h1 {
    font-size: var(--font-size-h1);
    line-height: 1.2;
    margin-bottom: clamp(15px, 2vw, 20px);
    color: var(--dark);
    font-weight: 700;
}

.hero-content p {
    font-size: var(--font-size-body);
    color: #444;
    margin-bottom: clamp(20px, 3vw, 30px);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    border-color: var(--green);
    color: var(--green);
}

.hero-buttons .btn-outline:hover {
    background: var(--green);
    color: white;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border: 1px solid rgba(196, 169, 98, 0.5);
    font-weight: 600;
}

.btn-primary:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 169, 98, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.product-info .btn-outline {
    background: var(--green);
    color: white;
    border: 2px solid var(--green);
    font-weight: 600;
    margin-top: 15px;
    padding: 10px 15px;
    font-size: 14px;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.product-info .btn-outline:hover {
    background: #0f4620;
    border-color: #0f4620;
    color: white;
}

.btn-light {
    background: white;
    color: var(--green);
}

.btn-light:hover {
    background: var(--gold);
    color: white;
}

.btn-google {
    background: #1b6e34;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-google:hover {
    background: #0f4620;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    background: rgba(196, 169, 98, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 169, 98, 0.4);
}

.hero-features i {
    color: var(--gold);
}

.hero-image {
    display: none;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-header p {
    color: #666;
    font-size: 18px;
}

/* Categories Section */
.categories {
    padding: clamp(60px, 8vh, 80px) 0;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 3vw, 30px);
}

.category-card {
    flex: 1 1 250px;
    max-width: 320px;
    padding: 50px 30px;
    border-radius: 0; /* Clean sharp corners or very subtle rounding */
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.category-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: var(--gold);
}

.category-info-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-image {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
}

.category-card:hover .category-image {
    transform: scale(1.1) translateY(-5px);
}

.category-separator {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 15px auto;
    transition: width 0.5s ease;
}

.category-card:hover .category-separator {
    width: 80px;
}

.category-card h3 {
    margin-bottom: 5px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.category-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* Products Grid */
.featured-products {
    padding: clamp(60px, 8vh, 80px) 0;
    background: var(--grey);
}

/* Filter Tabs Featured Products */
.filter-tabs-featured {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 2vw, 15px);
    margin-bottom: clamp(30px, 4vw, 40px);
}

.filter-tab {
    padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
    background: white;
    color: var(--dark);
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    font-size: var(--font-size-body);
}

.filter-tab:hover {
    background: var(--green) !important;
    color: white !important;
    border-color: var(--green);
}

.filter-tab.active {
    background: var(--green) !important;
    color: white !important;
    border-color: var(--gold);
    border-width: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 1;
}

.product-badge ~ .product-badge {
    top: 50px;
}

.product-badge ~ .product-badge ~ .product-badge {
    top: 85px;
}


.product-badge.best-seller {
    background: var(--gold);
}

.product-badge.new {
    background: var(--green);
}

.product-badge.flower-type {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.product-badge.flower-type.fresh {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

.product-badge.flower-type.artificial {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #666;
}

.product-wishlist:hover {
    background: var(--gold);
    color: white;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h3 {
    font-size: 18px;
    margin: 10px 0;
    font-family: 'Poppins', sans-serif;
    flex-grow: 1;
}

.product-rating {
    margin-bottom: 15px;
}

.product-rating i {
    color: #ddd;
    font-size: 14px;
}

.product-rating i.active {
    color: #FFB800;
}

.product-rating span {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}



.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 15px;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: transparent;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.why-us-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: var(--grey);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.why-us-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.why-us-card p {
    color: #666;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--pink);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-rating i {
    color: #ddd;
    font-size: 12px;
}

.testimonial-rating i.active {
    color: #FFB800;
}

.verified-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--green);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.testimonial-product {
    color: var(--gold);
}

/* CTA Banner */
.cta-banner {
    background: #739072; /* Sage green matching image */
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.cta-banner p {
    margin-bottom: 25px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--green); /* Darker forest green matching image */
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(47,82,48,0.9), rgba(47,82,48,0.9)), url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page */
.about-story {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(min(100%, 250px), 1fr) minmax(min(100%, 250px), 1fr);
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
}

.about-images {
    position: relative;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image img {
    width: 100%;
    height: auto;
}

.inset-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.inset-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 20px;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-top: 30px;
}

.milestone {
    text-align: center;
}

.milestone-year {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.milestone-desc {
    font-size: 14px;
    color: #666;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--grey);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-role {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 5px;
}

.team-experience {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gold);
    color: white;
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: #FFFFFF; /* Latar belakang putih bersih */
    border-top: 1px solid rgba(182, 154, 93, 0.2); /* Garis atas emas tipis */
    border-bottom: 1px solid rgba(182, 154, 93, 0.2);
    margin: 40px 0 0 0;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border-radius: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(30px, 4vw, 40px);
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--pink); /* Warna dasar krem khas Sariaji */
    border-radius: 16px;
    border: 1px solid rgba(182, 154, 93, 0.15); /* Border emas sangat transparan */
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.value-item i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    color: var(--green); /* Hijau Gelap Sariaji */
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Products Page */
.products-page {
    padding: 60px 0;
}

/* Filter Section */
.filter-section {
    margin-bottom: 50px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-header {
    text-align: center;
    margin-bottom: 30px;
}

.filter-header h2 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--green) 0%, #0f4620 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filter-header p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.filter-bar {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(27, 110, 52, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    border: 1px solid rgba(27, 110, 52, 0.1);
    transition: all 0.3s ease;
}

.filter-bar:hover {
    box-shadow: 0 8px 30px rgba(27, 110, 52, 0.12);
}



.filter-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-icon {
    position: absolute;
    left: 12px;
    color: var(--green);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.filter-dropdown {
    padding: 10px 30px 10px 38px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    outline: none;
    background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%231b6e34" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat calc(100% - 10px) center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 140px;
}

.filter-dropdown option {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white !important;
    color: #333 !important;
    padding: 10px;
}

.filter-dropdown:hover {
    border-color: var(--green);
    box-shadow: 0 3px 12px rgba(27, 110, 52, 0.1);
}

.filter-dropdown:focus {
    border-color: var(--green);
    box-shadow: 0 4px 15px rgba(27, 110, 52, 0.15);
}

.filter-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    color: var(--green);
    font-size: 12px;
    pointer-events: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--grey);
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--green);
    color: white;
}

.no-products {
    text-align: center;
    padding: 60px 0;
}

.no-products i {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Rating Summary */
.rating-summary {
    padding: 40px 0;
    background: var(--grey);
}

.rating-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: minmax(min(100%, 150px), 1fr) minmax(200px, 2fr);
    gap: clamp(20px, 3vw, 40px);
    box-shadow: var(--shadow);
}

.rating-average {
    text-align: center;
}

.rating-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.rating-stars {
    margin: 10px 0;
}

.rating-stars i {
    color: #ddd;
    font-size: 20px;
}

.rating-stars i.active {
    color: #FFB800;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-label {
    width: 60px;
    font-size: 14px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
}

.rating-count {
    width: 30px;
    font-size: 14px;
    color: #666;
}

/* Write Review */
.write-review {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--pink), white);
}

.write-review-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Page */
.contact {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(min(100%, 250px), 1fr) minmax(300px, 1.5fr);
    gap: clamp(30px, 5vw, 50px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: transparent;
    padding: 25px;
    border-radius: 16px;
    box-shadow: none;
    border: 1px solid var(--gold);
    display: flex;
    gap: 20px;
    margin-bottom: 20px; /* Memberi jarak antar kotak */
    transition: var(--transition);
}

.contact-info-card:last-child {
    margin-bottom: 0;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-info-card > i {
    font-size: 24px;
    color: var(--gold);
    width: 45px;
    height: 45px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 16px;
    color: var(--green);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--gold);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold) !important;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

.map-link:hover {
    color: var(--green) !important;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
    margin-top: 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-wa {
    background: #25D366;
    color: white !important;
    border: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white !important;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(15px, 2vw, 20px);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.required {
    color: #ff4444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 169, 98, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Maps */
.maps {
    margin-top: 60px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: var(--grey);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--pink);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
}

/* Product Detail Page */
.breadcrumb {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: var(--green);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.product-detail {
    padding: 60px 0;
    background: transparent;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: minmax(min(100%, 300px), 1fr) minmax(min(100%, 300px), 1fr);
    gap: clamp(30px, 5vw, 50px);
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--gold);
}

.thumb-item:hover {
    opacity: 0.9;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    padding: 20px 0;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-badge {
    display: inline-block;
    background: var(--grey);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.badge-bestseller {
    background: var(--gold);
}

.badge-new {
    background: var(--green);
}

.product-details h1 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grey);
}

.rating i {
    font-size: 18px;
    color: #ddd;
}

.rating i.active {
    color: #FFB800;
}

.rating-count {
    font-size: 14px;
    color: #999;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--green);
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: #FF6B6B;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.description-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--grey);
}

.description-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.description-section p {
    color: #666;
    line-height: 1.8;
}

.quantity-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--grey);
}

.stock-info {
    margin-bottom: 15px;
    font-size: 14px;
    color: #27AE60;
    font-weight: 500;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector label {
    font-weight: 500;
    color: var(--dark);
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--grey);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-input button {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--grey);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.quantity-input button:hover {
    background: var(--gold);
    color: white;
}

.quantity-input input {
    border: none;
    width: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.action-buttons .btn {
    flex: 1;
    padding: 15px 30px;
}

.btn-disabled {
    background: #ccc;
    color: white;
    cursor: not-allowed;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(15px, 2vw, 20px);
    background: var(--grey);
    padding: 20px;
    border-radius: 10px;
}

.info-item {
    text-align: center;
}

.info-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    color: #666;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: var(--grey);
}

/* Responsive Design - Fluid Scaling */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 15px;
    }
    .nav-menu a {
        font-size: 15px;
    }
    .nav-search input {
        width: 150px;
    }
}

@media (max-width: 1024px) {

    .mobile-search-only {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto 0;
    }
    .mobile-search-form {
        display: flex;
        align-items: center;
        background: var(--grey);
        border-radius: 30px;
        padding: 5px 15px;
        width: 100%;
    }
    .mobile-search-form input {
        border: none;
        background: none;
        padding: 8px;
        flex: 1;
        outline: none;
        font-size: 14px;
    }
    .mobile-search-form button {
        background: none;
        border: none;
        color: var(--green);
        cursor: pointer;
    }
    :root {
        --font-size-h1: clamp(28px, 5vw, 42px);
        --font-size-h2: clamp(20px, 4vw, 32px);
    }
    
    .nav-wrapper {
        height: clamp(60px, 10vh, 80px);
    }
    
    .nav-search {
        display: none; /* Hide search on tablets/when zooming to save space */
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: calc(clamp(60px, 10vh, 80px) + 10px); /* Buka di bawah header */
        left: 5%;
        width: 90%; /* Tidak penuh layar */
        height: auto;
        max-height: calc(100vh - 120px);
        background: #fffafa; /* ivory hangat */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 15px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Soft bounce */
        overflow-y: auto;
        
        /* Floating Card Style */
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border: 1px solid rgba(212,175,55,0.15);
        
        /* State Tertutup */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px) scale(0.95);
    }
    
    .nav-menu li {
        width: auto;
        text-align: center;
        border-bottom: none; /* Hilangkan pemisah garis kaku */
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: inline-block;
        padding: 10px 25px;
        color: var(--dark);
        font-size: 22px;
        font-family: var(--serif);
        border-radius: 30px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent;
        color: var(--gold);
        transform: scale(1.05); /* Sedikit zoom saat ditunjuk */
    }
    
    .nav-menu a.active::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--gold);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    #featuredProductsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-card {
        height: auto;
    }
    .product-image {
        height: 150px;
    }

    .floating-wa {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 14px;
    }
    :root {
        --font-size-h1: clamp(24px, 5vw, 32px);
        --font-size-h2: clamp(18px, 4vw, 26px);
        --font-size-h3: clamp(16px, 3vw, 20px);
        --font-size-body: clamp(13px, 2vw, 15px);
    }
    
    .hero {
    display: flex;
    flex-direction: column;
        padding: 60px 0 0 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }

    .hero-carousel {
        height: auto;
        aspect-ratio: 2 / 1; /* Banner slider mobile */
        min-height: unset;
        width: 100%;
        border-radius: 0; /* Tanpa sudut bulat agar pas tepi */
        margin-top: 0;
    }

    .carousel-slide {
        background-size: contain; background-repeat: no-repeat; background-position: center 20px;
        background-position: center;
    }

    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-width: 1px;
    }
    
    .carousel-button.prev {
        left: 5px;
    }
    
    .carousel-button.next {
        right: 5px;
    }

    .hero > .container {
        padding: 30px 15px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-grid,
    .contact-grid,
    .outlet-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 150px;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
        border-radius: 30px;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
        width: 100%;
        margin-top: 20px;
    }
    
    .hero-features span {
        font-size: 13px;
        white-space: nowrap;
        background: rgba(115, 144, 114, 0.1);
        padding: 8px 16px;
        border-radius: 30px;
        color: var(--green);
        font-weight: 500;
    }
    
    .category-card {
        padding: 25px 15px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filter-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .filter-controls {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .filter-dropdown {
        flex: 1;
        min-width: 130px;
        max-width: 170px;
        padding: 10px 8px 10px 35px;
        background-position: calc(100% - 8px) center;
        font-size: 12px;
    }
    
    .filter-header h2 {
        font-size: 22px;
    }
}

/* Outlet Styles */
.outlets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin: 40px 0;
}

.outlet-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.outlet-card-header {
    background: linear-gradient(135deg, var(--green), #1e3a20);
    color: white;
    padding: 20px;
    position: relative;
}

.outlet-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.outlet-badge.main {
    background: var(--gold);
    color: var(--dark);
}

.outlet-badge.branch {
    background: rgba(255,255,255,0.2);
    color: white;
}

.outlet-card-body {
    padding: 20px;
}

.outlet-card-body p {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.outlet-card-body i {
    color: var(--gold);
    width: 20px;
}

.outlet-card-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

/* Outlet Detail */
.outlet-detail {
    padding: 60px 0;
}

.outlet-grid {
    display: grid;
    grid-template-columns: minmax(min(100%, 280px), 1fr) minmax(min(100%, 280px), 1fr);
    gap: clamp(20px, 3vw, 40px);
}

.outlet-detail-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-item i {
    font-size: 24px;
    color: var(--gold);
    width: 40px;
    height: 40px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.detail-item p {
    color: #666;
    margin-bottom: 5px;
}

.detail-item a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.detail-item a:hover {
    color: var(--gold);
}

.outlet-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Outlet Tabs */
.outlets-highlight {
    padding: 20px 0 0;
}

.outlets-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.outlet-tab {
    padding: 12px 30px;
    border: none;
    background: var(--grey);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.outlet-tab i {
    color: var(--gold);
}

.outlet-tab:hover,
.outlet-tab.active {
    background: var(--green);
    color: white;
}

.outlet-tab.active i {
    color: white;
}

.outlet-contact-card {
    display: none;
}

.outlet-contact-card.active {
    display: block;
}

.outlet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Maps Grid */
.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-top: 20px;
}

.map-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-card h4 {
    padding: 15px 20px;
    margin: 0;
    background: var(--pink);
}

.map-address {
    padding: 15px 20px;
    color: #666;
    font-size: 14px;
}

.map-address i {
    color: var(--gold);
    margin-right: 5px;
}

/* Nearby Outlets */
.nearby-outlets {
    padding: 40px 0;
    background: var(--grey);
}

.outlets-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(15px, 2vw, 20px);
    margin-top: 20px;
}

.outlet-mini-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.outlet-mini-card h4 {
    margin-bottom: 10px;
    color: var(--green);
}

.outlet-mini-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Outlet Comparison */
.outlet-comparison {
    margin-top: 50px;
}

.outlet-comparison h3 {
    text-align: center;
    margin-bottom: 20px;
}

.comparison-table {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--green);
    color: white;
    padding: 15px;
    text-align: left;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 500;
    background: var(--pink);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.dropdown-menu li a:hover {
    background: var(--pink);
    color: var(--green);
}

.dropdown-menu i {
    color: var(--gold);
    width: 20px;
}

/* Footer Outlets */
.footer-outlets .outlet-item {
    margin-bottom: 20px;
}

.footer-outlets .outlet-item strong {
    display: block;
    color: var(--gold);
    margin-bottom: 5px;
}

.footer-outlets .outlet-item p {
    margin-bottom: 5px;
    font-size: 12px;
}

.footer-outlets .outlet-item i {
    width: 16px;
    color: var(--gold);
}

.outlet-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
    list-style: none;
}

/* Responsive */
@media (max-width: 768px) {

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    #featuredProductsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-card {
        height: auto;
    }
    .product-image {
        height: 150px;
    }

    .floating-wa {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 14px;
    }
    .outlets-grid,
    .outlet-grid,
    .maps-grid,
    .outlets-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .outlet-actions {
        flex-direction: column;
    }
    
    .outlets-tabs {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        display: none;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .rating-card {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .rating-average {
        padding-bottom: 12px;
        border-bottom: 2px solid #eee;
    }
    
    .rating-number {
        font-size: 36px;
        margin-bottom: 6px;
    }
    
    .rating-stars {
        margin: 4px 0;
    }
    
    .rating-stars i {
        font-size: 14px;
    }
    
    .rating-bars {
        gap: 6px;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-left: 16px;
    }
    
    .rating-bar-item {
        gap: 4px;
        min-width: 0;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        flex-wrap: nowrap;
    }
    
    .rating-label {
        width: 32px;
        font-size: 10px;
        flex-shrink: 0;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .rating-bar {
        height: 5px;
        flex: 1 1 auto;
        min-width: 20px;
        background: #eee;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .rating-bar-fill {
        height: 100%;
        background: var(--gold);
        border-radius: 10px;
    }
    
    .rating-count {
        width: 16px;
        font-size: 10px;
        text-align: center;
        color: var(--dark);
        font-weight: 600;
        flex-shrink: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1;
    }
}
