/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

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

:root {
    /* Color Scheme - Bright & Modern Pink */
    --color-white: #ffffff;
    --color-cream: #fef9fb;
    --color-light-pink: #ffe1ec;
    --color-soft-pink: #ffcde1;
    --color-pink: #ffb3d6;
    --color-medium-pink: #ff85c1;
    --color-accent-pink: #ff69b4;
    --color-dark-pink: #e91e63;
    --color-text-dark: #2d2d2d;
    --color-text-medium: #555555;
    --color-text-light: #777777;
    --color-border: #e8e8e8;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-shadow-light: rgba(0, 0, 0, 0.04);
    --color-shadow-medium: rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-primary: 'Times New Roman', Times, serif;
    --font-secondary: 'Times New Roman', Times, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 5rem;
    
    /* Transitions & Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

/* ========================================
   ANIMATION KEYFRAMES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -10px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0,-2px,0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   LOADING ANIMATION CLASSES
   ======================================== */

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-slideInDown {
    animation: slideInDown 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 1s ease-in-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Animation delays for staggered effects */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }

/* Initial hidden state for animated elements */
.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
}

/* Page loading states */
.page-loading {
    overflow: hidden;
}

.page-loading .hero-section {
    animation-delay: 0.2s;
}

.page-loading .header {
    animation-delay: 0s;
}

.page-loaded {
    overflow: visible;
}

/* Enhanced hover effects */
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px var(--color-shadow-medium);
    animation: none;
}

.bundle-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px var(--color-shadow-medium);
    animation: none;
}

/* Floating animation for hero images - Disabled */
.hero-image {
    animation: none;
}

/* Button bounce effect on load */
.btn-view-more:hover {
    animation: bounce 0.6s ease-in-out;
}

/* Staggered animations for product grid */
.products-track .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-track .product-card:nth-child(2) { animation-delay: 0.2s; }
.products-track .product-card:nth-child(3) { animation-delay: 0.3s; }
.products-track .product-card:nth-child(4) { animation-delay: 0.4s; }
.products-track .product-card:nth-child(5) { animation-delay: 0.5s; }

/* Staggered animations for bundle grid */
.bundles-track .bundle-card:nth-child(1) { animation-delay: 0.1s; }
.bundles-track .bundle-card:nth-child(2) { animation-delay: 0.2s; }
.bundles-track .bundle-card:nth-child(3) { animation-delay: 0.3s; }
.bundles-track .bundle-card:nth-child(4) { animation-delay: 0.4s; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    
    /* Bright Pink Gradient Background */
    background: linear-gradient(
        180deg,
        var(--color-white) 0%,
        var(--color-cream) 20%,
        var(--color-light-pink) 50%,
        var(--color-soft-pink) 80%,
        var(--color-pink) 100%
    );
    background-attachment: fixed;
    min-height: 100vh;
    font-weight: 400;
    scroll-behavior: smooth;
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* Smooth scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll reveal animations */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s var(--transition-normal);
}

.animate-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    opacity: 1;
    visibility: visible;
    /* Ensure images load and display properly */
    object-fit: cover;
    background-color: var(--color-light-pink);
}

/* Add fallback for broken images */
img:not([src]),
img[src=""],
img[src="#"] {
    opacity: 0.7;
    background: linear-gradient(135deg, var(--color-cream), var(--color-light-pink));
    display: block;
    position: relative;
}

img:not([src])::before,
img[src=""]::before,
img[src="#"]::before {
    content: "Image Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-medium);
    font-size: 0.9rem;
    text-align: center;
}

/* Disabled Links Styling */
.disabled {
    pointer-events: none;
    opacity: 0.8;
    cursor: not-allowed;
}

/* ========================================
   HEADER SECTION
   ======================================== */

.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 251, 0.95));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInDown 0.8s ease-out;
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.08),
        0 2px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 0.8rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 240, 248, 0.97));
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 
        0 12px 40px rgba(255, 105, 180, 0.12),
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    margin-right: 2rem;
    z-index: 1001;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: 55px;
    object-fit: contain;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 3px 6px var(--color-shadow));
    background: linear-gradient(135deg, var(--color-white), var(--color-cream));
    border-radius: var(--radius-lg);
    padding: 10px;
    border: 2px solid var(--color-border);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    box-shadow: 0 4px 12px var(--color-shadow-light);
}

.logo img:hover {
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 8px 16px var(--color-shadow-medium));
    background: linear-gradient(135deg, var(--color-light-pink), var(--color-soft-pink));
    border-color: var(--color-accent-pink);
    box-shadow: 0 8px 20px rgba(196, 137, 154, 0.3);
}

/* Logo text - Two-line brand name */
.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-left: 0.8rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text .logo-the {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: -2px;
}

.logo-text .logo-iconique {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu li {
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.3s; }
.nav-menu li:nth-child(2) { animation-delay: 0.4s; }
.nav-menu li:nth-child(3) { animation-delay: 0.5s; }
.nav-menu li:nth-child(4) { animation-delay: 0.6s; }
.nav-menu li:nth-child(5) { animation-delay: 0.7s; }

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 0.8rem 0;
    color: var(--color-text-dark);
    transition: all var(--transition-normal);
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.nav-menu a:hover:not(.disabled) {
    color: var(--color-accent-pink);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--color-accent-pink);
    font-weight: 600;
}

.nav-menu a.active::after,
.nav-menu a:hover:not(.disabled)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-pink), var(--color-medium-pink));
    border-radius: var(--radius-sm);
    animation: expandWidth 0.3s ease forwards;
}

@keyframes expandWidth {
    to {
        width: 80%;
    }
}

/* Header Actions Container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

/* Search Icon */
.search-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: all var(--transition-normal);
    animation: fadeInRight 0.8s ease-out 0.5s both;
    padding: 0.6rem;
    border-radius: var(--radius-md);
}

.search-icon:hover {
    color: var(--color-accent-pink);
    transform: scale(1.1);
}

/* Wishlist Icon */
.wishlist-icon {
    position: relative;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: all var(--transition-normal);
    padding: 0.6rem;
    border-radius: var(--radius-md);
    animation: fadeInRight 0.8s ease-out 0.5s both;
}

.wishlist-icon:hover {
    color: var(--color-accent-pink);
    transform: scale(1.1);
}

.wishlist-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-medium-pink));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px var(--color-shadow);
    animation: pulse 2s infinite;
}

/* Shopping Cart Icon */
.cart-icon {
    position: relative;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: all var(--transition-normal);
    padding: 0.6rem;
    border-radius: var(--radius-md);
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.cart-icon:hover {
    color: var(--color-accent-pink);
    transform: scale(1.1) rotate(5deg);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-medium-pink));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px var(--color-shadow);
    animation: pulse 2s infinite;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 28px;
    z-index: 1001;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.mobile-menu-toggle:hover {
    background: var(--color-light-pink);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-text-dark), var(--color-accent-pink));
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.mobile-menu-toggle:hover span {
    background: linear-gradient(90deg, var(--color-accent-pink), var(--color-medium-pink));
    transition: var(--transition-normal);
}

/* ========================================
   MOBILE NAVIGATION SIDEBAR
   ======================================== */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1100;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: -5px 0 15px var(--color-shadow);
    transition: var(--transition-normal);
    z-index: 1200;
    padding: var(--spacing-md);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.mobile-nav-close:hover {
    color: var(--color-accent-pink);
}

.mobile-nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-sm);
    line-height: 1.2;
}

.mobile-nav-menu {
    list-style: none;
    margin-top: 0;
}

.mobile-nav-menu li {
    margin-bottom: var(--spacing-sm);
}

.mobile-nav-menu a {
    display: block;
    padding: var(--spacing-sm);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.mobile-nav-menu a.active,
.mobile-nav-menu a:hover:not(.disabled) {
    background-color: var(--color-pink);
    color: white;
}

/* ========================================
   RESPONSIVE HEADER & LAYOUT
   ======================================== */

@media screen and (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .header.scrolled {
        padding: 0.6rem 0;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo {
        margin-right: auto;
        flex: 1;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-desktop {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
        order: 3;
    }

    .search-icon,
    .cart-icon {
        font-size: 1.3rem;
        padding: 0.4rem;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
        top: 0;
        right: 0;
    }

    .mobile-menu-toggle {
        width: 30px;
        height: 26px;
        gap: 3px;
        padding: 0.3rem;
        order: 4;
    }

    .mobile-menu-toggle span {
        height: 2.5px;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        bottom: -10px;
        width: 50px;
        height: 3px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 0.8rem 0;
    }

    .logo {
        margin-right: auto;
        min-width: 30px;
    }

    .logo-text {
        font-size: 1rem;
        margin-left: 0.5rem;
    }

    .header-actions {
        gap: 0.3rem;
        order: 3;
    }

    .search-icon,
    .cart-icon {
        font-size: 1.1rem;
        padding: 0.3rem;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 24px;
        gap: 2px;
        padding: 0.2rem;
        order: 4;
        margin-top: 11px;
    }

    .mobile-menu-toggle span {
        height: 2px;
    }

    .container {
        padding: 0 0.75rem;
    }

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

    .section-title::after {
        bottom: -8px;
        width: 40px;
        height: 2px;
    }
}

/* ========================================
   SEARCH MODAL
   ======================================== */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 2000;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 251, 0.95));
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(255, 105, 180, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 182, 193, 0.3);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.search-overlay.active .search-modal {
    transform: translate(-50%, -50%) scale(1);
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--color-text-medium);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 182, 193, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.search-close:hover {
    color: var(--color-accent-pink);
    background: rgba(255, 225, 236, 0.9);
    transform: rotate(90deg);
}

.search-content {
    padding: 2rem;
}

.search-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    padding: 0.5rem;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 182, 193, 0.3);
    margin-bottom: 2rem;
}

.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    outline: none;
    font-family: var(--font-primary);
}

.search-form input::placeholder {
    color: var(--color-text-light);
}

.search-btn {
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-medium-pink));
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.4);
}

.search-suggestions {
    margin-bottom: 2rem;
}

.popular-searches h3 {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-tag {
    background: rgba(255, 225, 236, 0.8);
    color: var(--color-text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.search-tag:hover {
    background: var(--color-accent-pink);
    color: white;
    transform: translateY(-2px);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 182, 193, 0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.search-result-item:hover {
    background: rgba(255, 225, 236, 0.8);
    transform: translateX(5px);
}

.search-result-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-right: 1rem;
}

.search-result-info h4 {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.search-result-info p {
    font-size: 0.9rem;
    color: var(--color-text-medium);
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-medium);
}

.no-results p:first-child {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

/* ========================================
   WISHLIST MODAL STYLES
   ======================================== */
.wishlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wishlist-modal {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 251, 0.95));
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(255, 105, 180, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 182, 193, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.3s ease-out;
}

.wishlist-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-header h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin: 0;
}

.wishlist-close {
    position: relative;
    font-size: 1.5rem;
    color: var(--color-text-medium);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 182, 193, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    top: 0;
    right: 0;
}

.wishlist-close:hover {
    color: var(--color-accent-pink);
    background: rgba(255, 225, 236, 0.9);
    transform: rotate(90deg);
}

.wishlist-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.wishlist-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 182, 193, 0.2);
    transition: all var(--transition-normal);
}

.wishlist-item:hover {
    background: rgba(255, 225, 236, 0.8);
    transform: translateX(5px);
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-right: 1rem;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-name {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.wishlist-item-price {
    font-size: 1.1rem;
    color: var(--color-accent-pink);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wishlist-item-actions {
    display: flex;
    gap: 0.5rem;
}

.wishlist-view-btn {
    flex: 1;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-medium-pink));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.wishlist-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.wishlist-remove-btn {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 105, 180, 0.1);
    color: var(--color-accent-pink);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.85rem;
}

.wishlist-remove-btn:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: var(--color-accent-pink);
}

.wishlist-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--color-text-medium);
}

.wishlist-empty i {
    font-size: 3rem;
    color: rgba(255, 105, 180, 0.3);
    display: block;
    margin-bottom: 1rem;
}

.wishlist-empty p {
    font-size: 1rem;
    margin: 0;
}

/* Product Notification */
.product-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 251, 0.95));
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 16px rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 182, 193, 0.3);
    padding: 1rem;
    max-width: 300px;
    transform: translateX(350px);
    transition: all var(--transition-normal);
    z-index: 3000;
}

.product-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.notification-content h4 {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.notification-content p {
    font-size: 0.9rem;
    color: var(--color-accent-pink);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notification-content small {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Responsive Search Modal & Notifications */
@media screen and (max-width: 768px) {
    .search-modal {
        width: 95%;
        max-width: none;
        max-height: 85vh;
    }

    .search-content {
        padding: 1.5rem;
    }

    .search-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .search-form {
        margin-bottom: 1.5rem;
    }

    .search-form input {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }

    .search-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .search-suggestions {
        margin-bottom: 1.5rem;
    }

    .popular-searches h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .search-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .search-results {
        max-height: 200px;
    }

    .search-result-item {
        padding: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .search-result-image {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }

    .search-result-info h4 {
        font-size: 0.9rem;
    }

    .search-result-info p {
        font-size: 0.85rem;
    }

    .product-notification {
        top: 80px;
        right: 10px;
        max-width: 280px;
        padding: 0.75rem;
    }

    .notification-content {
        gap: 0.75rem;
    }

    .notification-content img {
        width: 45px;
        height: 45px;
    }

    .notification-content h4 {
        font-size: 0.9rem;
    }

    .notification-content p {
        font-size: 0.85rem;
    }

    .notification-content small {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .search-modal {
        width: 98%;
        max-height: 90vh;
    }

    .search-content {
        padding: 1rem;
    }

    .search-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .search-form {
        margin-bottom: 1rem;
        padding: 0.4rem;
    }

    .search-form input {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }

    .search-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .search-suggestions {
        margin-bottom: 1rem;
    }

    .popular-searches h3 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .search-tags {
        gap: 0.4rem;
    }

    .search-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .search-results {
        max-height: 150px;
    }

    .search-result-item {
        padding: 0.6rem;
        margin-bottom: 0.3rem;
    }

    .search-result-image {
        width: 35px;
        height: 35px;
        margin-right: 0.6rem;
    }

    .search-result-info h4 {
        font-size: 0.85rem;
    }

    .search-result-info p {
        font-size: 0.8rem;
    }

    .product-notification {
        top: 70px;
        right: 5px;
        max-width: 250px;
        padding: 0.6rem;
    }

    .notification-content {
        gap: 0.6rem;
    }

    .notification-content img {
        width: 40px;
        height: 40px;
    }

    .notification-content h4 {
        font-size: 0.85rem;
    }

    .notification-content p {
        font-size: 0.8rem;
    }

    .notification-content small {
        font-size: 0.7rem;
    }
}

/* ========================================
   HERO SECTION - Responsive Static Image
   ======================================== */

.hero-section {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-light-pink);
    animation: fadeIn 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Desktop Hero Image - Hidden on mobile */
.hero-image-desktop {
    display: block;
}

/* Mobile Hero Image - Hidden on desktop */
.hero-image-mobile {
    display: none;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Loading state for hero image */
.hero-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-light-pink) 0%, var(--color-soft-pink) 100%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-image-container.loaded::before {
    opacity: 0;
}

/* Responsive Hero Section */
@media screen and (max-width: 1024px) {
    .hero-section {
        height: 500px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        height: 300px;
        margin-bottom: var(--spacing-md);
    }
}

/* ========================================
   SECTION TITLES
   ======================================== */

.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-dark);
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out both;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-pink), var(--color-medium-pink));
    border-radius: var(--radius-full);
}

.section-title.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--bounce);
}

.section-title.animate-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   FEATURED PRODUCTS SECTION
   ======================================== */

.featured-products {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(248, 240, 242, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(242, 232, 235, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.featured-products .container {
    position: relative;
    z-index: 1;
}

.featured-products .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: var(--color-text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.featured-products .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-pink), var(--color-medium-pink));
    border-radius: 2px;
}

.products-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.products-carousel {
    overflow: hidden;
    width: 100%;
}

/* Removed overflow indicators for cleaner mobile experience */

.products-track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform var(--transition-slow);
}

/* Product Card Styling - Responsive design handled by media queries */
.product-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--color-shadow);
    transition: var(--transition-normal);
    position: relative;
    opacity: 0;
    animation: scaleIn 0.8s ease-out forwards;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
    color: inherit;
    width: 280px;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--color-shadow);
}

.product-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-light-pink);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
}

/* Primary image - always visible by default */
.product-img-primary {
    opacity: 1;
    z-index: 1;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* Hover image - hidden by default */
.product-img-hover {
    opacity: 0;
    z-index: 2;
    transform: scale(1.05);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* Hover effects */
.product-card:hover .product-img-primary {
    opacity: 0;
    transform: scale(0.95);
}

.product-card:hover .product-img-hover {
    opacity: 1;
    transform: scale(1);
}

/* Fallback hover effect for cards without hover images */
.product-card:hover .product-image img:not(.product-img-hover) {
    transform: scale(1.15);
}



.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-medium-pink));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(196, 137, 154, 0.3);
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-info {
    padding: 1.75rem 1.5rem;
    background: transparent;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.5px;
}

/* Responsive Design for Featured Products */
@media screen and (max-width: 1024px) {
    .products-carousel-wrapper {
        gap: var(--spacing-xs);
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .product-card {
        width: 240px;
    }

    .product-image {
        height: 240px;
    }

    .product-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .product-info {
        padding: 1.5rem 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    .featured-products {
        padding: var(--spacing-lg) 0;
    }

    .featured-products .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .featured-products .section-title::after {
        width: 60px;
    }

    .products-carousel-wrapper {
        gap: var(--spacing-xs);
        justify-content: center;
    }

    .carousel-arrow {
        display: none;
    }

    .products-carousel {
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }

    .products-track {
        gap: var(--spacing-sm);
        padding: 0.5rem 0;
        scroll-snap-type: x mandatory;
    }

    .product-card {
        width: 200px;
        min-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .product-image {
        height: 200px;
    }

    .product-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .product-price {
        font-size: 1.2rem;
    }

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

    .product-badge {
        padding: 0.4rem 0.9rem;
        font-size: 0.65rem;
    }

    /* Show carousel dots on mobile */
    .carousel-dots.mobile-visible {
        display: flex;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    .btn-view-more {
        padding: 0.85rem 2.5rem;
        font-size: 1rem;
        min-width: 180px;
        height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .featured-products {
        padding: var(--spacing-md) 0;
    }

    .featured-products .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .featured-products .section-title::after {
        width: 50px;
        height: 3px;
        bottom: -10px;
    }

    .products-carousel {
        margin: 0 -1rem;
        padding: 0 0.5rem;
        width: calc(100% + 2rem);
    }

    .products-track {
        gap: var(--spacing-xs);
        padding: 0.5rem 1rem;
    }

    .product-card {
        width: 160px;
        min-width: 160px;
        flex-shrink: 0;
    }

    .product-image {
        height: 160px;
    }

    .product-name {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

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

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

    .product-badge {
        padding: 0.3rem 0.75rem;
        font-size: 0.6rem;
        top: 8px;
        left: 8px;
    }

    .carousel-dots.mobile-visible {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    .carousel-dot.active {
        width: 20px;
        border-radius: 3px;
    }

    .btn-view-more {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
        min-width: 160px;
        height: 42px;
    }
}

/* Carousel Arrows */
.carousel-arrow {
    background: linear-gradient(135deg, var(--color-white), var(--color-cream));
    border: 2px solid var(--color-pink);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-accent-pink);
    box-shadow: 0 4px 15px rgba(196, 137, 154, 0.15);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 10;
    position: relative;
    overflow: hidden;
}

/* Focus state for accessibility */
.carousel-arrow:focus {
    outline: 3px solid var(--color-accent-pink);
    outline-offset: 2px;
}

.carousel-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-arrow:hover:not(:disabled)::before {
    opacity: 1;
}

.carousel-arrow:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-medium-pink));
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(196, 137, 154, 0.3);
    border-color: var(--color-accent-pink);
}

.carousel-arrow:active:not(:disabled) {
    transform: scale(0.95);
}

.carousel-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: var(--color-border);
    border-color: var(--color-border);
    color: var(--color-text-light);
}

.carousel-arrow:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(196, 137, 154, 0.15);
}

/* Arrow icons animation */
.carousel-arrow i {
    transition: transform 0.3s ease;
}

.carousel-arrow:hover:not(:disabled) i {
    transform: translateX(0);
}

.arrow-left:hover:not(:disabled) i {
    transform: translateX(-3px);
}

.arrow-right:hover:not(:disabled) i {
    transform: translateX(3px);
}

/* View More Button */
.view-more-section {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-view-more {
    background: linear-gradient(135deg, var(--color-pink), var(--color-accent-pink));
    color: white;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(196, 137, 154, 0.3);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    min-width: 200px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: fadeInUp 0.8s ease-out 0.3s both, pulse 3s ease-in-out 2s infinite;
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 137, 154, 0.4);
}

.btn-view-more.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   CAROUSEL DOT INDICATORS - Mobile Only
   ======================================== */

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.carousel-dots.mobile-visible {
    display: flex;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-dot.active {
    background-color: var(--color-text-dark);
    width: 30px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background-color: var(--color-text-medium);
}/* ========================================
   BUNDLES SECTION
   ======================================== */

.bundles-section {
    padding: var(--spacing-xl) 0;
}

/* Bundle cards inherit from product-card styling */

.bundle-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.bundle-pricing {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.bundle-original {
    font-size: 1rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.bundle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-pink);
}

/* Mobile typography adjustments for bundle cards */
@media (max-width: 767px) {
    .bundle-description {
        font-size: 0.8rem;
        margin-bottom: calc(var(--spacing-sm) * 0.75);
    }
    
    .bundle-price {
        font-size: 1.3rem;
    }
    
    .bundle-original {
        font-size: 0.9rem;
    }
}

/* ========================================
   NEW SECTION - Featured Image Section
   ======================================== */

.new-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.new-section-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background-color: var(--color-light-pink);
}

.newsection-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transition: transform var(--transition-slow);
    background-color: var(--color-light-pink);
}

.newsection-image:hover {
    transform: scale(1.02);
}

/* Responsive Image Display Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .new-section-image-container {
        aspect-ratio: auto;
        max-height: 500px;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .new-section-image-container {
        aspect-ratio: 16 / 9;
    }
}

/* ========================================
   ABOUT US SECTION
   ======================================== */

.aboutus-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.aboutus-title {
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.aboutus-content {
    background-color: var(--color-light-pink);
    padding: 3rem;
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.aboutus-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.aboutus-content p:last-child {
    margin-bottom: 0;
}

.aboutus-content strong {
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Responsive Design for About Us */
@media screen and (max-width: 768px) {
    .aboutus-section {
        padding: 3rem 0;
    }

    .aboutus-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .aboutus-content {
        padding: 2rem;
    }

    .aboutus-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 480px) {
    .aboutus-section {
        padding: 2rem 0;
    }

    .aboutus-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .aboutus-content {
        padding: 1.5rem;
    }

    .aboutus-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
}

/* ========================================
   OUR FORMULAS SECTION - Carousel
   ======================================== */

.formulas-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.formulas-title {
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

/* Formulas Carousel Wrapper */
.formulas-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 2rem;
}

.formulas-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
}

.formulas-carousel::-webkit-scrollbar {
    display: none;
}

/* Formula Card */
.formula-card {
    flex: 0 0 calc(50% - 1rem);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    animation: fadeInUp 0.6s ease-out forwards;
}

.formula-icon-wrapper {
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.formula-icon {
    font-size: 3rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.formula-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.formula-description {
    font-size: 1rem;
    color: var(--color-text-medium);
    font-family: var(--font-primary);
}

/* Carousel Indicators */
.formulas-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.formulas-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-border);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.formulas-indicators .indicator.active {
    background-color: var(--color-text-dark);
    width: 30px;
    border-radius: 5px;
}

/* Responsive Design for Formulas - Web: 2 cards, Mobile: 1 card */
@media screen and (min-width: 769px) {
    .formula-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media screen and (max-width: 768px) {
    .formulas-section {
        padding: 2rem 0;
    }

    .formulas-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .formulas-carousel {
        gap: 1.2rem;
    }

    .formula-card {
        flex: 0 0 calc(50% - 0.6rem);
        padding: 1.5rem 1rem;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    .formula-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .formula-icon {
        font-size: 2.5rem;
    }

    .formula-name {
        font-size: 1.1rem;
    }

    .formula-description {
        font-size: 0.9rem;
    }

    .formulas-indicators {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .formulas-section {
        padding: 2rem 0;
    }

    .formulas-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .formulas-carousel {
        gap: 1rem;
    }

    .formula-card {
        flex: 0 0 calc(100% - 0.5rem);
        padding: 1rem 0.75rem;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    .formula-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 0.8rem;
    }

    .formula-icon {
        font-size: 2rem;
    }

    .formula-name {
        font-size: 1.1rem;
    }

    .formula-description {
        font-size: 0.9rem;
    }

    .formulas-indicators {
        display: none;
    }
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */

.testimonial-section {
    padding: 4rem 0;
    background-color: var(--color-cream);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--color-accent-pink);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

.testimonial-text strong {
    font-weight: 600;
    color: var(--color-text-dark);
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    letter-spacing: 0.3px;
}

/* Responsive Design for Testimonial */
@media screen and (max-width: 768px) {
    .testimonial-section {
        padding: 3rem 0;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .testimonial-quote-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-section {
        padding: 2rem 0;
    }

    .testimonial-content {
        padding: 1.5rem 1rem;
    }

    .testimonial-quote-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .testimonial-author {
        font-size: 0.95rem;
    }
}

/* ========================================
   VALUES SECTION - Accordion Cards
   ======================================== */

.values-section {
    padding: 2rem 0;
    background-color: var(--color-white);
}

.values-title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

/* Values Accordion Container */
.values-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Value Card */
.value-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px var(--color-shadow-light);
}

.value-card:hover {
    box-shadow: 0 4px 12px var(--color-shadow);
}

/* Value Card Header (Button) */
.value-card-header {
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: var(--color-light-pink);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.value-card-header:hover {
    background-color: var(--color-soft-pink);
}

.value-card-header.active {
    background-color: var(--color-soft-pink);
}

/* Value Card Title */
.value-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: left;
    font-family: var(--font-primary);
}

/* Value Card Toggle Icon */
.value-card-toggle {
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: transform var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.value-card-header.active .value-card-toggle {
    transform: rotate(180deg);
}

/* Value Card Content */
.value-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    background-color: var(--color-cream);
}

.value-card-content.active {
    max-height: 500px;
    overflow: visible;
}

.value-card-content p {
    padding: 1rem 1.2rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-medium);
    font-family: var(--font-primary);
}

/* Responsive Design for Values */
@media screen and (max-width: 768px) {
    .values-section {
        padding: 3rem 0;
    }

    .values-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .values-accordion {
        gap: 1rem;
    }

    .value-card-header {
        padding: 1.2rem 1rem;
    }

    .value-card-title {
        font-size: 1.1rem;
    }

    .value-card-content p {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .values-section {
        padding: 2rem 0;
    }

    .values-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .values-accordion {
        gap: 0.8rem;
    }

    .value-card-header {
        padding: 1rem 0.8rem;
    }

    .value-card-title {
        font-size: 1rem;
    }

    .value-card-content p {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer {
    margin-top: 0;
}

/* Newsletter Section - Modern Light Design */
.newsletter-section {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-pink) 30%, var(--color-soft-pink) 70%, var(--color-pink) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 192, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 182, 193, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-header {
    margin-bottom: 2.5rem;
}

.newsletter-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-header p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 192, 203, 0.2);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(255, 105, 180, 0.1);
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #333;
    outline: none;
    font-family: var(--font-primary);
    font-weight: 400;
}

.newsletter-form input::placeholder {
    color: #999;
    font-weight: 400;
}

.btn-subscribe {
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-medium-pink));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(196, 137, 154, 0.2);
}

.btn-subscribe:hover {
    background: linear-gradient(135deg, var(--color-medium-pink), var(--color-accent-pink));
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(196, 137, 154, 0.4);
}

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

.newsletter-message {
    margin-top: 1.5rem;
    font-weight: 500;
    min-height: 20px;
    font-family: var(--font-primary);
    color: #666;
}

.newsletter-message.show {
    opacity: 1;
    transform: translateY(0);
    transition: all var(--transition-normal);
}

/* Footer Main Content */
.footer-main {
    background-color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-lg) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
    text-align: left;
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-start;
    margin-bottom: var(--spacing-md);
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a6a6a, #2d2d2d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-normal);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, #2d2d2d, #000000);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--color-text-light);
    transition: var(--transition-normal);
}

.footer-links a:hover:not(.disabled) {
    color: var(--color-accent-pink);
    padding-left: 5px;
}

.footer-description {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-dark);
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.footer-bottom p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin: 0;
}

.footer-bottom .developer-credit {
    color: var(--color-dark-pink);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom .developer-credit:hover {
    color: var(--color-accent-pink);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */

@media screen and (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .product-card,
    .bundle-card {
        flex: 0 0 calc((100% - 32px) / 2); /* 2 cards on tablet */
        min-width: 350px;
    }
    
    .products-track,
    .bundles-track {
        gap: 20px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - DESKTOP
   ======================================== */

@media screen and (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-slide {
        height: 600px;
    }
    
    .product-card,
    .bundle-card {
        flex: 0 0 calc((100% - 48px) / 3); /* 3 cards on desktop */
        min-width: 380px;
    }
    
    .products-track,
    .bundles-track {
        gap: 24px;
    }
    
    .product-image {
        height: 380px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE ADJUSTMENTS
   ======================================== */

/* Enhanced Mobile Responsive Design */
@media screen and (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .product-card {
        min-height: 460px;
        scroll-snap-align: center;
    }

    .product-image {
        height: 320px;
    }

    .product-info {
        padding: 1.5rem 1.2rem;
    }
    
    .product-name {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .product-price {
        font-size: 1.6rem;
    }
    
    .bundle-card {
        flex: 0 0 calc(100vw - 3rem);
        min-width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        margin: 0 1.5rem;
        scroll-snap-align: center;
    }

    .bundle-image {
        height: 280px;
    }

    .bundle-info {
        padding: 1.5rem 1.2rem;
    }
    
    .bundle-name {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .bundle-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .bundle-price {
        font-size: 1.5rem;
    }

    .carousel-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .products-carousel-wrapper {
        gap: var(--spacing-xs);
        padding: 0;
        overflow: hidden;
        width: 100%;
    }
    
    .products-track {
        gap: var(--spacing-sm);
    }
    
    .bundles-carousel-wrapper {
        gap: var(--spacing-xs);
        padding: 0;
        overflow: hidden;
        width: 100%;
    }
    
    /* Touch-friendly carousel on mobile - enable smooth scrolling for both */
    .products-carousel,
    .bundles-carousel {
        overflow: visible;
        padding-right: 1rem;
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Hide all arrows on mobile for consistent behavior */
    .arrow-left,
    .arrow-right,
    .bundle-arrow {
        display: none;
    }    /* Newsletter Section Responsive */
    .newsletter-section {
        padding: 4rem 0;
    }
    
    .newsletter-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .newsletter-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .input-group {
        flex-direction: column;
        padding: 15px;
        border-radius: 30px;
    }
    
    .newsletter-form input {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
        text-align: center;
        font-size: 1rem;
    }
    
    .btn-subscribe {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .newsletter-header h2 {
        font-size: 2rem;
    }
    
    .product-card {
        min-height: 420px;
        scroll-snap-align: center;
    }
    
    .product-image {
        height: 280px;
    }

    .product-info {
        padding: 1.2rem 1rem;
    }
    
    .bundle-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .bundle-image {
        height: 260px;
    }

    .bundle-info {
        padding: 1.2rem 1rem;
    }
    
    .carousel-arrow,
    .bundle-arrow {
        display: none; /* Hide all arrows on small mobile screens */
    }
    
    .newsletter-section {
        padding: 3rem 0;
    }
}

/* Responsive breakpoints for hero section */
@media screen and (max-width: 1024px) {
    .hero-section {
        height: 500px;
    }
}

@media screen and (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section {
        height: 400px;
    }
    
    /* Show mobile image, hide desktop image on mobile */
    .hero-image-desktop {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
    }
    
    .hero-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        transform: translateZ(0) scale(1.001);
    }
    
    .products-carousel-wrapper,
    .bundles-carousel-wrapper {
        padding: 0;
        gap: 0;
    }
    
    .carousel-arrow,
    .bundle-arrow {
        display: none; /* Hide all arrows on mobile */
    }
    
    .product-card {
        min-width: 100%;
    }
    
    .bundles-track {
        gap: var(--spacing-md);
        padding: 0;
    }
    
    .bundles-carousel-wrapper {
        padding: 0;
        gap: 0;
    }
    
    .bundle-image {
        height: 300px;
    }
    
    /* Optimize track spacing on mobile - consistent for both sections */
    .products-track {
        justify-content: flex-start;
        gap: var(--spacing-sm);
        padding: 0;
    }
    
    .bundles-track {
        gap: var(--spacing-sm);
        padding: 0;
    }
    
    /* Enable smooth scrolling on mobile for both sections */
    .products-carousel,
    .bundles-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1rem;
    }
    
    /* Hide scrollbars */
    .products-carousel::-webkit-scrollbar,
    .bundles-carousel::-webkit-scrollbar {
        display: none;
    }
    

    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .footer-column h4 {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: var(--spacing-md);
    }
    
    .header-actions {
        margin-right: 21px;
        gap: 0.5rem;
    }
    
    .search-icon,
    .cart-icon {
        font-size: 1.4rem;
        padding: 0.5rem;
    }
    
    .search-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .search-content {
        padding: 1.5rem;
    }
    
    .search-content h2 {
        font-size: 1.5rem;
    }
    
    .search-form input {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .product-notification {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .product-notification.show {
        transform: translateY(0);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        height: 280px;
    }
    
    .hero-image {
        transform: translateZ(0) scale(1.002);
    }
}

/* High-resolution display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }
}

/* ========================================
   NOTIFICATION STYLES - GLOBAL
   ======================================== */

.notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    z-index: 10000;
    animation: slideInUp var(--transition-normal) ease-out;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.notification-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-success {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.95), rgba(255, 182, 193, 0.95));
    color: #ffffff;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.notification-info {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(41, 128, 185, 0.95));
    color: #ffffff;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.notification-warning {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.95), rgba(230, 126, 34, 0.95));
    color: #ffffff;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.notification-error {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95), rgba(192, 57, 43, 0.95));
    color: #ffffff;
    border: 1px solid rgba(231, 76, 60, 0.3);
}