/* Extracted styles from giftshopWeb.html */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: #2c2c2c;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}

/* ---------- ORANGE-GOLD & WHITE PALETTE ---------- */
:root {
    --gold: #E8A838;
    --gold-light: #F0C05A;
    --gold-pale: #FDF0D6;
    --gold-dark: #C4941B;
    --white: #ffffff;
    --off-white: #faf8f5;
    --text-dark: #1e1e1e;
    --text-muted: #5a5a5a;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    --radius: 16px;
    --transition: 0.25s ease;
}

/* ---------- UTILITY ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: orange;
    border-radius: 4px;
    margin: 0.5rem 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: orange; 
    color: #fff;
}
.btn:hover {
     background: rgba(255, 166, 0, 0.899); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}
.btn-outline {
    background: transparent;
    color: orange;
    border: 2px solid orange;
}
.btn-outline:hover {
    background: orange;
    color: #fff;
}
.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
}

.load-more-btn {
    display: block;
    width: 100%;
    margin: 2rem auto 0;
    padding: 0.8rem 2rem;
    background: orange;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    grid-column: 1 / -1;
}

.load-more-btn:hover {
    background: rgba(255, 166, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 166, 0, 0.3);
}

.load-more-btn:active {
    transform: translateY(0);
}

/* ---------- LOADING BANNER ---------- */
.loading-banner {
    background: linear-gradient(90deg, #ff8c00 0%, #ffa500 50%, #ff8c00 100%);
    color: white;
    padding: 0.5rem 0;
    overflow: hidden;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.banner-content {
    display: flex;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.banner-content span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .banner-content {
        animation-duration: 15s;
    }
}

@media (max-width: 650px) {
    .banner-content {
        animation-duration: 15s;
    }
}

@media (max-width: 480px) {
    .banner-content {
        animation-duration: 12s;
    }
}

/* ---------- BUNDLE SECTION ---------- */
.bundle-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.bundle-header-left {
    flex: 1;
}

.bundle-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.bundle-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
}

.bundle-header-right {
    flex-shrink: 0;
}

.bundle-tabs {
    display: flex;
    gap: 2rem;
}

.bundle-tab {
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.bundle-tab:hover {
    color: var(--gold);
}

.bundle-tab.active {
    color: var(--text-dark);
    font-weight: 600;
}

.bundle-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: orange;
    border-radius: 2px;
}

.bundle-products-container {
    position: relative;
}

.bundle-products-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bundle-products-scroll::-webkit-scrollbar {
    display: none;
}

.bundle-product-card {
    flex: 0 0 auto;
    width: 220px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.bundle-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.bundle-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background: var(--off-white);
}

.bundle-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.bundle-product-badge.sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.bundle-product-badge.new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.bundle-product-badge.featured {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
}

.bundle-product-cart-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.bundle-product-cart-btn:hover {
    background: orange;
    color: white;
    transform: scale(1.1);
}

.bundle-product-cart-btn i {
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.bundle-product-cart-btn:hover i {
    color: white;
}

.bundle-product-info {
    padding: 1rem;
}

.bundle-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bundle-product-subcategory {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.bundle-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: orange;
    margin-top: auto;
}

@media (max-width: 768px) {
    .bundle-section {
        padding: 3rem 0;
    }

    .bundle-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .bundle-header-left {
        width: 100%;
    }

    .bundle-title {
        font-size: 1.5rem;
    }

    .bundle-subtitle {
        font-size: 0.9rem;
    }

    .bundle-header-right {
        width: 100%;
    }

    .bundle-tabs {
        gap: 1.5rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .bundle-tab {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .bundle-product-card {
        width: 160px;
    }

    .bundle-product-image-wrapper {
        height: 160px;
    }

    .bundle-product-badge {
        top: 8px;
        left: 8px;
        padding: 0.25rem 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bundle-product-card {
        width: 190px;
    }

    .bundle-product-image-wrapper {
        height: 190px;
    }
}

.bundle-product-name {
    font-size: 0.95rem;
}

.bundle-product-subcategory {
    font-size: 0.8rem;
}

.bundle-product-price {
    font-size: 1.1rem;
}

/* ---------- HEADER ---------- */
header {
    background: var(--white);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    position: sticky;
    top: 2.2rem;
    z-index: 1000;
    backdrop-filter: blur(4px);
    border-radius: var(--radius);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48x;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 6px 18px rgba(201, 169, 110, 0.16);
    transition: var(--transition);
}

.brand-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(201, 169, 110, 0.22);
}

.brand-logo {
    width: 45px;
    height: 40px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
}
.logo:hover {
    color: orange;
}
.logo span {
    color: orange;
}

@media (max-width: 600px) {
    .logo {
        font-size: 1.2rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-links a {
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    display: inline-block;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2.5px;
    background: orange;
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 15%;
    color: orange;
}
.nav-links a:hover {
    color: orange;
    
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* ---- SEARCH BAR ---- */
.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}
.search-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}
.search-toggle:hover {
    background: var(--gold-pale);
    color: orange;
}
.search-toggle i {
    font-size: 1rem;
}
.search-wrap input {
    padding: 0.55rem 2.4rem 0.55rem 1rem;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: var(--off-white);
    font-size: 1rem;
    width: 200px;
    max-width: 100%;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    min-width: 0;
}
.search-wrap input:focus,
.search-wrap:focus-within input {
    outline: none;
    border-color: orange;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
    width: 300px;
    max-width: 100%;
}
.search-wrap .clear-search {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: none;
    place-items: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}
.search-wrap .clear-search:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}
.search-wrap .clear-search.visible {
    display: grid;
}

.cart-icon {
    position: relative;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}
.cart-icon:hover {
    color: orange;
}
.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: orange;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 4rem 0 3.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    overflow: hidden;
    height: 550px;
    align-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}
.hero h1 span {
    color: orange;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 2rem;
}
.hero .btn {
    font-size: 1rem;
    background: orange;
    padding: 0.9rem 2.8rem;
}

/* ---------- CATEGORY GRID (HOME) ---------- */
.categories-home {
    padding: 4rem 0;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.08);
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    border-color: var(--gold-light);
}
.category-card i {
    font-size: 2.2rem;
    color: orange;
    margin-bottom: 0.6rem;
}
.category-card h3 {
    font-weight: 600;
    font-size: 1rem;
}
.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ---------- PRODUCT SECTIONS ---------- */
.products-section {
    padding: 3rem 0 4rem;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.products-section:first-of-type {
    border-top: none;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.subcategory-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}
.subcategory-tabs button {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}
.subcategory-tabs button.active {
    background: orange;
    color: #fff;
    border-color: orange;
}
.subcategory-tabs button:hover:not(.active) {
    border-color: orange;
    color: var(--text-dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.8rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.06);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}
.product-card .img-wrap {
    height: 200px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: orange;
}
.product-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card .info {
    padding: 1rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card .info h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.product-card .info .price {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin: 0.3rem 0 0.6rem;
}
.product-card .info .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    flex: 1;
}
.product-card .info .btn {
    align-self: flex-start;
    font-size: 0.8rem;
    padding: 0.4rem 1.4rem;
}

/* Hub-style product cards */
.hub-style-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hub-style-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.hub-style-card .product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-style-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hub-style-card .product-image-wrapper i {
    font-size: 3.5rem;
    color: orange;
}

.hub-style-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.hub-style-card .product-badge.sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.hub-style-card .product-badge.new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.hub-style-card .product-badge.personalise {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.hub-style-card .product-badge.featured {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
}

.hub-style-card .product-cart-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.hub-style-card .product-cart-btn:hover {
    background: orange;
    color: white;
    transform: scale(1.1);
}

.hub-style-card .product-cart-btn i {
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.hub-style-card .product-cart-btn:hover i {
    color: white;
}

.hub-style-card .product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hub-style-card .product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hub-style-card .product-subcategory {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.hub-style-card .product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: orange;
    margin-top: auto;
}

/* ---------- SEARCH RESULTS SECTION ---------- */
#searchResultsSection {
    display: none;
    padding: 2rem 0 3rem;
    scroll-margin-top: 80px; /* ensures it sits nicely below sticky header */
}
#searchResultsSection.active {
    display: block;
}
#searchResultsSection .section-title {
    margin-bottom: 0.2rem;
}
#searchResultsSection .gold-line {
    margin: 0.3rem 0 1.5rem;
}
.no-results {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
}
.no-results i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* ---------- CART SIDEBAR ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    padding: 1.8rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open {
    transform: translateX(0);
}

.cart-sidebar .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.cart-sidebar .cart-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
}
.cart-close {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}
.cart-close:hover {
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    margin: 1.2rem 0;
    overflow-y: auto;
}
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0ede8;
    align-items: center;
}
.cart-item .ci-img {
    width: 60px;
    height: 60px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: orange;
    flex-shrink: 0;
    overflow: hidden;
}
.cart-item .ci-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item .ci-info {
    flex: 1;
}
.cart-item .ci-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}
.cart-item .ci-info .ci-price {
    color: orange;
    font-weight: 600;
    font-size: 0.9rem;
}
.cart-item .ci-remove {
    color: #b0a8a0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}
.cart-item .ci-remove:hover {
    color: #c0392b;
}

.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 1.2rem;
}
.cart-footer .total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.cart-footer .total span:last-child {
    color: orange;
}
.cart-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem 0;
}
.empty-cart i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* ---------- CHECKOUT MODAL ---------- */
.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 1.5rem;
}
.checkout-modal.open {
    opacity: 1;
    pointer-events: all;
}

.checkout-box {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 2rem 2.2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.96);
    transition: var(--transition);
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.checkout-box::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.checkout-modal.open .checkout-box {
    transform: scale(1);
}

.checkout-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}
.checkout-box .sub {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.checkout-box label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
    margin-right: 2rem;
}
.checkout-box input,
.checkout-box select,
.checkout-box textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--off-white);
}
.checkout-box input:focus,
.checkout-box select:focus,
.checkout-box textarea:focus {
    outline: none;
    border-color: orange;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}
.checkout-box .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.checkout-box .actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.checkout-box .actions .btn {
    flex: 1;
    justify-content: center;
}
.checkout-box .actions .btn-secondary {
    background: #eee;
    color: var(--text-dark);
}
.checkout-box .actions .btn-secondary:hover {
    background: #ddd;
}

.order-summary {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    border: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.summary-row.total {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 2px solid orange;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold-dark);
}

/* ---------- CHECKOUT MODAL RESPONSIVE ---------- */
/* Mobile (up to 480px) */
@media (max-width: 480px) {
    .checkout-modal {
        padding: 1rem;
        align-items: flex-end;
    }
    
    .checkout-box {
        max-width: 100%;
        max-height: 95vh;
        padding: 1.5rem 1.2rem;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
    }
    
    .checkout-modal.open .checkout-box {
        transform: translateY(0);
    }
    
    .checkout-box h2 {
        font-size: 1.4rem;
    }
    
    .checkout-box .sub {
        font-size: 0.85rem;
    }
    
    .checkout-box label {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .checkout-box input,
    .checkout-box select {
        font-size: 0.9rem;
        padding: 0.65rem 0.9rem;
    }
    
    .checkout-box .actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .checkout-box .actions .btn {
        width: 100%;
    }
    
    .order-summary {
        padding: 0.8rem;
    }
    
    .summary-row {
        font-size: 0.9rem;
    }
    
    .summary-row.total {
        font-size: 1rem;
    }
}

/* Tablet (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .checkout-modal {
        padding: 1.2rem;
    }
    
    .checkout-box {
        max-width: 90%;
        padding: 1.8rem 1.5rem;
    }
    
    .checkout-box h2 {
        font-size: 1.6rem;
    }
    
    .checkout-box .sub {
        font-size: 0.9rem;
    }
    
    .checkout-box label {
        font-size: 0.88rem;
    }
    
    .checkout-box input,
    .checkout-box select {
        font-size: 0.93rem;
    }
}

/* Laptop (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .checkout-box {
        max-width: 480px;
        padding: 1.9rem 1.8rem;
    }
    
    .checkout-box h2 {
        font-size: 1.7rem;
    }
}

/* Desktop (1025px and above) */
@media (min-width: 1025px) {
    .checkout-box {
        max-width: 500px;
    }
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--white);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    padding: 2.5rem 0 1.8rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
}
footer .footer-logo span {
    color: orange;
}
footer .socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 1rem 0 0.6rem;
}
footer .socials a {
    color: var(--text-muted);
    font-size: 1.3rem;
    transition: var(--transition);
}
footer .socials a:hover {
    color: orange;
}

/* ---------- RESPONSIVE ---------- */
/* Apply 1024px style to all screen sizes */
.nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0.5rem;
    right: 0.5rem;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 1001;
}

.nav-links.open {
    display: flex;
    padding: 1rem 1rem;
    background: rgba(255, 255, 255, 0.964);
    backdrop-filter: blur(0.1px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.nav-links.open a {
    padding: 0.85rem 0;
    width: 100%;
    border-bottom: 0px solid rgba(0, 0, 0, 0.06);
}

.nav-links a.active::after {
    width: 5%;
}

.nav-links.open a:last-child {
    border-bottom: none;
}

.hamburger {
    display: block;
}

.hamburger.open {
    color: orange;
}

.header-inner {
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.75rem;
}

.body.nav-open {
    overflow: hidden;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
}

.search-wrap input {
    width: 280px;
}

.search-wrap input:focus,
.search-wrap:focus-within input {
    width: 320px;
}

@media (max-width: 1024px) {
    /* Styles already applied globally above */
}

@media (max-width: 820px) {
    .search-wrap {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 200px;
        margin-right: 0.5rem;
    }
    .search-toggle {
        display: none;
    }
    .search-wrap input {
        position: relative;
        width: 220px;
        padding: 0.55rem 2.4rem 0.55rem 1rem;
        border-radius: 50px;
        border: 1px solid #ddd;
        opacity: 1;
        pointer-events: auto;
        right: auto;
        top: auto;
        transform: none;
        z-index: 1;
    }
    .search-wrap input:focus,
    .search-wrap:focus-within input {
        outline: none;
        border-color: orange;
        box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
        width: 250px;
    }
    .search-wrap .clear-search {
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: rgba(0, 0, 0, 0.05);
        color: var(--text-muted);
        display: none;
        place-items: center;
        border-radius: 50%;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .search-wrap .clear-search:hover {
        background: rgba(0, 0, 0, 0.05);
        color: var(--text-dark);
    }
    .search-wrap .clear-search.visible {
        display: grid;
    }
    .cart-icon {
        margin-right: 0.5rem;
    }
    .cart-icon,
    .hamburger {
        flex: 0 0 auto;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 2.5rem 0 2rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .header-inner {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1rem;
    }
    .header-actions {
        gap: 0.5rem;
    }
    .header-actions .search-wrap {
        order: 1;
    }
    .header-actions .cart-icon {
        order: 2;
    }
    .header-actions .hamburger {
        order: 3;
    }
    .search-wrap {
        max-width: calc(50vw - 55px);
        margin-right: 0.5rem;
    }
    .search-wrap.open input {
        width: min(180px, calc(100vw - 110px));
    }
    .checkout-modal {
        padding: 1rem;
    }
    .checkout-box {
        padding: 1.5rem 1.2rem;
    }
    .checkout-box h2 {
        font-size: 1.5rem;
    }
    .checkout-box .sub {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .checkout-box label {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        margin-bottom: 0.2rem;
    }
    .checkout-box input,
    .checkout-box select {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    .order-summary {
        padding: 0.8rem;
        margin-top: 1rem;
    }
    .summary-row {
        font-size: 0.85rem;
    }
    .summary-row.total {
        font-size: 1rem;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .product-card .img-wrap {
        height: 130px;
        font-size: 2.5rem;
    }

    .hub-style-card .product-image-wrapper {
        height: 160px;
    }

    .hub-style-card .product-image-wrapper i {
        font-size: 2.5rem;
    }

    .hub-style-card .product-badge {
        top: 8px;
        left: 8px;
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }

    .hub-style-card .product-cart-btn {
        width: 32px;
        height: 32px;
        bottom: 8px;
        right: 8px;
    }

    .hub-style-card .product-cart-btn i {
        font-size: 0.85rem;
    }

    .hub-style-card .product-info {
        padding: 0.75rem;
    }

    .hub-style-card .product-name {
        font-size: 0.85rem;
    }

    .hub-style-card .product-subcategory {
        font-size: 0.7rem;
    }

    .hub-style-card .product-price {
        font-size: 1rem;
    }
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        padding: 1.2rem;
    }
    .checkout-box {
        padding: 2.5rem;
        
    }
    .checkout-box .row2 {
        grid-template-columns: 1fr;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .subcategory-tabs button {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    .logo {
        font-size: 1.4rem;
    }
    .search-wrap input {
        width: 100%;
        max-width: none;
        font-size: 16px;
        padding: 0.5rem 0.5rem 0.55rem 0.55rem;
    }
    .search-wrap input:focus,
    .search-wrap:focus-within input {
        width: 100%;
        max-width: none;
    }
    .search-wrap i {
        left: 8px;
        font-size: 0.8rem;
    }
    .product-card .img-wrap {
    height: 210px;
    }
}

/* ---------- SCROLL ANCHOR ---------- */
.category-anchor {
    scroll-margin-top: 80px;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: auto;
    min-width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    color: white;
    font-size: 28px;
}

.whatsapp-float span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- LIGHTBOX MODAL ---------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background: orange;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -45px;
        right: 10px;
    }
}

/* hide categories when search active */
.hide-when-search {
    transition: opacity 0.3s, filter 0.3s;
}
.hide-when-search.searching,
body.search-focused .hide-when-search {
    opacity: 0.28;
    pointer-events: none;
    filter: blur(4px);
}

/* ---------- SERVICES SECTION STYLING ---------- */
.service-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.service-item span {
    flex: 1;
    font-weight: 500;
    color: var(--text);
}

/* ---------- SERVICE LIGHTBOX MODAL ---------- */
.service-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.service-lightbox-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.service-lightbox.active .service-lightbox-content {
    transform: scale(1);
}

.service-lightbox-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 30px;
    height: 30px;
    background: orange;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color:white;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-lightbox-close:hover {
    background: white;
    color:orange;
    transform: rotate(90deg);
}

.service-lightbox-header {
    background: linear-gradient(35deg, var(--gold) 0%, #d4a017 10%);
    background-size: cover;
    background-position: center;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.service-lightbox-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 16px 16px 0 0;
    z-index: 1;
}

.service-lightbox-header > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.service-lightbox-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.service-lightbox-body {
    padding: 2rem;
}

.service-lightbox-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.service-lightbox-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(212, 175, 55, 0.03);
}

.book-service-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.book-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.book-service-btn i {
    font-size: 1.2rem;
}

/* ---------- REVIEWS SECTION STYLING ---------- */
.reviews-section {
    margin-top: 3rem;
    padding-top: 2rem;
}

.reviews-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.gold-line-reviews {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

.google-reviews-embed {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.google-reviews-embed iframe {
    display: block;
    border-radius: 12px;
}

/* ---------- HOW TO ORDER SECTION STYLING ---------- */
.how-to-order-section {
    margin-top: 3rem;
    padding-top: 2rem;
}

.how-to-order-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.order-steps-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 2rem;
}

.order-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.order-step:last-child {
    border-bottom: none;
}

.order-step:hover {
    background: rgba(212, 175, 55, 0.03);
    padding-left: 0.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, orange 0%, #d4a017 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.step-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.order-contact-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-paragraph {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link {
    color: orange;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #b8860b;
    text-decoration: underline;
}

.bulk-order-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

/* ---------- ZONE DETAILS STYLING ---------- */
.zone-details {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zone-info {
    color: white;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.zone-info::before {
    content: '📍 ';
    margin-right: 0.5rem;
}

/* ---------- DELIVERY INFO STYLING ---------- */
.delivery-info {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid;
    font-weight: 500;
    transition: all 0.3s ease;
}

.delivery-info[style*="#10b981"] {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: #10b981;
}

.delivery-info[style*="#f59e0b"] {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: #f59e0b;
}

/* ---------- HUB SECTION STYLING ---------- */
.hub-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.hub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.hub-header-left {
    flex: 1;
}

.hub-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hub-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
}

.hub-header-right {
    flex-shrink: 0;
}

.hub-tabs {
    display: flex;
    gap: 2rem;
}

.hub-tab {
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.hub-tab:hover {
    color: var(--gold);
}

.hub-tab.active {
    color: var(--text-dark);
    font-weight: 600;
}

.hub-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: orange;
    border-radius: 2px;
}

.hub-products-container {
    position: relative;
}

.hub-products-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hub-products-scroll::-webkit-scrollbar {
    display: none;
}

.hub-product-card {
    flex: 0 0 auto;
    width: 220px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.hub-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.hub-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background: var(--off-white);
}

.hub-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hub-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.hub-product-badge.sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.hub-product-badge.new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.hub-product-badge.personalise {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.hub-product-badge.featured {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
}

.hub-product-cart-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.hub-product-cart-btn:hover {
    background: orange;
    color: white;
    transform: scale(1.1);
}

.hub-product-cart-btn i {
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.hub-product-cart-btn:hover i {
    color: white;
}

.hub-product-info {
    padding: 1rem;
}

.hub-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hub-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: orange;
}

.hub-loading-bar {
    width: 100%;
    height: 4px;
    background: var(--off-white);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.hub-loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-light), orange);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .hub-section {
        padding: 3rem 0;
    }

    .hub-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hub-header-left {
        width: 100%;
    }

    .hub-title {
        font-size: 1.5rem;
    }

    .hub-subtitle {
        font-size: 0.9rem;
    }

    .hub-header-right {
        width: 100%;
    }

    .hub-tabs {
        gap: 1.5rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .hub-tab {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .hub-product-card {
        width: 160px;
    }

    .hub-product-image-wrapper {
        height: 160px;
    }

    .hub-product-badge {
        top: 8px;
        left: 8px;
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }

    .hub-product-cart-btn {
        width: 32px;
        height: 32px;
        bottom: 8px;
        right: 8px;
    }

    .hub-product-cart-btn i {
        font-size: 0.85rem;
    }

    .hub-product-info {
        padding: 0.75rem;
    }

    .hub-product-name {
        font-size: 0.85rem;
    }

    /* Shop page responsive styles */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--off-white);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-card i {
        font-size: 2rem;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .category-card p {
        font-size: 0.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .subcategory-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .subcategory-tabs button {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .bundle-products-scroll {
        gap: 1rem;
    }

    .bundle-product-card {
        width: 160px;
        min-width: 160px;
    }

    .bundle-product-image-wrapper {
        height: 160px;
    }

    .bundle-product-info {
        padding: 0.75rem;
    }

    .bundle-product-name {
        font-size: 0.85rem;
    }

    .bundle-product-price {
        font-size: 0.95rem;
    }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .bundle-product-card {
        width: 180px;
        min-width: 180px;
    }

    .bundle-product-image-wrapper {
        height: 180px;
    }
}

/* Laptop/Desktop responsive styles */
@media (min-width: 1025px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bundle-product-card {
        width: 200px;
        min-width: 200px;
    }

    .bundle-product-image-wrapper {
        height: 200px;
    }
}
