:root {
    /* Core Brand Colors */
    --brand-primary: #0F172A;
    --brand-primary-hover: #1E293B;
    --brand-dark: #1C1C1C;
    --brand-secondary: #F4F4F4;
    --white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-off: #F8F8F8;

    /* Text Colors */
    --text-main: #1C1C1C;
    --text-muted: #696969;
    --text-light: #9C9C9C;

    /* Borders */
    --border-light: #E8E8E8;
    --border-subtle: rgba(0, 0, 0, 0.06);
    --glass-border: rgba(0, 0, 0, 0.1);

    /* Special Colors */
    --rating-green: #24963F;
    --whatsapp-green: #25D366;
    --brand-pink: #0F172A;
    --brand-pink-soft: #F1F5F9;
    --brand-gold: #D4AF37;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Navigation */
    --nav-height: 72px;
    --nav-font-size: 15px;
    --nav-link-spacing: 32px;
    --header-height: 72px;

    /* Spacing (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 80px;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-flat: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 4px 12px rgba(28, 28, 28, 0.06);
    --shadow-md: 0 8px 24px rgba(28, 28, 28, 0.08);
    --shadow-lg: 0 16px 48px rgba(28, 28, 28, 0.12);

    /* Animations */
    --transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
    --z-ease: cubic-bezier(0.2, 0, 0, 1);
    --z-transition: all 0.3s var(--z-ease);

    /* Layout */
    --container-width: 1200px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    clip: auto;
    overflow: visible;
    z-index: 100000;
    color: var(--white);
    background: var(--brand-primary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    white-space: normal;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-main);
}

.text-accent {
    color: var(--brand-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--brand-gold);
}

.text-pink {
    color: var(--brand-pink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
    white-space: nowrap;
}

.btn-pill {
    border-radius: var(--radius-pill);
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--brand-primary-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.btn-secondary {
    background-color: var(--brand-secondary);
    color: var(--brand-dark);
}

.btn-secondary:hover {
    background-color: #EBEBEB;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--text-muted);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1EBc57;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-fade {
    animation: fadeIn 1.2s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Wavy Divider Utility */
.wavy-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23fdfcf0' fill-opacity='1' d='M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,186.7C672,213,768,235,864,224C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    z-index: 10;
}

/* ZOMATO-FORCE NAVBAR REBUILD */
.z-navbar {
    height: var(--nav-height);
    background: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--z-transition);
}

.z-navbar.is-scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.z-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.z-nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.z-nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.z-nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.z-nav-menu {
    display: flex;
    flex-direction: row;
    gap: var(--nav-link-spacing);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    align-items: center;
}

.z-nav-menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.z-nav-menu a {
    text-decoration: none;
    font-size: var(--nav-font-size);
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--z-transition);
    position: relative;
    padding: 12px 0;
    white-space: nowrap;
    display: block;
}

.z-nav-menu a:hover {
    color: var(--brand-primary);
}

.z-nav-menu li.current-menu-item a,
.z-nav-menu a.active {
    color: var(--brand-primary);
    font-weight: 600;
}

.z-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 2px 2px 0 0;
    transition: var(--z-transition);
}

.z-nav-menu a:hover::after,
.z-nav-menu li.current-menu-item a::after,
.z-nav-menu a.active::after {
    width: 100%;
}

/* Horizontal list flex utility */
.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #1C1C1C;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo span {
    font-weight: 400;
    margin-left: 1px;
}

.logo:hover {
    transform: scale(1.02);
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: var(--brand-dark);
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-off);
    transition: var(--z-transition);
}

.menu-toggle:hover {
    background: var(--border-subtle);
}

.z-btn-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #FFF !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.z-btn-cta i {
    color: #FFF;
}

.z-btn-cta:hover {
    background: linear-gradient(135deg, #C9A227 0%, #A67C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.z-btn-cta:active {
    transform: scale(0.98);
    box-shadow: none;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xxl);
}

.hero h1 {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--bg-white);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto var(--space-lg);
    line-height: 1.4;
}

.hero-btns {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

/* Product Card System (Zomato Style) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Aligning with Zomato card style */
}

.product-card-inner {
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

/* Card Filtering Animation */
.product-card.filtering-out {
    opacity: 0;
    transform: scale(0.95);
}

.product-card.filtering-in {
    opacity: 1;
    transform: scale(1);
}

.product-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 10px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xs);
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-main);
}

.product-rating {
    background: var(--rating-green);
    color: white;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--border-light);
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-primary);
}

/* Corporate Gifts Page Layout */
.gifts-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
    align-items: flex-start;
}

.gifts-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-md));
    height: calc(100vh - var(--header-height) - var(--space-xl));
    overflow-y: auto;
    padding-right: var(--space-sm);
}

.gifts-sidebar::-webkit-scrollbar {
    width: 4px;
}

.gifts-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 10px;
}

/* Filter Groups */
.filter-group {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--brand-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-option:hover {
    color: var(--brand-primary);
}

.filter-option input {
    cursor: pointer;
    accent-color: var(--brand-primary);
}

/* Product Card Tags */
.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-popular {
    background: #3b82f6;
}

.tag-bestseller {
    background: #f59e0b;
}

.tag-new {
    background: #10b981;
}

/* Mobile Filter Trigger */
.mobile-filter-trigger {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    align-items: center;
    gap: 8px;
}

/* Mobile Filter Modal */
.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: flex-end;
}

.filter-modal.active {
    display: flex;
}

.filter-modal-content {
    background: white;
    width: 100%;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    padding: var(--space-lg);
    overflow-y: auto;
    animation: slideUp 0.3s cubic-bezier(0.2, 0, 0, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .gifts-layout {
        grid-template-columns: 1fr;
    }

    .gifts-sidebar {
        display: none;
    }

    .mobile-filter-trigger {
        display: flex;
    }
}

/* Zomato Style Rich Footer */
/* Zomato Style Rich Footer */
.z-footer {
    background: #000000;
    /* Pure black footer */
    color: #FFFFFF;
    padding: 80px 0 40px;
    font-family: var(--font-body);
}

/* Footer reuses the header's .z-nav-container (which has a white background).
   Make it transparent inside the footer so the black shows through. */
.z-footer .z-nav-container {
    background: transparent;
}

.z-footer-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Footer Grid Layout */
.z-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    width: 100%;
}

.z-footer-col {
    display: flex;
    flex-direction: column;
}

.z-social-wrap {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.flex-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z-footer-link {
    color: #D1D5DB;
    font-size: 14px;
    margin-bottom: 0;
    /* margin handled by gap */
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.z-footer-link:hover {
    color: #D4AF37;
    transform: translateX(4px);
}

.z-footer-link.active,
.z-footer-link[aria-current="page"],
.z-footer .current-menu-item > .z-footer-link {
    color: #D4AF37;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #D4AF37;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.z-footer-col p.z-footer-link:hover {
    color: #FFFFFF;
    transform: none;
}

.z-footer-col p.z-footer-link i {
    color: #D4AF37 !important;
}

.z-social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    margin-right: 8px;
    /* Spacing for social icons */
}

.z-social-btn:hover {
    background: #D4AF37;
    color: #0F172A;
    transform: scale(1.08);
}

/* =============================================
   MOBILE MENU SYSTEM
   ============================================= */

/* Hamburger Button */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    margin-left: 16px;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--bg-off);
}

.hamburger-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    position: relative;
    transition: var(--transition);
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    left: 0;
    transition: var(--transition);
}

.hamburger-icon::before {
    top: -7px;
}

.hamburger-icon::after {
    bottom: -7px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 3000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: var(--bg-off);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--brand-primary);
    color: white;
}

.mobile-menu-links {
    flex: 1;
    padding: 16px 0;
    list-style: none;
    margin: 0;
    overflow-y: auto;
}

.mobile-menu-links li {
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu-links a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu-links a:hover {
    background: var(--bg-off);
    color: var(--brand-primary);
    padding-left: 32px;
}

.mobile-menu-cta {
    margin: 16px 24px 24px;
    padding: 14px 24px;
    background: var(--brand-primary);
    color: white !important;
    text-align: center;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu-cta:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
}

/* Show hamburger on tablet/mobile */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .z-nav-center {
        display: none;
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }

    .btn-nav-cta {
        display: none !important;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Reviews Section */
.reviews-preview {
    background: #f8f8f8;
    padding: 80px 0;
}

.review-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    height: 100%;
}

.review-stars {
    color: #ffba00;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 16px;
}

.review-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Z-NAV MOBILE REBUILD */
@media (max-width: 992px) {
    .z-nav-center {
        display: none;
        /* Hide desktop menu on mobile */
    }

    .z-nav-right {
        gap: 12px;
    }

    .menu-toggle {
        display: flex;
    }

    .z-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #FFF;
        flex-direction: column;
        padding: 100px 32px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: 0.4s cubic-bezier(0.2, 0, 0, 1);
        z-index: 2100;
        display: flex !important;
    }

    .z-nav-menu.is-active {
        right: 0;
    }

    .z-nav-menu a {
        font-size: 18px;
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid var(--border-subtle);
    }
}

/* Z-FOOTER RESPONSIVE */
@media (max-width: 768px) {
    .z-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }
    /* Allow nowrap desktop links to wrap on mobile so text is not clipped */
    .z-footer-link {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .z-footer {
        padding: 48px 0 28px;
        text-align: center;
    }
    /* Two short link lists sit side by side; brand + contact span full width.
       Keeps the mobile footer compact and balanced instead of one long column. */
    .z-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        margin-bottom: 32px;
    }
    .z-footer-col:first-child,
    .z-footer-col:last-child {
        grid-column: 1 / -1;
    }
    /* Center the brand block */
    .z-footer-col:first-child {
        align-items: center;
    }
    .z-footer-col:first-child p {
        margin-left: auto;
        margin-right: auto;
    }
    .z-footer-col:first-child .flex-row {
        justify-content: center;
    }
    /* Contact icons + text centered */
    .z-footer-col:last-child .z-footer-link {
        justify-content: center;
        text-align: center;
    }
    .z-footer-title {
        margin-bottom: 14px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #1EBc57;
    color: white;
}

/* =============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================= */

/* TABLET BREAKPOINT (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 60px 0;
    }

    h1,
    .hero h1 {
        font-size: 40px;
    }

    h2,
    .section-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gifts-layout {
        grid-template-columns: 1fr;
    }

    .gifts-sidebar {
        display: none;
    }

    .mobile-filter-trigger {
        display: flex;
    }
}

/* MOBILE LANDSCAPE / LARGE MOBILE (768px) */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .z-navbar {
        height: 60px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    h1,
    .hero h1 {
        font-size: 32px;
    }

    h2,
    .section-title {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .hero {
        min-height: 70vh;
        padding: 80px 0 60px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        max-width: 100%;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .z-btn-cta {
        display: none;
        /* padding: 8px 16px;
        font-size: 13px; */
    }

    .page-header {
        padding: 60px 0 40px !important;
    }

    .feature-item {
        padding: 24px !important;
    }

    .logo {
        font-size: 20px;
    }

    .z-footer {
        padding: 48px 0 32px;
    }

    .z-footer-grid {
        gap: 24px;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

/* SMALL MOBILE (480px) */
@media (max-width: 480px) {
    body {
        padding-top: 56px;
    }

    .z-navbar {
        height: 56px;
    }

    .container {
        padding: 0 12px;
    }

    .section {
        padding: 40px 0;
    }

    h1,
    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    h2,
    .section-title {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .hero {
        min-height: 60vh;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .product-card-inner {
        padding: 12px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-desc {
        font-size: 13px;
    }

    .product-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .product-meta .btn {
        width: 100%;
        justify-content: center;
    }

    .form-group input,
    .form-group textarea,
    .form-control {
        font-size: 16px;
    }

    .logo {
        font-size: 18px;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {

    .btn:hover,
    .product-card:hover,
    .z-footer-link:hover {
        transform: none;
    }

    .product-card:active {
        transform: scale(0.98);
    }
}

/* Prevent Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* =============================================
   REUSABLE COMPONENT CLASSES
   (Extracted from inline styles for maintainability)
   ============================================= */

/* Page Header Variants */
.page-header--gifts {
    background-color: var(--bg-off);
    padding: 120px 0 60px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.page-header--gradient {
    background: radial-gradient(circle at top right, var(--brand-pink-soft), transparent);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header--pink {
    background-color: var(--brand-pink-soft);
    padding: 40px 0 40px;
    text-align: center;
}

.page-header__title {
    font-size: 36px;
    margin-bottom: 8px;
}

.page-header__subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.page-header__intro {
    max-width: 700px;
    margin: 20px auto 60px;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Section Spacing Variants */
.section--narrow {
    padding: 80px 0;
}

.section--wide {
    padding: 100px 0;
}

.section--cream {
    background-color: var(--bg-cream);
}

/* Glass Card (Mission/Vision style) */
.card--glass {
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

/* Step Cards (How It Works) */
.card--step {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Review Cards Styled */
.review-card--styled {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.review-card--styled:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-stars--gold {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text--styled {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: var(--brand-pink-soft);
    color: var(--brand-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Form Elements */
.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 25px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

/* Grid Layouts */
.grid--auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.grid--auto-fit-sm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
}

/* Home "Follow the Magic" gallery: full-width square tiles look oversized on
   mobile. Show a compact 2-up grid instead (desktop layout unchanged). */
@media (max-width: 600px) {
    .gallery-preview .grid--auto-fit-sm {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Desktop: cap the square tiles so a few products don't stretch full-width. */
@media (min-width: 601px) {
    .gallery-preview .grid--auto-fit-sm {
        grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
        justify-content: center;
    }
}

.grid--auto-fit-lg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

/* Feature Icons */
.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--brand-primary);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

/* Feature Items */
.feature-item {
    text-align: center;
    background: var(--bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Page Intro */
.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-cream);
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.why-choose__icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    color: var(--brand-pink-soft);
    opacity: 0.3;
    z-index: 0;
}

.why-choose__list {
    list-style: none;
    padding: 0;
}

.why-choose__item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.why-choose__item:last-child {
    margin-bottom: 0;
}

.why-choose__check {
    color: var(--brand-pink);
    font-size: 1.3rem;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    background: #e9e5e2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* Content Wrappers */
.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Decorative Backgrounds */
.bg-icon-decoration {
    position: absolute;
    bottom: -50px;
    left: -50px;
    font-size: 20rem;
    color: var(--brand-pink-soft);
    opacity: 0.2;
    z-index: 0;
    transform: rotate(-15deg);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--brand-pink);
}

/* Filter Sort Select */
.filter-sort {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.filter-sort:focus {
    border-color: var(--brand-primary);
}

/* Type Filter Pills */
.filter-pill {
    background: var(--bg-off);
    padding: 6px 12px;
    border-radius: 20px;
}

/* Responsive adjustments for new classes */
@media (max-width: 768px) {

    .page-header--gifts,
    .page-header--gradient,
    .page-header--pink {
        padding: 80px 0 50px;
    }

    .card--glass,
    .card--step {
        padding: 30px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .why-choose {
        padding: 40px 30px;
    }

    .grid--auto-fit {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* Contact Cards */
.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.contact-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.contact-card__text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-card__link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card__link:hover {
    color: var(--brand-dark);
}

/* Contact Info Block */
.contact-info-block {
    padding-right: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--brand-pink-soft);
    color: var(--brand-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Contact Social Buttons */
.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social__btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.contact-social__btn:hover {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
    transform: translateY(-3px);
}

/* Responsive Contact Styles */
@media (max-width: 992px) {
    .contact-info-block {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-card__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .grid--auto-fit-lg {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   GALLERY PAGE STYLES
   ============================================= */

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-overlay {
        opacity: 1;
        padding: 20px 15px 15px;
    }

    .gallery-title {
        font-size: 0.9rem;
    }
}

/* =============================================
   AFFILIATE PROGRAM PAGE STYLES
   ============================================= */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.pricing-table th {
    background: var(--brand-dark);
    color: var(--white);
    text-align: left;
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
}
.pricing-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr.pricing-table--highlight td {
    background: var(--brand-pink-soft);
    font-weight: 700;
    color: var(--brand-primary);
}
.commission-highlight-banner {
    margin-top: 30px;
    padding: 18px 30px;
    background: var(--brand-pink-soft);
    color: var(--brand-primary);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-md);
}
@media (max-width: 768px) {
    .pricing-table thead { display: none; }
    .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td { display: block; width: 100%; }
    .pricing-table tr { padding: 16px 20px; border-bottom: 1px solid var(--border-light); }
    .pricing-table td { border-bottom: none; padding: 4px 0; }
    .pricing-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-light);
        margin-bottom: 2px;
    }
}
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0;
}
@media (max-width: 480px) {
    .promo-badge { font-size: 1rem; padding: 10px 18px; }
}
.form-error {
    display: none;
    color: var(--brand-primary);
    font-size: 13px;
    margin-top: 6px;
}
.form-group.has-error .form-input { border-color: var(--brand-primary); }
.form-group.has-error .form-error { display: block; }
.apply-success { display: none; text-align: center; padding: 40px 20px; }
.apply-success i { font-size: 3rem; color: var(--rating-green); margin-bottom: 20px; }
