* {
    box-sizing: border-box;
}

/* ===== ANNOUNCEMENT BAR STYLES ===== */
.announcement-bar {
    background:  linear-gradient(135deg, rgb(234, 48, 104) 50%, rgb(118, 75, 162)  200%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2.2px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.announcement-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.announcement-bar-text {
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

.announcement-bar.hidden {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .announcement-bar-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        padding: 8px 12px;
    }
    
    .announcement-bar-text {
        font-weight: 700;
        font-size: 14px;
    }
}
/* ===== END ANNOUNCEMENT BAR STYLES ===== */

/* ===== HERO CAROUSEL STYLES ===== */
.hero-carousel-wrapper {
    position: relative;
    overflow: hidden;
    background: white;
    
}

.hero-carousel-main {
    position: relative;
    max-width: 2400px;
    margin: 0 auto;
}

.hero-carousel-container {
    overflow: hidden;
    cursor: grab;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-carousel-container:active {
    cursor: grabbing;
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-carousel-slide {
    flex: 0 0 100%;
    padding: 50px 24px;
    text-align: center;
    color: white;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgb(234, 48, 104) 50%, rgb(118, 75, 162)  200%);
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Navigation Buttons - Desktop Only */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-nav.left {
    left: 30px;
}

.hero-nav.right {
    right: 30px;
}

@media (min-width: 769px) {
    .hero-nav {
        display: flex;
    }
}

/* Hero Carousel Indicators */
.hero-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 12px 0 16px;
    background: white;
}

.hero-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.hero-indicator.active {
    background: #000;
    border-color: #000;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-indicator:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-carousel-slide {
        padding: 36px 24px;
        min-height: 260px;
    }

    .hero-nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-carousel-slide {
        padding: 30px 20px;
        min-height: 240px;
    }
}
/* ===== END HERO CAROUSEL STYLES ===== */
    
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fafbfc;
    color: #1a1d29;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid #333;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-accept, .cookie-decline {
    padding: 10px 20px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: #fff;
    color: #000;
}

.cookie-decline:hover {
    background: #333;
}

/* Scrollable Categories Section */
.scrollable-categories-section {
    background: white;
    padding: 28px 20px 24px;
    position: relative;
    overflow: hidden;
}

.scrollable-categories-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.scrollable-categories-container {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollable-categories-container::-webkit-scrollbar {
    display: none;
}

.scrollable-categories-container:active {
    cursor: grabbing;
}

.scrollable-categories-track {
    display: flex;
    gap: 20px;
    padding: 0;
}

.scrollable-category-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    width: 160px;
    padding: 20px 15px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.scrollable-category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.scrollable-category-image {
    width: 130px;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scrollable-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.scrollable-category-image .category-emoji {
    font-size: 48px;
}

.scrollable-category-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1d29;
    line-height: 1.3;
    word-wrap: break-word;
    max-width: 100%;
}

/* =====================================================================
   UNIFIED BANNER COMPONENT (.gift-banner)
   Used for the top strip banner only now (see .split-banner below for
   the diagonal Diwali / Relationship banners).

   Why aspect-ratio instead of fixed px heights:
   Fixed heights (320px desktop -> 100px at 360px) fought with object-fit
   at in-between widths and caused the image to bleed/overflow into the
   sections below. aspect-ratio scales the box proportionally with the
   viewport, so the crop always matches the container - no more
   per-breakpoint height overrides needed.
   ===================================================================== */

.gift-banner {
    background: #fff;
    margin: 0;
}

.gift-banner__link {
    display: block;
    text-decoration: none;
}

.gift-banner__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3.2 / 1;      /* standard banner */
    transition: transform 0.3s ease;
}

.gift-banner__media--top {
    aspect-ratio: auto;   /* let this banner take whatever height its own image needs - no forced box shape */
    background: #fff8ec;
}

.gift-banner__media--top .gift-banner__img {
    position: static;    /* stop stretching to fill an absolute box */
    width: 100%;
    height: auto;        /* scales naturally with width, keeping the image's real proportions */
    object-fit: initial;
    display: block;
}

.gift-banner__link:hover .gift-banner__media {
    transform: scale(1.02);
}

.gift-banner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gift-banner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background: linear-gradient(90deg, rgba(255, 71, 87, 0.85) 0%, rgba(255, 71, 87, 0.4) 60%, transparent 100%);
    transition: background 0.3s ease;
}

.gift-banner__overlay--diwali {
    background: linear-gradient(90deg, rgba(255, 153, 0, 0.85) 0%, rgba(255, 193, 7, 0.4) 20%, transparent 100%);
}

.gift-banner__link:hover .gift-banner__overlay {
    background: linear-gradient(90deg, rgba(255, 71, 87, 0.95) 0%, rgba(255, 71, 87, 0.5) 60%, transparent 100%);
}

.gift-banner__link:hover .gift-banner__overlay--diwali {
    background: linear-gradient(90deg, rgba(255, 153, 0, 0.95) 0%, rgba(255, 193, 7, 0.5) 20%, transparent 100%);
}

.gift-banner__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.gift-banner__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: white;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .gift-banner__overlay {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .gift-banner__overlay {
        padding: 0 20px;
    }
}
/* ===== END UNIFIED BANNER COMPONENT ===== */

/* =====================================================================
   SPLIT BANNER COMPONENT (.split-banner)
   Diagonal color panel + decorative blob + rounded display font,
   used for the Diwali Special and Enriching Relationships banners.
   ===================================================================== */

.split-banner {
    background: #fff;
    margin: 0;
}

.split-banner__link {
    display: block;
    text-decoration: none;
}

.split-banner__media {
    position: relative;
    width: 100%;
    aspect-ratio: 3.6 / 1;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.split-banner__link:hover .split-banner__media {
    transform: scale(1.01);
}

.split-banner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.split-banner__color-panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 56%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8% 0 60px;
    clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
    z-index: 2;
    overflow: hidden;
}

.split-banner--diwali .split-banner__color-panel {
    background: linear-gradient(135deg, #ff9a00 0%, #ffc93c 100%);
}

.split-banner--relationship .split-banner__color-panel {
    background: linear-gradient(135deg, rgb(234, 48, 104) 0%, rgb(255, 100, 140) 100%);
}

.split-banner__blob {
    position: absolute;
    top: 50%;
    right: 6%;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
    transform: translateY(-50%);
    pointer-events: none;
}

.split-banner__title,
.split-banner__subtitle {
    font-family: 'Baloo 2', 'Jost', sans-serif;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    position: relative;
    z-index: 3;
    display: inline-block;
    width: fit-content;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.65);
    margin: 0;
}

.split-banner__title {
    font-size: clamp(1.3rem, 3vw, 2.3rem);
    margin-bottom: 12px;
}

.split-banner__subtitle {
    font-size: clamp(1rem, 2.3vw, 1.7rem);
}

.split-banner__emoji {
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .split-banner__color-panel {
        width: 66%;
        padding: 0 8% 0 28px;
        clip-path: polygon(0 0, 100% 0, 62% 100%, 0 100%);
    }

    .split-banner__blob {
        width: 150px;
        height: 150px;
        right: 4%;
    }

    .split-banner__title {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
    }

    .split-banner__subtitle {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
}

@media (max-width: 480px) {
    .split-banner__media {
        aspect-ratio: auto;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .split-banner__color-panel {
        position: static;
        width: 100%;
        padding: 28px 22px 44px;
        clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
    }

    .split-banner__img {
        position: static;
        width: 100%;
        height: 190px;
        margin-top: -16px;
    }

    .split-banner__blob {
        display: none;
    }

    .split-banner__title {
        font-size: 1.3rem;
    }

    .split-banner__subtitle {
        font-size: 1.05rem;
    }
}
/* ===== END SPLIT BANNER COMPONENT ===== */

/* Scrollable Occasions Section */
.occasions-section {
    background: white;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.occasions-header {
    text-align: center;
    margin-bottom: 28px;
}

.occasions-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a1d29;
    margin-bottom: 8px;
}

.occasions-subtitle {
    color: #64748b;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Note: the occasion cards themselves now reuse .categories-grid / .category-item /
   .category-image from the "Shop by Category" section below, so no separate
   grid/card/nav CSS is needed here anymore. */

.occasions-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* List view: rows with a small thumbnail, name, and chevron, instead of
   scrollable cards. Two columns on wider screens so nothing scrolls
   sideways and the whole list is visible at a glance. */
.occasion-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}


.occasion-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: #faf3e7;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.occasion-list-item:hover {
    border-color: #e4cd9c;
    background: #f5ead4;
    transform: translateX(2px);
}

.occasion-list-image {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.occasion-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.occasion-list-name {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #4a3826;
}

.occasion-list-chevron {
    flex: 0 0 auto;
    color: #94a3b8;
}

@media (max-width: 600px) {
    .occasion-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .occasion-list-item {
        padding: 8px 12px;
    }

    .occasion-list-image {
        width: 40px;
        height: 40px;
    }

    .occasion-list-name {
        font-size: 14px;
    }
}

/* Promotional Carousel Section */
.hero-carousel-section {
    background: rgb(248, 250, 252);
    padding: 6px 0;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    max-width: 2560px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    cursor: grab;
    position: relative;
    width: 100%;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 40px 60px;
    position: relative;
    box-sizing: border-box;
}

.carousel-slide:nth-child(1) {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.carousel-slide:nth-child(2) {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.carousel-slide:nth-child(3) {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.carousel-slide:nth-child(4) {
    background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%);
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.slide-text {
    flex: 1;
    max-width: 60%;
}

.slide-text h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a1d29;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #374151;
    margin-bottom: 30px;
    line-height: 1.5;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1a1d29;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.slide-image {
    font-size: clamp(4rem, 8vw, 8rem);
    margin-left: 30px;
    flex-shrink: 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.left { 
    left: 30px; 
}

.carousel-nav.right { 
    right: 30px; 
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(106, 120, 135, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(106, 120, 135, 0.7);
}

/* Categories Section
   Note: .categories-section / .categories-title were removed along with the
   static grid markup in index.php. .categories-header, .categories-grid,
   .category-item, and .category-image are KEPT below because they're
   still reused by the occasions section (and .categories-header is also
   used by the scrollable-categories section near the top of the page). */

.categories-header {
    text-align: center;
    margin-bottom: 24px;
}

.categories-grid {
    display: flex;
    gap: 20px;
}

.category-item {
    flex: 0 0 160px;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.08);
}

.category-item h3 {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #1a1d29;
    word-wrap: break-word;
    line-height: 1.3;
    margin: 0;
}

/* Trending Section */
.trending-section {
    background: white;
    padding: 12px 24px 4px;
    overflow: hidden;
    position: relative;
}

.trending-header {
    text-align: center;
    margin-bottom: 14px;
}

.trending-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.trending-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.trending-container {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    padding: 0 44px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.trending-container::-webkit-scrollbar {
    display: none;
}

.trending-container:active {
    cursor: grabbing;
}

.trending-scroll {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trending-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 170px;
}

.trending-item:hover {
    transform: translateY(-5px);
}

/* Bigger square (rounded-corner) product image instead of a small circle,
   so photos read clearly and the section feels denser with less
   surrounding whitespace. */
.trending-circle {
    width: 170px;
    height: 170px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.trending-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.trending-item:nth-child(odd) .trending-circle {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.trending-item:nth-child(even) .trending-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.trending-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trending-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.trending-nav.left { 
    left: 10px; 
}

.trending-nav.right { 
    right: 10px; 
}



/* Shop by category section */

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.scrollable-categories-wrapper{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}



/* Self Care Section */
.self-care-section {
    background: #f8fafc;
    padding: 12px 24px;
}

.self-care-header {
    text-align: center;
    margin-bottom: 24px;
}

.self-care-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #1a1d29;
    margin-bottom: 12px;
}

.self-care-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.self-care-container {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 10px;
}

.self-care-container::-webkit-scrollbar {
    display: none;
}

.self-care-container.dragging,
.self-care-container:active {
    cursor: grabbing;
}

.self-care-grid {
    display: flex;
    gap: 24px;
}

.self-care-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.self-care-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.self-care-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.self-care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.self-care-item:hover .self-care-image img {
    transform: scale(1.05);
}

.self-care-item h3 {
    padding: 20px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    text-align: center;
    color: #1a1d29;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.self-care-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.self-care-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.self-care-nav.left {
    left: -10px;
}

.self-care-nav.right {
    right: -10px;
}

@media (max-width: 768px) {
    .self-care-nav {
        display: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #f8fafc;
    padding: 18px 24px;
    overflow: hidden;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 32px;
}

.testimonials-title {
    display: inline-block;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-container {
    overflow: visible;
    cursor: grab;
    padding: 20px 70px;
}

.testimonials-container:active {
    cursor: grabbing;
}

.testimonials-scroll {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 0;
}

.testimonial-card {
    flex: 0 0 350px;
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0.7;
    transform: scale(0.95);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    opacity: 1;
}

.testimonial-card.center {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    z-index: 2;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.testimonial-text {
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.author-location {
    color: #6b7280;
    font-size: 12px;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonials-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonials-nav.left { 
    left: 10px; 
}

.testimonials-nav.right { 
    right: 10px; 
}

/* Footer */
.footer {
    background: #1a1d29;
    color: white;
    padding: 40px 24px 32px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .scrollable-categories-section {
        padding: 16px 15px 14px;
    }

    .scrollable-category-item {
        width: 140px;
        padding: 15px 12px;
    }

    .scrollable-category-image {
        width: 110px;
        height: 110px;
    }

    .trending-section {
        padding: 10px 0 4px;
    }

    .trending-header {
        margin-bottom: 10px;
    }

    .trending-container {
        padding: 0 16px 8px;
    }

    .trending-scroll {
        gap: 12px;
    }

    .trending-item {
        width: 130px;
    }

    .trending-circle {
        width: 130px;
        height: 130px;
        border-radius: 14px;
        margin-bottom: 8px;
    }

    .trending-nav {
        display: none;
    }

    .occasions-section {
        padding: 16px 12px;
    }

    .occasions-header {
        margin-bottom: 16px;
    }

    .self-care-section {
        padding: 8px 16px;
    }

    .self-care-header {
        margin-bottom: 14px;
    }

    .scrollable-categories-section {
        padding: 14px 12px 10px;
    }

    .testimonials-section {
        padding: 12px 16px;
    }

    .testimonials-header {
        margin-bottom: 16px;
    }

    .carousel-slide {
        min-height: 260px;
        padding: 20px 16px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-image {
        margin-left: 0;
        order: -1;
    }

    .categories-grid {
        gap: 16px;
    }

    .category-item {
        flex: 0 0 130px;
    }

    .testimonials-container {
        padding: 20px 45px;
        overflow: hidden;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
        padding: 24px 20px;
        min-height: auto;
    }
    
    .testimonial-card.center {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .scrollable-category-item {
        width: 120px;
        padding: 12px 10px;
    }

    .scrollable-category-image {
        width: 95px;
        height: 95px;
    }

    .trending-container {
        padding: 0 12px 8px;
    }

    .trending-scroll {
        gap: 10px;
    }

    .trending-item {
        width: 112px;
    }

    .trending-circle {
        width: 112px;
        height: 112px;
        border-radius: 12px;
        margin-bottom: 6px;
    }

    .occasions-section {
        padding: 16px 12px;
    }

    .carousel-slide {
        min-height: 240px;
        padding: 16px 12px;
    }

    .categories-grid {
        gap: 14px;
    }

    .category-item {
        flex: 0 0 115px;
    }

    .self-care-item {
        flex: 0 0 240px;
    }
}

@media (max-width: 360px) {
    .trending-container {
        padding: 0 10px 8px;
    }

    .trending-scroll {
        gap: 8px;
    }

    .trending-item {
        width: 100px;
    }

    .trending-circle {
        width: 100px;
        height: 100px;
        border-radius: 10px;
        margin-bottom: 6px;
    }

    .scrollable-category-item {
        width: 110px;
        padding: 10px 8px;
    }

    .scrollable-category-image {
        width: 85px;
        height: 85px;
    }

    .carousel-slide {
        min-height: 220px;
        padding: 12px 10px;
    }

    .self-care-item {
        flex: 0 0 220px;
    }
}