:root {
    --primary: #E18B4A;
    --primary-deep: #c96d28;
    --peach-soft: #fff3e7;
    --blue-soft: #eef6fb;
    --cream: #fbf8f4;
    --text-dark: #000000;
    --text-muted: #757575;
    --white: #ffffff;
    --card-shadow: 0 22px 48px rgba(34, 28, 24, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(225, 139, 74, 0.07), transparent 26%),
        linear-gradient(180deg, #fffdfb 0%, #ffffff 22%, #faf7f3 100%);
    line-height: 1.5;
    overflow-x: hidden;
}
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* Shared Header */
.announcement-bar { background: #ded7d2; color: #4a4642; text-align: center; font-size: 12px; font-weight: 600; padding: 6px 16px; }
.site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
}
.header-inner { min-height: 82px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.brand-wordmark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}
.brand-wordmark img {
    display: block;
    width: auto;
    height: 50px;
    object-fit: contain;
}
.main-nav { display: flex; align-items: center; gap: 18px; }
.nav-item { position: relative; }
.nav-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 30px 0 25px;
    border-bottom: 2px solid transparent;
}
.nav-link.active,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link { border-color: var(--text-dark); }
.nav-link-static,
.dropdown-heading-static { cursor: default; }
.dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    min-width: 220px;
    display: grid;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}
.dropdown-menu-wide { min-width: 270px; }
.dropdown-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
}
.dropdown-menu a:hover { color: var(--primary); }
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gifting-menu {
    min-width: 620px;
    grid-template-columns: 1.25fr 1fr 0.85fr;
    gap: 18px;
}
.dropdown-group {
    display: grid;
    align-content: start;
    gap: 8px;
}
.dropdown-heading {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.dropdown-submenu {
    display: grid;
    gap: 8px;
    padding-top: 2px;
    padding-left: 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.dropdown-submenu a {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.72);
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.auth-entry-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.auth-entry-link {
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}
.auth-entry-link--primary {
    background: linear-gradient(135deg, #243947, #162733);
    border-color: #243947;
    color: #fff;
}
.auth-entry-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.auth-entry-link--primary:hover {
    color: #fff;
    border-color: #162733;
    background: linear-gradient(135deg, #162733, #101d26);
}

.auth-entry-link--status {
    text-transform: none;
    letter-spacing: 0;
}

.auth-user-menu {
    position: relative;
}

.auth-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 238, 0.98));
    border: 1px solid rgba(63, 45, 33, 0.08);
    box-shadow: 0 12px 30px rgba(33, 24, 18, 0.08);
    font-size: 14px;
    font-weight: 700;
    color: #2f2925;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.auth-user-trigger:hover {
    transform: translateY(-1px);
    border-color: rgba(225, 139, 74, 0.26);
    box-shadow: 0 16px 34px rgba(225, 139, 74, 0.14);
}

.auth-user-trigger svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.auth-user-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 240px;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.995);
    border: 1px solid rgba(63, 45, 33, 0.08);
    box-shadow: 0 26px 54px rgba(18, 22, 26, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 60;
    backdrop-filter: blur(18px);
}

.auth-user-menu:hover .auth-user-dropdown,
.auth-user-menu:focus-within .auth-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.auth-entry-link--menu {
    display: block;
    width: 100%;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 251, 247, 0.98), rgba(255, 255, 255, 0.98));
    border-radius: 16px;
    border: 1px solid rgba(73, 55, 43, 0.06);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #332b26;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.auth-entry-link--menu:hover {
    transform: translateX(3px);
    color: #c46f29;
    border-color: rgba(225, 139, 74, 0.22);
    background: linear-gradient(135deg, rgba(255, 246, 238, 1), rgba(255, 252, 249, 1));
}

.bulk-orders-button {
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}
.bulk-orders-button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.bulk-orders-icon-button {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bulk-orders-icon-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.icon-button { width: 34px; height: 34px; background: none; border: none; display: inline-flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.icon-button svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { position: absolute; top: 2px; right: 1px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px; background: #ef8a66; color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center; }

/* Hero Slider */
.hero-slider-container {
    width: min(100%, 1380px);
    margin: 22px auto 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8f0, #fdfefe);
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(25, 23, 20, 0.08);
}
.slider { width: 100%; display: flex; position: relative; aspect-ratio: 1920 / 840; }
.slide { width: 100%; height: 100%; position: absolute; opacity: 0; transition: opacity 0.8s ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slider::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(19, 16, 13, 0.14));
    pointer-events: none;
}
.slider-nav {
    position: absolute;
    bottom: 24px;
    right: 32px;
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}
.dot { width: 9px; height: 9px; background: rgba(0,0,0,0.24); border-radius: 50%; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--primary); width: 28px; border-radius: 10px; }

/* Trending Section */
.trending-section {
    padding: 84px 0 70px;
    text-align: center;
    position: relative;
}
.trending-section::before {
    content: "";
    position: absolute;
    inset: 20px auto auto 50%;
    width: min(92%, 1240px);
    height: calc(100% - 40px);
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 247, 239, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(232, 218, 204, 0.65);
    border-radius: 36px;
    z-index: -1;
}
.section-main-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 44px;
}
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }

/* Product Card */
.product-card {
    text-align: left;
    position: relative;
    padding: 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 56px rgba(34, 28, 24, 0.14);
}
.image-holder {
    aspect-ratio: 1/1;
    background: linear-gradient(180deg, #f6f1ea, #ffffff);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    margin-bottom: 18px;
}
.image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.product-card:hover .image-holder img { transform: scale(1.05); }
.tag-all-day { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.4); padding: 4px 10px; border-radius: 20px; font-size: 11px; color: #fff; backdrop-filter: blur(5px); }
.wishlist-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.82);
    color: #233644;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(18, 22, 26, 0.12);
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.wishlist-button:hover {
    transform: translateY(-2px);
}

.wishlist-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wishlist-button.is-active {
    background: #243947;
    border-color: #243947;
    color: #fff;
}

.wishlist-button.is-active svg {
    fill: currentColor;
}
.product-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin: 10px 0 14px;
    min-height: 48px;
    line-height: 1.4;
}
.price-container {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-deep);
    margin-bottom: 6px;
}
.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}
.old-price { text-decoration: line-through; color: var(--text-muted); font-weight: 400; margin-left: 8px; }
.add-bag-btn { width: 100%; padding: 12px; border: 1px solid #333; background: white; border-radius: 8px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.add-bag-btn:hover { background: #333; color: white; }
.trending-actions { display: grid; gap: 10px; }
.view-product-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #233644;
    background: linear-gradient(135deg, #243947, #162733);
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}
.view-product-btn:hover { background: linear-gradient(135deg, #162733, #101d26); border-color: #101d26; }
.trending-empty {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px dashed #d8d8d8;
    border-radius: 18px;
    background: #faf8f5;
    color: var(--text-muted);
}

.quick-cart-button {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid rgba(32, 54, 68, 0.12);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 248, 241, 0.96), rgba(255, 255, 255, 0.98));
    color: #1f3441;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(30, 41, 50, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.quick-cart-button:hover {
    transform: translateY(-2px);
    border-color: rgba(225, 139, 74, 0.32);
    box-shadow: 0 16px 26px rgba(225, 139, 74, 0.16);
}

.quick-cart-button__icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
}

.quick-cart-button__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-cart-button__label {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(25, 37, 46, 0.94);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.quick-cart-button:hover .quick-cart-button__label,
.quick-cart-button:focus-visible .quick-cart-button__label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.site-cart-toast {
    position: fixed;
    top: 26px;
    left: 50%;
    z-index: 260;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: min(92vw, 360px);
    max-width: min(92vw, 440px);
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(31, 47, 59, 0.96), rgba(21, 34, 43, 0.98));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(16, 24, 30, 0.22);
    transform: translate(-50%, -22px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.34s ease, visibility 0.28s ease;
    backdrop-filter: blur(16px);
}

.site-cart-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.site-cart-toast__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(234, 143, 71, 0.24), rgba(255, 210, 173, 0.3));
}

.site-cart-toast__icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffd4ad;
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-cart-toast__copy {
    display: grid;
    gap: 2px;
}

.site-cart-toast__copy strong {
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-cart-toast__copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.45;
}

/* Info Section */
.info-section { padding: 96px 0 88px; }
.why-choose-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(232, 221, 209, 0.7);
    border-radius: 34px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}
.why-us-image {
    position: relative;
}
.why-us-image::after {
    content: "";
    position: absolute;
    inset: auto -18px -18px auto;
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(225, 139, 74, 0.18), rgba(248, 236, 221, 0.7));
    z-index: 0;
}
.why-us-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
}
.why-us-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin-bottom: 12px;
    letter-spacing: -0.05em;
}
.why-us-subtitle {
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.7;
}
.accordion {
    display: grid;
    gap: 14px;
}
.accordion-item {
    border: 1px solid rgba(225, 221, 216, 0.9);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 246, 241, 0.95));
    border-radius: 22px;
    padding: 18px 22px;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.accordion-item.active {
    border-color: rgba(225, 139, 74, 0.35);
    box-shadow: 0 18px 34px rgba(34, 28, 24, 0.08);
    transform: translateY(-1px);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    cursor: pointer;
}
.accordion-header span:last-child {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(31, 55, 68, 0.06);
    color: #223644;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
    padding-top: 10px;
    font-size: 0.94rem;
    line-height: 1.7;
}
.accordion-item.active .accordion-body { max-height: 120px; }

.service-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
    padding: 30px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    box-shadow: var(--card-shadow);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 15px; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 20px; }
.peach { background: linear-gradient(180deg, #fff3ea, #fde8d7); }
.gray { background: linear-gradient(180deg, #f8f8f8, #efefef); }
.light-gray { background: linear-gradient(180deg, #fbfbfb, #f4f4f4); }
.gold-banner { background: linear-gradient(180deg, #fff5da, #f7e1a8); text-align: center; justify-content: center; }
.btn-outline {
    border: 1px solid #000;
    background: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    cursor: pointer;
    width: fit-content;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.btn-outline:hover {
    background: #000;
    color: #fff;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D4A056;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-gold:hover {
    background: #b8863b;
}

/* All Products Banner (Figma Fix) */
.all-products-banner-section { padding-bottom: 80px; }
.all-products-banner { 
    background: linear-gradient(135deg, #f8f7f5, #fef8f2); 
    border-radius: 36px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    overflow: hidden; 
    min-height: 450px;
    position: relative;
    box-shadow: var(--card-shadow);
}
.banner-content { 
    position: relative;
    padding: 60px 80px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    z-index: 10; 
}
.banner-content h2 { font-size: clamp(2.8rem, 4vw, 3.6rem); font-weight: 800; letter-spacing: -0.05em; margin-bottom: 20px; }
.banner-content p { color: var(--text-muted); margin-bottom: 30px; max-width: 400px; }
.shop-now-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #000;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
}
.shop-now-pill:hover { background: #000; color: #fff; }

.banner-image-area { 
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.banner-img { 
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    max-width: 52%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 2;
}
.deco-circle { position: absolute; border-radius: 50%; z-index: 1; opacity: 0.78; }
.deco-peach { width: 340px; height: 340px; background: #F6EEE8; top: 10%; right: 17%; }
.deco-blue { width: 130px; height: 130px; background: #DCEAFF; bottom: 10%; right: 26%; }

/* --- Lifestyle Section Grid Fix --- */
.lifestyle-grid-section { 
    padding: 100px 0; 
}

.lifestyle-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Creates side-by-side split for text and images */
    gap: 60px;
    align-items: start;
    padding: 36px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(250, 246, 240, 0.92));
    box-shadow: var(--card-shadow);
}

.lifestyle-text-content h2 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.05em;
}

.lifestyle-text-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 40px;
}

.btn-lifestyle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

/* Image Grid Layout */
.lifestyle-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lifestyle-img-large {
    grid-column: span 2; /* Large image takes top full width of its column */
    aspect-ratio: 16 / 9;
}

.lifestyle-img-small {
    aspect-ratio: 1 / 0.8; /* Slightly wider than square to match design */
}

.lifestyle-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px; /* Matches Figma corner rounding */
    box-shadow: 0 20px 40px rgba(18, 18, 18, 0.12);
}

/* Responsive Fix */
@media (max-width: 1024px) {
    .lifestyle-container {
        grid-template-columns: 1fr; /* Stacks vertically on smaller screens */
        text-align: center;
    }
    .lifestyle-text-content p {
        margin: 0 auto 40px;
    }
}

/* Shared Footer */
.site-footer { background: #000; color: #fff; padding: 60px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-branding { padding-right: 34px; border-right: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: inline-flex; margin-bottom: 34px; }
.footer-brand img { height: 62px; }
.footer-contact h2, .footer-links-block h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-row svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer-contact p, .footer-links-block a, .footer-credit { color: #d5d5d5; font-size: 0.95rem; line-height: 1.6; }
.footer-links-block { display: flex; flex-direction: column; gap: 14px; }
.footer-links-block a { text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; }
.social-links { display: flex; gap: 16px; }
.social-links a { width: 32px; height: 32px; display: grid; place-items: center; color: #fff; border-radius: 50%; text-decoration: none; }
.social-links svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1024px) {
    .slider { aspect-ratio: 16 / 9; }
    .main-nav { gap: 12px; }
    .nav-link { font-size: 11px; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-branding { grid-column: 1 / -1; }
    .all-products-banner {
        min-height: 0;
        grid-template-columns: 1fr;
    }
    .banner-content {
        padding: 44px 34px 24px;
    }
    .banner-image-area {
        position: relative;
        min-height: 320px;
    }
    .banner-img {
        position: static;
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .header-inner { min-height: auto; padding: 14px 0; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .main-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }
    .main-nav::-webkit-scrollbar { display: none; }
    .nav-item { width: auto; flex: 0 0 auto; }
    .nav-link { width: auto; justify-content: center; padding: 8px 0 10px; font-size: 11px; white-space: nowrap; }
    .dropdown-menu,
    .dropdown-menu-wide,
    .gifting-menu {
        position: absolute;
        min-width: 0;
        max-width: min(84vw, 320px);
        margin-top: 0;
        padding: 12px;
    }
    .gifting-menu {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .dropdown-menu a { font-size: 12px; }
    .dropdown-submenu {
        padding-left: 0;
        border-left: 0;
    }
    .header-actions {
        position: static;
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .auth-entry-links { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
    .auth-user-dropdown {
        right: 50%;
        transform: translate(50%, -8px) scale(0.98);
        min-width: min(92vw, 260px);
    }
    .auth-user-menu:hover .auth-user-dropdown,
    .auth-user-menu:focus-within .auth-user-dropdown {
        transform: translate(50%, 0) scale(1);
    }
    .bulk-orders-button { padding: 8px 12px; font-size: 10px; }
    .brand-wordmark img { height: 42px; }
    .footer-brand img { height: 52px; }
    .trending-section { padding: 62px 0 52px; }
    .section-main-title { margin-bottom: 28px; }
    .product-grid { grid-template-columns: 1fr; gap: 18px; }
    .why-choose-us-grid,
    .all-products-banner,
    .lifestyle-container,
    .service-cards-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .banner-content { padding: 40px 28px; }
    .banner-img { position: static; width: 100%; max-width: 100%; height: auto; }
    .banner-image-area { position: relative; min-height: 260px; }
    .why-choose-us-grid,
    .lifestyle-container {
        padding: 22px;
        gap: 26px;
    }
    .service-card { min-height: 0; padding: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .site-cart-toast { top: 18px; border-radius: 18px; padding: 14px 16px; }
    .slider { aspect-ratio: 4 / 3; }
    .slider-nav { right: 20px; bottom: 10px; }
}
