* {
    box-sizing: border-box;
}

/* ===== ANNOUNCEMENT BAR STYLES ===== */
.announcement-bar {
    background:  linear-gradient(135deg, rgb(234, 48, 104) 50%, rgb(118, 75, 162)  200%);
    color: gold;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    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: 80px 24px;
    text-align: center;
    color: white;
    min-height: 400px;
    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: 20px 0 30px;
    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: 60px 24px;
        min-height: 350px;
    }

    .hero-nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-carousel-slide {
        padding: 50px 20px;
        min-height: 320px;
    }
}
/* ===== 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: 50px 20px 40px;
    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%;
}

/* Sleek Image Banner Section */
.image-banner-section {
    background: white;
    padding-top: 10px;
    margin: 0;
    position: relative;
}

.image-banner-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.banner-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 71, 87, 0.85) 0%, rgba(255, 71, 87, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    z-index: 1;
}

.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;
}

.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);
}

.banner-overlay-diwali {
    background: linear-gradient(90deg, rgba(255, 153, 0, 0.85) 0%, rgba(255, 193, 7, 0.4) 20%, transparent 100%) !important;
}

.image-banner-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.image-banner-link:hover .image-banner-container {
    transform: scale(1.02);
}

.image-banner-link:hover .banner-overlay {
    background: linear-gradient(90deg, rgba(255, 71, 87, 0.95) 0%, rgba(255, 71, 87, 0.5) 60%, transparent 100%);
}

.image-banner-link:hover .banner-overlay-diwali {
    background: linear-gradient(90deg, rgba(255, 153, 0, 0.95) 0%, rgba(255, 193, 7, 0.5) 20%, transparent 100%) !important;
}

.image-banner-container {
    transition: transform 0.3s ease;
}

/* Scrollable Occasions Section */
.occasions-section {
    background: white;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.occasions-header {
    text-align: center;
    margin-bottom: 48px;
}

.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);
}

.occasions-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.occasions-container {
    overflow: hidden;
    cursor: grab;
    padding: 0 60px;
}

.occasions-container:active {
    cursor: grabbing;
}

.occasions-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.occasions-column {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 280px;
}

.occasion-card {
    background: white;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #f0f0f0;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.occasion-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.occasion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.occasion-card:hover .occasion-image {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.occasion-card:hover .occasion-image img {
    transform: scale(1.15);
}

.occasion-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.occasion-card:hover .occasion-icon {
    transform: scale(1.15);
}

.occasion-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1d29;
    margin: 0;
    line-height: 1.4;
    min-height: 2.8em;
}

.occasions-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);
}

.occasions-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.occasions-nav.left { 
    left: 10px; 
}

.occasions-nav.right { 
    right: 10px; 
}

/* Promotional Carousel Section */
.hero-carousel-section {
    background: rgb(248, 250, 252);
    padding: 10px 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: 400px;
    display: flex;
    align-items: center;
    padding: 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 */
.categories-section {
    background: white;
    padding: 20px 24px;
}

.categories-header {
    text-align: center;
    margin-bottom: 48px;
}

.categories-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;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-image:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-item h3 {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: #1a1d29;
    word-wrap: break-word;
    line-height: 1.3;
}

/* Trending Section */
.trending-section {
    background: white;
    padding: 20px 24px;
    overflow: hidden;
    position: relative;
}

.trending-header {
    text-align: center;
    margin-bottom: 48px;
}

.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: hidden;
    cursor: grab;
    padding: 0 60px;
}

.trending-container:active {
    cursor: grabbing;
}

.trending-scroll {
    display: flex;
    gap: 52px;
    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: 140px;
}

.trending-item:hover {
    transform: translateY(-5px);
}

.trending-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.trending-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.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; 
}

/* Self Care Section */
.self-care-section {
    background: #f8fafc;
    padding: 20px 24px;
}

.self-care-header {
    text-align: center;
    margin-bottom: 48px;
}

.self-care-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #1a1d29;
    margin-bottom: 12px;
}

.self-care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.self-care-item {
    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;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8fafc;
    padding: 30px 24px;
    overflow: hidden;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.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: 30px 15px 25px;
    }

    .scrollable-category-item {
        width: 140px;
        padding: 15px 12px;
    }

    .scrollable-category-image {
        width: 110px;
        height: 110px;
    }

    .image-banner-container {
        height: 150px;
    }
    
    .banner-overlay {
        padding: 0 30px;
    }

    .occasions-section {
        padding: 40px 20px;
    }

    .occasions-container {
        padding: 0 50px;
    }

    .occasions-column {
        width: 240px;
    }

    .occasion-card {
        padding: 24px 20px;
        min-height: 200px;
    }

    .occasion-image {
        width: 100px;
        height: 100px;
    }

    .occasion-icon {
        font-size: 3rem;
        width: 100px;
        height: 100px;
    }

    .occasion-card h3 {
        font-size: 1rem;
        min-height: 2.4em;
    }

    .occasions-nav {
        width: 40px;
        height: 40px;
    }

    .occasions-nav.left {
        left: 5px;
    }

    .occasions-nav.right {
        right: 5px;
    }

    .carousel-slide {
        min-height: 350px;
        padding: 30px 20px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-image {
        margin-left: 0;
        order: -1;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-image {
        width: 120px;
        height: 120px;
    }

    .self-care-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }
    
    .self-care-grid::-webkit-scrollbar {
        display: none;
    }
    
    .self-care-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    .self-care-grid .self-care-item:nth-child(n+7) {
        display: block;
    }

    .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;
    }

    .image-banner-container {
        height: 120px;
    }

    .occasions-section {
        padding: 30px 15px;
    }

    .occasions-container {
        padding: 0 40px;
    }

    .occasions-column {
        width: 200px;
        gap: 16px;
    }

    .occasion-card {
        padding: 20px 16px;
        min-height: 180px;
    }

    .occasion-image {
        width: 80px;
        height: 80px;
    }

    .occasion-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
        width: 80px;
        height: 80px;
    }

    .occasion-card h3 {
        font-size: 0.95rem;
        min-height: 2.2em;
    }

    .carousel-slide {
        min-height: 320px;
        padding: 20px 15px;
    }

    .categories-grid {
        gap: 16px;
    }

    .category-image {
        width: 100px;
        height: 100px;
    }

    .self-care-item {
        flex: 0 0 240px;
    }
}

@media (max-width: 360px) {
    .scrollable-category-item {
        width: 110px;
        padding: 10px 8px;
    }

    .scrollable-category-image {
        width: 85px;
        height: 85px;
    }

    .image-banner-container {
        height: 100px;
    }

    .occasions-container {
        padding: 0 35px;
    }

    .occasions-column {
        width: 180px;
        gap: 12px;
    }

    .occasion-card {
        padding: 16px 12px;
        min-height: 160px;
    }

    .occasion-image {
        width: 70px;
        height: 70px;
    }

    .occasion-icon {
        font-size: 2rem;
        margin-bottom: 10px;
        width: 70px;
        height: 70px;
    }

    .occasion-card h3 {
        font-size: 0.9rem;
        min-height: 2em;
    }

    .carousel-slide {
        min-height: 300px;
        padding: 15px 10px;
    }

    .category-image {
        width: 80px;
        height: 80px;
    }

    .self-care-item {
        flex: 0 0 220px;
    }
}

@media (min-width: 769px) {
    .self-care-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

.occasion-image.square {
    border-radius: 12px;
    width: 100px;
    height: 100px;
}