/* Nakhil Care - Beauty & Pharmacy styles */

/* Clean, readable font for care/pharmacy feel */
@font-face {
    font-family: 'Ostrich Sans';
    src: url('../fonts/OstrichSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

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

:root {
    --primary-color: #3a8f4e;
    --primary-light: #4aaa64;
    --primary-dark: #2a6b3a;
    --secondary-color: #2d6a4f;
    --accent-gold: #b8c99d;
    --accent-cream: #f0f4ec;
    --text-dark: #1a2f1f;
    --text-light: #4a5d4e;
    --bg-light: #f8faf8;
    --white: #ffffff;
    --border-color: #d4e0d8;
    --shadow-sm: 0 1px 3px rgba(0, 64, 27, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 64, 27, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 64, 27, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --page-gutter: clamp(20px, 3vw, 40px);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Top strip: part of fixed site-header */
.top-strip {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    position: relative;
    top: auto;
    z-index: auto;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Navbar: sticky below strip when present; stays visible on scroll */
body.has-top-strip .hero { padding-top: 0; }
.top-strip-inner { position: relative; min-height: 2em; }
.top-strip-link {
    display: none;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.top-strip-link.active { display: block; }
.top-strip-link:hover { text-decoration: underline; }

/* Mobile bottom nav (fixed at bottom, app-style) - compact, outline icons only */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    padding: 4px 0 6px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .bottom-nav { display: flex; justify-content: space-around; align-items: center; }
    body { padding-bottom: 52px; }
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.6rem;
    padding: 2px 4px;
}
.bottom-nav-item:hover { color: var(--primary-color); }
.bottom-nav-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottom-nav-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.bottom-nav-cart-count {
    background: var(--primary-color);
    color: white;
    font-size: 0.6rem;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

body {
    font-family: 'Ostrich Sans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    letter-spacing: 0.3px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
}

/* Shop page uses wider container */
.shop-page.container {
    max-width: 1600px;
}

/* ============================================
   NAVIGATION - Elegant & Minimal
============================================ */
/* Navbar: inside fixed site-header (see enhance.css) */
.navbar {
    position: relative;
    top: auto;
    width: 100%;
    background: var(--white);
    box-shadow: none;
    z-index: 1;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.nav-container .nav-left,
.nav-container .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}
.nav-container .nav-left { justify-content: flex-start; }
.nav-container .nav-right { justify-content: flex-end; gap: 12px; }
.nav-container .logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    transition: var(--transition);
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.hamburger:hover span {
    background: var(--secondary-color);
}

.logo img {
    height: 60px;
    width: auto;
}

.search-btn,
.cart-btn {
    position: relative;
    background: none;
    border: 2px solid var(--border-color);
    cursor: pointer;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.cart-btn:hover {
    border-color: var(--secondary-color);
    background: var(--bg-light);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: white;
    width: 24px;
    height: 24px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0;
}

/* Search in navbar */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}


.search-btn:hover,
.cart-btn:hover {
    border-color: var(--secondary-color);
    background: var(--bg-light);
}

/* Search: right-side panel (opened by header search btn or bottom nav search) */
.search-panel-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.25s;
}
.search-panel-wrap.active {
    pointer-events: auto;
    visibility: visible;
}
.search-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.search-panel-wrap.active .search-panel-overlay {
    opacity: 1;
}
.search-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 70vw;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.search-panel-wrap.active .search-panel {
    transform: translateX(0);
}
.search-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border-color);
}
.search-panel-title {
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 400;
}
.search-panel-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}
.search-panel-close:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--white);
}
.search-panel-input {
    margin: 16px 20px 0;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    outline: none;
}
.search-panel-input:focus {
    border-color: var(--primary-color);
}
.search-panel-results {
    flex: 1;
    overflow-y: auto;
    margin: 16px 20px 20px;
    padding: 0 16px;
    list-style: none;
    min-height: 120px;
}
.search-panel-results .search-result-item {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}
.search-panel-results .search-result-item:last-child {
    border-bottom: none;
}
.search-panel-results .search-result-item:hover {
    background: var(--bg-light);
}
@media (max-width: 420px) {
    .search-panel {
        width: 85%;
        max-width: 85vw;
    }
}

.search-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    outline: none;
}

.search-input:focus {
    border-color: var(--secondary-color);
}

.search-results {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-result-item {
    padding: 8px 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-result-item:hover {
    background: var(--bg-light);
}

.search-result-name {
    font-size: 14px;
    color: var(--text-dark);
}

.search-result-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   SIDE MENU - Elegant Drawer
============================================ */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    overscroll-behavior: none;
    touch-action: none;
}
.side-menu.active {
    visibility: visible;
    opacity: 1;
    touch-action: auto;
}
.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    touch-action: none;
}
.side-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 88vw;
    height: 100%;
    max-height: 100dvh;
    background: var(--white);
    transform: translateX(-100%);
    transition: var(--transition);
    padding: 40px 30px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    box-sizing: border-box;
}
.side-menu.active .side-menu-content {
    transform: translateX(0);
}
body.side-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: var(--text-dark);
    margin-bottom: 40px;
    padding: 0;
    line-height: 1;
    font-weight: 300;
}

.menu-links {
    list-style: none;
}

.menu-links li {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

.menu-links a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.menu-links a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

/* Side menu: categories under Shop always visible */
.menu-links > li > ul.menu-categories {
    list-style: none;
    padding: 0 0 4px 0;
    margin-top: 0;
    margin: 0;
    border-bottom: none;
}
.menu-links .menu-categories li {
    margin-bottom: 0;
    border-bottom: none;
}
.menu-links .menu-categories a {
    padding: 12px 0 12px 20px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
}
.menu-links .menu-categories a:hover {
    padding-left: 28px;
}

/* ============================================
   HERO SECTION - Sophisticated
============================================ */
.hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    margin-top: 0;
    overflow: hidden;
    background: var(--primary-color);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 50px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-block;
    margin-top: 20px;
}

.hero-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Hero categories bar (desktop only): flush above hero video, no gap */
.hero-categories-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 20px;
    margin-bottom: 0;
    background: var(--primary-color);
    z-index: 3;
    position: relative;
}
.hero-categories-bar + .hero {
    margin-top: 0;
}
@media (max-width: 768px) {
    .hero-categories-bar { display: none !important; }
}
.hero-cat-item {
    position: relative;
}
.hero-cat-root {
    display: inline-block;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}
.hero-cat-root:hover { color: var(--white); text-decoration: underline; }
.hero-cat-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 10;
}
.hero-cat-item:hover .hero-cat-dropdown { display: block; }
.hero-cat-sub {
    position: relative;
}
.hero-cat-sub-header {
    display: flex;
    align-items: stretch;
}
.hero-cat-sub-name {
    flex: 1;
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
}
a.hero-cat-sub-name:hover { background: var(--bg-light); color: var(--text-dark); }
.hero-cat-sub-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    margin: 0;
    border: none;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s ease;
}
.hero-cat-sub-toggle:hover { background: var(--bg-light); }
.hero-cat-arrow {
    font-size: 0.7em;
    display: inline-block;
    transition: transform 0.3s ease;
}
.hero-cat-sub.open .hero-cat-sub-toggle .hero-cat-arrow {
    transform: rotate(180deg);
}
.hero-cat-sub-sub {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
}
.hero-cat-sub.open .hero-cat-sub-sub {
    max-height: 400px;
    opacity: 1;
}
.hero-cat-sub-sub li a {
    display: block;
    padding: 8px 16px 8px 24px;
    color: var(--text-dark);
    text-decoration: none;
}
.hero-cat-sub-sub li a:hover { background: var(--white); color: var(--primary-color); }
.hero-cat-dropdown > a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
}
.hero-cat-dropdown > a:hover { background: var(--bg-light); }

/* Mobile menu: category name = link, + = expand (no border, no rotate) */
.menu-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 8px;
}
.menu-cat-link {
    flex: 1;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
}
.menu-cat-link:hover { color: var(--primary-color); }
.menu-cat-link-standalone { display: block; padding: 12px 0 12px 20px; }
.menu-cat-expand {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}
.menu-cat-expand:hover { color: var(--primary-color); }
.menu-cat-root .menu-categories,
.menu-cat-sub-item .menu-cat-sub-sub {
    overflow: hidden;
    max-height: 0;
    padding-left: 20px;
    list-style: none;
    margin: 0;
    transition: max-height 0.3s ease-out;
}
.menu-cat-root .menu-categories { padding-left: 20px; }
.menu-cat-sub-item .menu-cat-sub-sub { padding-left: 15px; }
.menu-cat-root.open .menu-categories,
.menu-cat-sub-item.open .menu-cat-sub-sub { max-height: 2000px; transition: max-height 0.4s ease-in; }
.menu-cat-sub-item a { padding: 8px 0 8px 16px; font-size: 15px; display: block; }
.menu-links > li:first-child { margin-bottom: 1em; padding-bottom: 0.5em; border-bottom: 1px solid var(--border-color); }
.menu-links > li:first-child a { font-weight: 700; color: var(--primary-color); }
.menu-links li.menu-brand-root,
.menu-links li.menu-no-border,
.menu-links li.menu-item-highlight { border-bottom: none; }
.menu-links .menu-brand-root .menu-categories a { padding-left: 20px; }
.menu-links .menu-item-highlight a { font-weight: 700; color: var(--primary-dark); }
.hero-brands-dropdown { min-width: 180px; max-height: 70vh; overflow-y: auto; }
.hero-brands-dropdown > a {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
}
.hero-brands-dropdown > a:hover { background: var(--bg-light); color: var(--primary-color); }

/* ============================================
   HOME CATEGORIES GRID (under hero)
============================================ */
.home-categories-section {
    padding: 80px 0;
}
.home-categories-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #000000;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
}
.home-categories-grid,
.home-brands-grid {
    display: grid;
    gap: 24px;
}
.home-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1200px) {
    .home-grid-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .home-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .home-categories-grid,
    .home-brands-grid,
    .home-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
/* Shop by category + brand */
.shop-sections-group {
    position: relative;
}
.shop-sections-group .home-categories-section,
.shop-sections-group .home-brands-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 0;
}
.shop-section-categories {
    background: linear-gradient(165deg, #e8f4ec 0%, #dceee3 55%, #d4e8dc 100%);
    border-top: 1px solid rgba(58, 143, 78, 0.12);
}
.shop-section-brands {
    background: linear-gradient(165deg, #f2efe8 0%, #ebe6f0 50%, #e6e2ed 100%);
    border-top: 1px solid rgba(90, 75, 120, 0.1);
}
.shop-sections-group .home-categories-section {
    padding: 80px 0 56px;
}
.shop-sections-group .home-brands-section {
    padding: 72px 0 80px;
}
.shop-sections-group .home-categories-grid,
.shop-sections-group .home-brands-grid {
    gap: 17px;
}
.shop-sections-group .home-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}
.shop-sections-group .home-category-image {
    padding-top: 70%;
}
.shop-sections-group .home-category-name {
    font-size: 1.05rem;
    padding: 14px 12px;
    letter-spacing: 2px;
}
/* Expandable home shop grids */
.home-shop-grid-block {
    position: relative;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2px;
}
.home-shop-grid:not(.is-expanded) > .home-grid-item:nth-child(n+7) {
    display: none;
}
@media (min-width: 769px) {
    .home-shop-grid:not(.is-expanded) > .home-grid-item:nth-child(n+7) {
        display: block;
    }
    .home-shop-grid:not(.is-expanded) > .home-grid-item:nth-child(n+11) {
        display: none;
    }
}
.home-shop-grid.is-expanded > .home-grid-item:nth-child(n+7) {
    animation: homeGridItemReveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.home-shop-grid.is-expanded > .home-grid-item:nth-child(8) { animation-delay: 0.04s; }
.home-shop-grid.is-expanded > .home-grid-item:nth-child(9) { animation-delay: 0.08s; }
.home-shop-grid.is-expanded > .home-grid-item:nth-child(10) { animation-delay: 0.12s; }
.home-shop-grid.is-expanded > .home-grid-item:nth-child(n+11) { animation-delay: 0.16s; }
@media (min-width: 769px) {
    .home-shop-grid.is-expanded > .home-grid-item:nth-child(n+7):nth-child(-n+10) {
        animation: none;
    }
}
@keyframes homeGridItemReveal {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Homepage Shop by Category: 5 per row desktop, 3 mobile, center partial rows */
#homeCategoriesGrid.home-category-grid-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 17px;
    grid-template-columns: unset;
}
#homeCategoriesGrid.home-category-grid-centered > .home-grid-item {
    flex: 0 0 calc((100% - 68px) / 5);
    max-width: calc((100% - 68px) / 5);
    min-width: 0;
}
@media (max-width: 768px) {
    #homeCategoriesGrid.home-category-grid-centered {
        gap: 10px;
    }
    #homeCategoriesGrid.home-category-grid-centered > .home-grid-item {
        flex: 0 0 calc((100% - 20px) / 3);
        max-width: calc((100% - 20px) / 3);
    }
}
.home-shop-expand {
    position: absolute;
    bottom: -4px;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    color: var(--primary-dark);
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, gap 0.2s ease;
}
.home-shop-expand:hover {
    color: var(--primary-color);
    gap: 10px;
}
.home-shop-expand-arrow {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-shop-expand[aria-expanded="true"] .home-shop-expand-arrow {
    transform: rotate(180deg);
}
/* Animated line art backgrounds */
.shop-section-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.shop-section-lines--categories { color: rgba(42, 107, 58, 0.22); }
.shop-section-lines--brands { color: rgba(75, 62, 110, 0.2); }
.shop-line {
    position: absolute;
    display: block;
    opacity: 0.85;
}
.shop-line-1 { top: 8%; left: 4%; animation: shopLineDriftA 18s ease-in-out infinite; }
.shop-line-2 { top: 12%; right: 6%; animation: shopLineDriftB 22s ease-in-out infinite; }
.shop-line-3 { bottom: 18%; left: 8%; animation: shopLineDriftC 20s ease-in-out infinite; }
.shop-line-4 { bottom: 10%; right: 5%; animation: shopLineDriftA 24s ease-in-out infinite reverse; }
.shop-line-5 { top: 42%; left: 2%; animation: shopLineDriftB 19s ease-in-out infinite; }
.shop-line-6 { top: 38%; right: 3%; animation: shopLineDriftC 21s ease-in-out infinite reverse; }
.shop-line-7 { bottom: 38%; right: 12%; animation: shopLineDriftA 17s ease-in-out infinite; }
@keyframes shopLineDriftA {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    33% { transform: translate(28px, -20px) rotate(8deg); opacity: 1; }
    66% { transform: translate(-18px, 14px) rotate(-6deg); opacity: 0.75; }
}
@keyframes shopLineDriftB {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.65; }
    50% { transform: translate(-32px, 24px) rotate(-12deg) scale(1.06); opacity: 1; }
}
@keyframes shopLineDriftC {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    25% { transform: translate(22px, 18px) rotate(10deg); opacity: 0.9; }
    75% { transform: translate(-26px, -16px) rotate(-8deg); opacity: 0.7; }
}
@media (max-width: 768px) {
    .shop-line-5, .shop-line-6 { display: none; }
    .shop-line { transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
    .shop-line { animation: none; opacity: 0.5; }
    .home-shop-grid.is-expanded > .home-grid-item:nth-child(n+7) {
        animation: none;
    }
}
.home-reviews-section + .about-section {
    margin-top: 0;
}
.shop-section-decor {
    position: relative;
    overflow: hidden;
}
.shop-section-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* --- Shop decor Option 2: small static watermark icons --- */
.shop-float-icon--a svg,
.shop-float-icon--a svg path:not([stroke]),
.shop-float-icon--a svg rect,
.shop-float-icon--a svg circle,
.shop-float-icon--a svg ellipse {
    fill: var(--primary-color);
}
.shop-float-icon--a svg path[stroke] {
    stroke: var(--primary-color);
    fill: none;
}
.shop-float-icon--b svg,
.shop-float-icon--b svg path:not([stroke]),
.shop-float-icon--b svg rect,
.shop-float-icon--b svg circle,
.shop-float-icon--b svg ellipse {
    fill: var(--secondary-color);
}
.shop-float-icon--b svg path[stroke] {
    stroke: var(--secondary-color);
    fill: none;
}
.shop-watermark-icons .shop-wm {
    position: absolute;
    display: flex;
    opacity: 0.09;
}
.shop-wm-1 { top: 12%; left: 6%; }
.shop-wm-2 { top: 8%; right: 10%; }
.shop-wm-3 { bottom: 20%; left: 4%; }
.shop-wm-4 { bottom: 15%; right: 6%; }
.shop-wm-5 { top: 42%; left: 12%; }
.shop-wm-6 { top: 38%; right: 14%; }
@media (min-width: 769px) {
    .shop-watermark-icons .shop-wm { opacity: 0.11; }
}

/* --- Shop decor Option 3: slow light shimmer sweep --- */
.shop-decor-shimmer::after {
    content: '';
    position: absolute;
    inset: -50% -50%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(58, 143, 78, 0.06) 48%,
        rgba(45, 106, 79, 0.12) 50%,
        rgba(58, 143, 78, 0.06) 52%,
        transparent 60%
    );
    animation: shopShimmerSweep 14s ease-in-out infinite;
}
@keyframes shopShimmerSweep {
    0% { transform: translateX(-60%) translateY(-10%) rotate(0deg); }
    100% { transform: translateX(60%) translateY(10%) rotate(0deg); }
}
.shop-section-content {
    position: relative;
    z-index: 1;
}
.shop-sections-group .home-categories-title {
    margin-bottom: 40px;
    position: relative;
}
.shop-sections-group .home-categories-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}
.shop-sections-group .home-category-card {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 60, 40, 0.06);
    background: var(--white);
    border: 1px solid rgba(58, 143, 78, 0.1);
}
.shop-sections-group .home-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 60, 40, 0.12);
    border-color: rgba(58, 143, 78, 0.25);
}
@media (max-width: 1200px) {
    .shop-sections-group .home-grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .home-shop-grid-block {
        max-width: 85%;
    }
}
@media (max-width: 992px) {
    .shop-sections-group .home-grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .shop-sections-group .home-categories-section {
        padding: 56px 0 32px;
    }
    .shop-sections-group .home-brands-section {
        padding: 36px 0 56px;
    }
    .shop-sections-group .home-categories-grid,
    .shop-sections-group .home-brands-grid,
    .shop-sections-group .home-grid-5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .home-shop-grid-block {
        max-width: 100%;
        padding-bottom: 28px;
    }
    .shop-sections-group .home-category-name {
        font-size: 0.72rem;
        padding: 8px 4px;
        letter-spacing: 0.5px;
    }
    .home-shop-expand {
        font-size: 0.75rem;
        bottom: 0;
        letter-spacing: 1px;
    }
}
.home-category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.home-category-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}
.home-category-image {
    position: relative;
    padding-top: 100%;
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
}
.home-category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

/* ============================================
   HOME OFFERS SECTION (full width on mobile + desktop)
============================================ */
.home-offers-section {
    padding: 60px 0;
    background: var(--accent-cream);
}
.home-offers-section > .container {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.home-offers-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    color: var(--text-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.offers-slider-wrapper {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 0 50px 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.offers-slider {
    position: relative;
    height: 560px;
    overflow: hidden;
}
.offers-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.offers-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.offers-slide img,
.offers-slide a { display: block; width: 100%; height: 100%; }
.offers-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.offers-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,64,27,0.8);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}
.offers-slider-btn:hover { background: var(--primary-color); }
.offers-slider-prev { left: 0; }
.offers-slider-next { right: 0; }
.home-offers-section .offers-bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding-left: 24px;
    padding-right: 24px;
    align-items: stretch;
}
.offers-bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.offer-bundle-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.offer-bundle-card:hover { box-shadow: var(--shadow-md); }
.offer-bundle-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.offer-bundle-image {
    flex-shrink: 0;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}
.offer-bundle-placeholder { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
.offer-bundle-info {
    padding: 12px 16px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.offer-bundle-name {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    flex-shrink: 0;
}
.offer-bundle-products {
    list-style: none;
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
    flex: 1;
}
.offer-bundle-products li {
    padding: 2px 0;
    border-bottom: 1px solid var(--border-color);
}
.offer-bundle-products li:last-child { border-bottom: none; }
.offer-bundle-price {
    padding: 0 16px 8px;
    margin: 0;
    margin-top: auto;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
}
.offer-bundle-price-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: lowercase;
}
.offer-bundle-card .btn-add-bundle {
    margin: 0 16px 16px;
    width: calc(100% - 32px);
    flex-shrink: 0;
    margin-top: auto;
}
.offers-view-all { text-align: center; margin-top: 30px; }

.offers-bundles-list h2 {
    padding-left: 24px;
}

/* Bundle view page (like product page) */
.bundle-page .back-link { margin-bottom: 24px; }
.bundle-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.bundle-main-image {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}
.bundle-main-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.bundle-image-placeholder {
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    letter-spacing: 2px;
}
.bundle-info { padding: 0; }
.bundle-title {
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
}
.bundle-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 28px;
}
.bundle-price-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: lowercase;
}
.bundle-includes-title {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}
.bundle-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.bundle-item-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
}
.bundle-item-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.bundle-item-image {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}
.bundle-item-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    height: 120px;
    font-size: 0.75rem;
    color: var(--text-light);
}
.bundle-item-name {
    padding: 10px 12px;
    font-size: 0.875rem;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.3;
}
.bundle-page-add { margin-top: 0; }

/* Offers page: standard card layout (image + text + button) */
.offers-standard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}
/* Offers page: 2 columns desktop, full-width cards; no rounded border; spacing between cards */
.offers-page .offers-standard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.offers-page .offers-standard-card {
    border-radius: 0;
}
.offers-standard-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.offers-standard-card:hover { box-shadow: var(--shadow-md); }
.offers-standard-image-link { display: block; }
.offers-standard-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.offers-standard-content { padding: 20px; }
.offers-standard-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: 1px;
}
.offers-standard-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}
.offers-standard-btn { display: inline-block; }

/* ============================================
   COLLECTIONS - Clean Grid System
============================================ */
.collections {
    padding: 100px 0;
}

.collections-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
}

.category-section {
    margin-bottom: 100px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.category-header:hover {
    background: var(--bg-light);
    padding-left: 20px;
    padding-right: 20px;
}

.category-title {
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.category-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
}

.category-products {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.category-products.collapsed {
    max-height: 0;
    opacity: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--border-color);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

.product-card-out-of-stock {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: #dc2626;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background: #f5f5f5;
    font-size: 14px;
    letter-spacing: 2px;
}

.product-name {
    padding: 20px 25px 8px;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid var(--border-color);
    font-weight: 400;
}

.product-card-price {
    padding: 0 25px 20px;
    font-size: 1rem;
    text-align: center;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-weight: 500;
}
.product-price-original {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 8px;
}
.product-price-discount {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   PRODUCT PAGE - Elegant Layout
============================================ */
.product-page {
    padding-top: 20px;
    padding-bottom: 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 12px 0;
    border-bottom: 1px solid transparent;
}

.back-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.product-images {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.main-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

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

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.gallery-thumb:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.product-info {
    padding: 20px 0;
}

.product-info h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--primary-color);
}

.product-category {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.product-price {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 30px 0;
    font-weight: 400;
    letter-spacing: 2px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 20px;
    color: #e0e0e0;
}

.star.filled {
    color: var(--secondary-color);
}

.product-rating span {
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 1px;
}

.product-description {
    margin: 40px 0;
}

.product-description h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--primary-color);
}

.product-description p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.btn-add-to-cart {
    width: 100%;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: 40px;
    font-family: 'Ostrich Sans', sans-serif;
}

.btn-add-to-cart:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* ============================================
   REVIEWS SECTION
============================================ */
.reviews-section {
    margin: 80px 0;
    padding: 60px 0;
    border-top: 2px solid var(--primary-color);
}

.reviews-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.review-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    background: var(--white);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-header strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-date {
    color: var(--text-light);
    font-size: 13px;
    margin: 10px 0;
    letter-spacing: 1px;
}

.review-text {
    line-height: 1.8;
    color: var(--text-dark);
}

/* ============================================
   EXPANDABLE SECTIONS
============================================ */
.expandable-section {
    background: var(--white);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    overflow: hidden;
}

.expandable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    cursor: pointer;
    transition: var(--transition);
}

.expandable-header:hover {
    background: var(--bg-light);
}

.expandable-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.expand-btn {
    background: none;
    border: 2px solid var(--primary-color);
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.expand-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 40px;
}

.expandable-content.active {
    max-height: 2000px;
    padding: 0 40px 40px 40px;
}

.expandable-content p {
    line-height: 1.8;
    color: var(--text-dark);
}

/* ============================================
   ABOUT US SECTION
============================================ */
.about-section {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.about-section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--bg-light) 0%, #e8f2ee 40%, var(--white) 100%);
    z-index: 0;
}
.about-section-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50vw minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 0;
}
.about-image-col {
    position: relative;
    width: 50vw;
    min-height: 100%;
}
.about-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}
.about-store-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: var(--bg-light);
}
.about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    min-height: 100%;
}
.about-text-inner {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 40px 40px 48px;
}
.about-section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 24px;
}
.about-section-text {
    line-height: 1.9;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 32px;
}
.about-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 400px;
}
.about-actions-grid:has(.about-action-btn:only-child) {
    grid-template-columns: 1fr;
    max-width: 220px;
}
.about-actions-grid:has(.about-action-btn:nth-child(3):last-child) {
    grid-template-columns: repeat(2, 1fr);
}
.about-actions-grid:has(.about-action-btn:nth-child(3):last-child) .about-action-btn:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    justify-self: center;
}
.about-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 52px;
}
.about-action-btn svg {
    flex-shrink: 0;
}
.about-action-map,
.about-action-phone {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.about-action-map:hover,
.about-action-phone:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.about-action-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.about-action-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: var(--white);
    transform: translateY(-2px);
}
.about-action-email {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--primary-color);
}
.about-action-email:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .about-section-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .about-image-col {
        width: 100%;
        min-height: 280px;
        aspect-ratio: 4 / 3;
    }
    .about-text-inner {
        padding: 36px 24px;
        max-width: none;
    }
    .about-actions-grid {
        max-width: none;
    }
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--accent-cream);
    color: var(--text-dark);
    padding: 60px 0 0;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
    margin-top: 0;
    border-top: 3px solid var(--primary-color);
    text-align: left;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.footer-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 12px;
    filter: none;
}
.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.footer-intro {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 280px;
}
.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.footer-contact-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact-list a:hover {
    color: var(--primary-color);
}
.footer-contact-list li span {
    color: var(--text-dark);
}
.footer-map-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-columns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 120px;
}
.footer-link-list li {
    margin-bottom: 10px;
}
.footer-link-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-link-list a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}
.footer-bottom {
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}
.cart-max-hint {
    display: block;
    font-size: 12px;
    color: #b45309;
    margin-top: 4px;
    font-weight: 600;
}

/* ============================================
   WHATSAPP FLOAT
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: var(--transition);
    border: 3px solid var(--white);
}
@media (max-width: 768px) {
    .whatsapp-float { bottom: 58px; right: 16px; width: 56px; height: 56px; }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* ============================================
   MODAL
============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow: auto;
}

.modal-header {
    padding: 30px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.close-modal {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
    padding: 0;
    font-weight: 300;
}

.modal-body {
    padding: 30px;
    min-height: 200px;
}

#cartItems {
    margin-bottom: 20px;
}

#cartItems:empty::before {
    content: 'Your cart is empty';
    display: block;
    text-align: center;
    color: #535353;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.cart-item-info p {
    color: var(--text-light);
    font-size: 14px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-actions input {
    width: 60px;
    padding: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.cart-item-actions button {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.cart-item-actions button:hover {
    background: #dc2626;
}

.modal-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    padding: 15px 35px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: 'Ostrich Sans', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   CHECKOUT PAGE
============================================ */
.checkout-page {
    padding-top: 20px;
    padding-bottom: 80px;
}

.checkout-page h1 {
    font-size: 3rem;
    margin-bottom: 60px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.checkout-form-section,
.order-summary {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.checkout-form-section h2,
.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: 'Ostrich Sans', sans-serif;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--secondary-color);
    background: var(--bg-light);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-color);
}

.payment-option span {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.cart-total,
.order-total {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 2px solid var(--primary-color);
    margin-top: 30px;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

/* ============================================
   SHOP PAGE (filters + grid)
============================================ */
.shop-page {
    padding-top: 16px;
    padding-bottom: 80px;
}

.page-main {
    padding-top: 16px;
    padding-bottom: 80px;
}

.shop-title {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--primary-color);
}

.shop-filters {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.shop-filters h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--primary-color);
}

/* Shop sort: icon-only dropdown + clear X, same icon style */
/* Shop sort: single line, no box – "Price" trigger + clear */
.shop-sort-bar {
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 24px 0;
    min-height: 0;
}
.shop-results {
    width: 100%;
    max-width: 100%;
}
.shop-sort-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.shop-sort-btn {
    padding: 6px 12px;
    height: auto;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    letter-spacing: 0.5px;
}
.shop-sort-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--white);
}
.shop-sort-clear {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 4px;
    transition: var(--transition);
}
.shop-sort-clear:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--white);
}
.shop-sort-clear svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.shop-sort-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    min-width: 140px;
    z-index: 10;
    display: none;
}
.shop-sort-dropdown.open { display: block; }
.shop-sort-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}
.shop-sort-dropdown a:last-child { border-bottom: none; }
.shop-sort-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}
.shop-sort-wrap { position: relative; }
.shop-sort-clear { text-decoration: none; }
.shop-sort-clear[hidden] { display: none !important; }

.shop-filters .form-group label {
    text-transform: uppercase;
}

.shop-filters select,
.shop-filters input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    font-family: 'Ostrich Sans', sans-serif;
    font-size: 14px;
}

.shop-filters select:focus,
.shop-filters input[type="number"]:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range-separator {
    font-size: 18px;
    color: var(--text-light);
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.filter-actions .btn {
    flex: 1 1 45%;
    min-width: 0;
    padding: 12px 16px;
    font-size: 13px;
    text-align: center;
}

/* Shop: 5 product columns on desktop */
.shop-page .products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
@media (max-width: 1400px) {
    .shop-page .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1100px) {
    .shop-page .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shop-results .static-header {
    cursor: default;
}

.see-all-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}
.see-all-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.no-results {
    padding: 40px 20px;
    color: var(--text-light);
}

/* HOME REVIEWS SECTION WITH SLIDER */
.home-reviews-section {
    padding: 80px 0 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
}

.reviews-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #000000;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reviews-grid-wrapper {
    position: relative;
    min-height: 300px;
    margin-bottom: 40px;
    contain: layout;
}

.reviews-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.reviews-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-item {
    background: white;
    padding: 40px 30px;
    border: 1px solid #d0d0d0;
    text-align: center;
}

.review-quote {
    font-size: 3.5rem;
    color: #4581d9;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.review-text {
    font-style: italic;
    line-height: 1.8;
    color: #333;
    font-size: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    background: #000000;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #4581d9;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .home-reviews-section {
        padding: 60px 0;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .review-item {
        padding: 30px 20px;
    }
    
    .review-quote {
        font-size: 3rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .bundle-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .bundle-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-images {
        position: relative;
        top: 0;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .shop-page .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-offers-title {
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
    }
    .home-offers-section .offers-bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
    }
    .offers-slider {
        height: 320px;
    }
    /* Offers page: single column, full width on mobile */
    .offers-page .offers-standard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .offers-page.container {
        padding-left: 0;
        padding-right: 0;
    }
    .offers-page .offers-page-title {
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
    }
    
    .nav-container {
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .collections-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .products-grid,
    .shop-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .image-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-title {
        font-size: 2.2rem;
    }

    .home-categories-section {
        padding: 50px 0;
    }
    .home-categories-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .home-categories-grid,
    .home-brands-grid {
        gap: 20px;
    }
    .home-category-name {
        font-size: 1.3rem;
    }
}