/* ============================================
   BEEJARO — Premium E-Commerce Stylesheet
   Brand: Natural Green + White + Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --green-900: #0B3D2E;
    --green-800: #0F4D3A;
    --green-700: #156B4E;
    --green-600: #1A7D5C;
    --green-500: #22996F;
    --green-400: #34B888;
    --green-100: #E8F5EF;
    --green-50: #F0FAF5;
    --gold: #C8A951;
    --gold-light: #E8D48B;
    --cream: #FDF8F0;
    --cream-dark: #F5EDDF;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray-600: #6C757D;
    --gray-400: #ADB5BD;
    --gray-200: #E9ECEF;
    --gray-100: #F8F9FA;
    --red: #DC3545;
    --orange: #FD7E14;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--green-900);
    line-height: 1.3;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
a { color: var(--green-700); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-500); }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-primary {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}
.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-800);
}
.btn-outline:hover {
    background: var(--green-800);
    color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: #B8993D;
    border-color: #B8993D;
    color: var(--white);
}
.btn-cart {
    background: var(--green-700);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius);
}
.btn-cart:hover {
    background: var(--green-600);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}
.btn-whatsapp:hover { background: #20BD5A; color: white; }

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--green-900);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.announcement-bar .trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.announcement-bar .trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Header ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow);
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}
.logo img {
    height: 48px;
    width: auto;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--green-800);
    text-decoration: none;
}
.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-600);
    font-weight: 400;
}
.header-search {
    flex: 1;
    max-width: 480px;
    position: relative;
}
.header-search input {
    width: 100%;
    padding: 11px 20px 11px 44px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    background: var(--gray-100);
}
.header-search input:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26,125,92,0.1);
}
.header-search .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-600);
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}
.search-suggestions.active { display: block; }
.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-100);
}
.search-suggestion-item:hover { background: var(--green-50); }
.search-suggestion-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--gray-700);
    font-size: 12px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
.header-action i { font-size: 20px; }
.header-action:hover { color: var(--green-700); }
.header-action .badge-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--green-700);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Navigation ===== */
.nav-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.nav-menu li a {
    display: block;
    padding: 14px 20px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}
.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--green-700);
}
.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--green-700);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-700);
    cursor: pointer;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-700);
}
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-menu li a {
    display: block;
    padding: 14px 20px;
    color: var(--gray-700);
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-menu li a:hover { background: var(--green-50); color: var(--green-700); }

/* ===== Hero Banner ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
    color: var(--white);
}
.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 32px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
}
.hero-buttons .btn-primary:hover {
    background: var(--cream);
    color: var(--green-900);
}
.hero-buttons .btn-outline {
    color: var(--white);
    border-color: var(--white);
}
.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--green-800);
}

.hero-slider { position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: flex; }
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--white); width: 28px; border-radius: 5px; }

/* ===== Section Styles ===== */
.section {
    padding: 70px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-600);
    font-weight: 600;
    margin-bottom: 8px;
}
.section-title {
    font-size: 2.2rem;
    color: var(--green-900);
    margin: 0;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
    border-radius: 2px;
}
.section-bg {
    background: var(--cream);
}

/* ===== Category Cards ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    text-decoration: none;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.1); }
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,61,46,0.85) 0%, rgba(11,61,46,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
}
.category-card-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0 0 4px;
}
.category-card-overlay span {
    font-size: 13px;
    opacity: 0.8;
}

/* ===== Trust Section ===== */
.trust-section {
    background: var(--green-900);
    padding: 48px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
    color: var(--white);
}
.trust-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}
.trust-item h4 {
    color: var(--white);
    font-size: 15px;
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-weight: 600;
}
.trust-item p {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

/* ===== Product Cards ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    border-color: var(--green-400);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}
.badge-bestseller { background: var(--green-700); color: white; }
.badge-new { background: #2196F3; color: white; }
.badge-sale { background: var(--red); color: white; }
.badge-special { background: var(--gold); color: white; }
.badge-limited { background: var(--orange); color: white; }
.badge-gift { background: #9C27B0; color: white; }
.badge-premium { background: var(--green-900); color: var(--gold); }
.product-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
}
.product-actions {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 2;
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}
.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    color: var(--gray-700);
    font-size: 14px;
    transition: var(--transition);
}
.product-action-btn:hover {
    background: var(--green-700);
    color: var(--white);
}
.product-card-body {
    padding: 16px;
}
.product-card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-600);
    font-weight: 600;
    margin-bottom: 6px;
}
.product-card-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--green-700); }
.product-card-weight {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 8px;
}
.product-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.stars { color: #FFC107; font-size: 12px; display: flex; gap: 1px; }
.rating-text { font-size: 12px; color: var(--gray-600); }
.product-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-800);
}
.price-original {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}
.price-discount {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
}
.product-card-stock {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}
.in-stock { color: #198754; }
.low-stock { color: var(--orange); }
.out-of-stock { color: var(--red); }

.product-card-footer {
    display: flex;
    gap: 8px;
}
.product-card-footer .btn-cart { flex: 1; font-size: 12px; padding: 9px 12px; }

/* ===== Brand Story ===== */
.story-section {
    background: var(--cream);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.story-image img { width: 100%; display: block; }
.story-content h2 {
    font-size: 2rem;
    margin: 0 0 20px;
}
.story-content p {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
}
.story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.story-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.story-feature i {
    color: var(--green-600);
    font-size: 18px;
}

/* ===== Footer ===== */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
}
.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--green-600);
    border-color: var(--green-600);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.footer-payments {
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer-payments img { height: 24px; opacity: 0.7; }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ===== Shop Page ===== */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    padding: 40px 0;
}
.shop-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}
.filter-group {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 24px;
}
.filter-group h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--gray-900);
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
}
.filter-option input[type="checkbox"] {
    accent-color: var(--green-700);
}
.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}
.price-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 13px;
}
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.shop-toolbar .result-count {
    font-size: 14px;
    color: var(--gray-600);
}
.shop-sort select {
    padding: 8px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--white);
    cursor: pointer;
}

/* ===== Product Detail ===== */
.product-detail {
    padding: 40px 0 80px;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.product-gallery { position: relative; }
.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 1;
    margin-bottom: 12px;
}
.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-thumbnails {
    display: flex;
    gap: 10px;
}
.product-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}
.product-thumbnail.active,
.product-thumbnail:hover { border-color: var(--green-700); }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
    font-size: 1.8rem;
    margin: 0 0 8px;
}
.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray-600);
}
.product-meta span { display: flex; align-items: center; gap: 4px; }
.product-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.product-price-box {
    background: var(--green-50);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}
.product-price-box .price-current { font-size: 28px; }
.product-price-box .price-original { font-size: 18px; }
.product-price-box .price-discount { font-size: 14px; padding: 4px 10px; background: rgba(220,53,69,0.1); border-radius: 4px; }
.product-price-box .gst-note { font-size: 12px; color: var(--gray-600); margin-top: 6px; }

.variant-selector { margin-bottom: 24px; }
.variant-selector h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
}
.variant-options { display: flex; gap: 10px; flex-wrap: wrap; }
.variant-btn {
    padding: 8px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.variant-btn:hover,
.variant-btn.active {
    border-color: var(--green-700);
    color: var(--green-700);
}
.variant-btn.active { background: var(--green-50); }

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}
.qty-selector button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-selector button:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.qty-selector button:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.qty-selector input {
    width: 60px;
    height: 40px;
    border: 2px solid var(--gray-200);
    border-left: 0;
    border-right: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
}
.product-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.product-buttons .btn { flex: 1; }

.product-tabs {
    margin-top: 60px;
}
.tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 30px;
}
.tab-btn {
    padding: 14px 28px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.tab-btn.active {
    color: var(--green-700);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green-700);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content h3 { font-size: 1.2rem; margin: 0 0 16px; }
.tab-content p, .tab-content li { color: var(--gray-700); line-height: 1.8; }

/* ===== Cart ===== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    padding: 40px 0;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    border-bottom: 2px solid var(--gray-200);
}
.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}
.cart-product {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cart-product img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
}
.cart-product-info h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}
.cart-product-info span { font-size: 12px; color: var(--gray-600); }
.cart-remove {
    background: none;
    border: none;
    color: var(--red);
    cursor: pointer;
    font-size: 13px;
}
.cart-remove:hover { text-decoration: underline; }

.order-summary {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 140px;
}
.order-summary h3 {
    font-size: 1.1rem;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}
.summary-row.discount { color: var(--green-700); }
.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--gray-300);
    color: var(--green-900);
}
.coupon-box {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}
.coupon-box input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 13px;
    font-family: var(--font-body);
    text-transform: uppercase;
}
.coupon-box button {
    padding: 10px 20px;
    background: var(--green-800);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== Checkout ===== */
.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 30px 0 40px;
}
.checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    position: relative;
}
.checkout-step.active { color: var(--green-700); }
.checkout-step.completed { color: var(--green-600); }
.checkout-step .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.checkout-step.active .step-num,
.checkout-step.completed .step-num {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
}
.checkout-step::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gray-200);
    margin-left: 10px;
}
.checkout-step:last-child::after { display: none; }

/* ===== Forms ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(26,125,92,0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-error { color: var(--red); font-size: 12px; margin-top: 4px; }

/* ===== Alerts ===== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #d1e7dd; color: #0f5132; border: 1px solid #badbcc; }
.alert-error { background: #f8d7da; color: #842029; border: 1px solid #f5c2c7; }
.alert-warning { background: #fff3cd; color: #664d03; border: 1px solid #ffecb5; }
.alert-info { background: #cff4fc; color: #055160; border: 1px solid #b6effb; }

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 16px 0;
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb li::after { content: '/'; margin-left: 8px; color: var(--gray-400); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: var(--green-900); font-weight: 500; }

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    padding: 48px 0;
    text-align: center;
    color: var(--white);
}
.page-header h1 { color: var(--white); margin: 0 0 8px; font-size: 2rem; }
.page-header p { opacity: 0.8; font-size: 15px; margin: 0; }

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-700);
}
.pagination a:hover { border-color: var(--green-700); color: var(--green-700); }
.pagination .active { background: var(--green-700); color: white; border-color: var(--green-700); }

/* ===== Account ===== */
.account-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 40px 0;
}
.account-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.account-sidebar-header {
    padding: 20px;
    background: var(--green-50);
    text-align: center;
}
.account-sidebar-header h4 { margin: 0; font-size: 16px; }
.account-sidebar-header p { margin: 4px 0 0; font-size: 13px; color: var(--gray-600); }
.account-menu { list-style: none; padding: 0; margin: 0; }
.account-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.account-menu li a:hover,
.account-menu li a.active {
    background: var(--green-50);
    color: var(--green-700);
}
.account-menu li a i { width: 20px; text-align: center; }

/* ===== Auth Pages ===== */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 40px 20px;
}
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    width: 100%;
    max-width: 440px;
}
.auth-card h2 { text-align: center; margin: 0 0 8px; }
.auth-card .subtitle { text-align: center; color: var(--gray-600); font-size: 14px; margin-bottom: 30px; }
.auth-divider {
    text-align: center;
    margin: 24px 0;
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== Order Confirmation ===== */
.order-success {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.order-success .check-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.order-success h1 { font-size: 1.8rem; margin-bottom: 12px; }
.order-success .order-number { font-size: 18px; color: var(--green-700); font-weight: 600; }

/* ===== Gift Hampers ===== */
.hampers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.hamper-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--cream-dark);
    transition: var(--transition);
}
.hamper-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}
.hamper-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream);
}
.hamper-card-image img { width: 100%; height: 100%; object-fit: cover; }
.hamper-card-body { padding: 20px; }
.hamper-card-body h3 { font-size: 1.1rem; margin: 0 0 8px; }
.hamper-card-body p { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .story-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .section { padding: 48px 0; }
    .section-title { font-size: 1.6rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero { min-height: 400px; }

    .header-search { display: none; }
    .mobile-menu-toggle { display: block; }
    .nav-bar { display: none; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .cart-layout { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .hampers-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .product-buttons { flex-direction: column; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-card-body { padding: 10px; }
    .price-current { font-size: 16px; }
    .product-card-title { font-size: 13px; }
    .announcement-bar .trust-badges { gap: 12px; font-size: 11px; }
}
