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

:root {
    --pink-primary: #ff69b4;
    --pink-light: #ffb6c1;
    --pink-lighter: #ffe4e9;
    --pink-dark: #ff1493;
    --pink-darker: #c71585;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #fafafa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#particles-canvas {
    width: 100%;
    height: 100%;
}

/* Gradient Orbs */
.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.6) 0%, rgba(255, 182, 193, 0.3) 50%, transparent 100%);
    top: -200px;
    left: -200px;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.6) 0%, rgba(255, 105, 180, 0.3) 50%, transparent 100%);
    bottom: -150px;
    right: -150px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.5) 0%, rgba(255, 228, 225, 0.3) 50%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.custom-cursor.hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--pink-primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    z-index: 1001;
}

.logo {
    height: 70px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--pink-primary);
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--pink-primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4rem;
    overflow: hidden;
}

.hero-image-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0.6;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    opacity: 1;
    z-index: 2;
    transform: scale(1.05);
}

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

.gallery-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.gallery-item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.gallery-item-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.gallery-item-5 {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
}

.gallery-item-6 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 245, 248, 0.75) 50%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pink-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 0.95;
    letter-spacing: -1px;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 10;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 10;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 10;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pink-primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--text-light);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

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

/* Section Styles */
section {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.about-stats {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pink-primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--pink-primary);
    margin-top: 0.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--black);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: var(--pink-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

/* Shop Section */
.shop {
    background: white;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.product-image {
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-view-product:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--pink-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink-primary);
    font-family: 'Playfair Display', serif;
}

.product-note {
    font-size: 0.85rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shop Controls */
.shop-controls {
    margin-bottom: 3rem;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.results-count {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.results-count span {
    color: var(--pink-primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.shop-controls-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-toggle:hover {
    background: var(--pink-primary);
    color: white;
    border-color: var(--pink-primary);
    transform: translateY(-2px);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-wrapper label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.sort-select {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: white;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff69b4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

/* Shop Layout */
.shop-layout {
    display: block;
    margin-top: 3rem;
}

/* Filter Backdrop */
.filter-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1499;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.filter-backdrop.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Filter Sidebar */
.filter-sidebar {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    z-index: 1500;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 20px 20px 0;
    padding-top: 1rem;
}

.filter-sidebar.active {
    right: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    background: white;
    z-index: 5;
    padding-top: 1rem;
}

.filter-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.close-filters {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 6;
}

.close-filters:hover {
    background: var(--pink-primary);
    color: white;
    transform: rotate(90deg);
}

.filter-section {
    margin-bottom: 2.5rem;
}

.filter-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.filter-option:hover {
    background: rgba(255, 105, 180, 0.05);
}

.filter-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--pink-primary);
    cursor: pointer;
}

.filter-option span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

/* Price Range */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-inputs input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.price-inputs span {
    color: var(--text-light);
    font-weight: 500;
}

.price-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-light);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--pink-primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

#price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 15px rgba(255, 105, 180, 0.5);
}

#price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--pink-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

.price-display {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-display span {
    color: var(--pink-primary);
    font-weight: 700;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.btn-filter-apply,
.btn-filter-reset {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

.btn-filter-reset {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.btn-filter-reset:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
}

/* Shop Content */
.shop-content {
    min-height: 500px;
    position: relative;
    z-index: 1;
}

/* Ensure shop section is clickable */
.shop {
    position: relative;
    z-index: 1;
}

.shop-controls {
    position: relative;
    z-index: 10;
}

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

.product-card {
    position: relative;
    z-index: 1;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 5rem 2rem;
    display: none;
}

.no-results-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    color: var(--pink-primary);
    font-size: 3rem;
}

.no-results h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.no-results p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    height: 400px;
    margin-top: 3rem;
}

.testimonial-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.carousel-left {
    top: 0;
}

.carousel-right {
    top: 200px;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    height: 100%;
    animation: scroll-left 40s linear infinite;
}

.carousel-right .testimonial-track {
    animation: scroll-right 45s linear infinite;
}

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

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

.testimonial-card {
    min-width: 380px;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-lighter);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 15px;
    color: var(--pink-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-details p,
.contact-details a {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-details a:hover {
    color: var(--pink-primary);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
}

/* Footer */
.footer {
    background: white;
    color: var(--text-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: none;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--pink-primary);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    color: var(--pink-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--pink-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-lighter);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--pink-primary);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    margin-top: 1rem;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-details-image img {
    width: 100%;
    border-radius: 20px;
}

.flower-options {
    margin-top: 2rem;
}

.flower-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.flower-option:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

.flower-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: var(--pink-primary);
    cursor: pointer;
}

.flower-option label {
    flex: 1;
    margin-left: 1.5rem;
    cursor: pointer;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.close-cart {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: var(--pink-primary);
    color: white;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--pink-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.remove-item {
    background: var(--pink-primary);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.remove-item:hover {
    background: var(--pink-dark);
    transform: scale(1.1);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cart-total strong {
    color: var(--pink-primary);
    font-size: 1.8rem;
}

.empty-cart {
    text-align: center;
    color: var(--text-lighter);
    padding: 3rem 2rem;
    font-size: 1.1rem;
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-checkout {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.close-checkout:hover {
    background: var(--pink-primary);
    color: white;
    transform: rotate(90deg);
}

.payment-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.payment-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.payment-info p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.payment-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.payment-row strong {
    color: var(--pink-primary);
    font-size: 1.3rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonial cards should always be visible */
.testimonial-card.fade-in {
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure testimonial cards are always visible, even if fade-in script fails */
.testimonial-card.fade-in {
    opacity: 1;
    transform: none;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: floatElement 15s ease-in-out infinite;
}

.fe-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.4) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.fe-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.fe-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: -8s;
}

.fe-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    top: 40%;
    right: 30%;
    animation-duration: 22s;
    animation-delay: -12s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(25px, 15px) scale(1.05);
    }
}


/* Title Character Animation */
.title-char {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--black);
}

.title-line {
    display: block;
    overflow: visible;
}

.title-line-1 {
    margin-bottom: -0.1em;
}

/* Subtitle Word Animation */
.subtitle-word {
    display: inline-block;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 1rem;
    color: var(--black);
}

/* Badge Shine Effect */
.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

.hero-badge {
    position: relative;
    overflow: hidden;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Button Ripple */
.btn-ripple {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.btn-ripple.active {
    width: 300px;
    height: 300px;
}


/* Featured Preview Section */
/* Animated Product Carousels Section */
.product-carousels-section {
    padding: 5rem 0 8rem;
    background: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    margin: 1.5rem 0;
    background: transparent;
}

.product-carousel-wrapper::before,
.product-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.carousel-ltr::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
}

.carousel-ltr::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
}

.carousel-rtl::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
}

.carousel-rtl::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
}

.product-carousel-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
    will-change: transform;
}

.product-carousel-track[data-direction="ltr"] {
    animation: scrollLeft 40s linear infinite;
}

.product-carousel-track[data-direction="rtl"] {
    animation: scrollRight 45s linear infinite;
}

.product-carousel-track.paused {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.carousel-product-card {
    flex-shrink: 0;
    width: 380px;
    height: auto;
    min-height: 520px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 182, 193, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.carousel-product-card:hover::before {
    opacity: 1;
}

.carousel-product-card:hover {
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateY(-15px) scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 105, 180, 0.25);
}

.carousel-product-image {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.carousel-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-product-card:hover .carousel-product-image img {
    transform: scale(1.15) rotate(2deg);
}

.carousel-product-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

.carousel-product-card:hover .carousel-product-glow {
    opacity: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.carousel-product-info {
    padding: 2.25rem 2rem 2.75rem;
    position: relative;
    z-index: 2;
    background: white;
}

.carousel-product-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.carousel-product-card:hover .carousel-product-info h3 {
    color: var(--pink-primary);
}

.carousel-product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.carousel-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.carousel-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-primary);
    font-family: 'Playfair Display', serif;
}

.carousel-product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--pink-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.carousel-product-card:hover .carousel-product-badge {
    transform: rotate(-5deg) scale(1.1);
}


.carousel-header {
    text-align: center;
    margin-bottom: 5rem;
}

.carousel-3d-wrapper {
    perspective: 2000px;
    perspective-origin: center center;
    height: 600px;
    position: relative;
    margin: 4rem 0;
}

.carousel-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    position: absolute;
    width: 350px;
    height: 450px;
    left: 50%;
    top: 50%;
    margin-left: -175px;
    margin-top: -225px;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.carousel-card {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item:hover .carousel-card {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 105, 180, 0.3);
}

.carousel-image {
    width: 100%;
    height: 70%;
    overflow: hidden;
    position: relative;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item:hover .carousel-image img {
    transform: scale(1.2) rotate(5deg);
}

.carousel-content {
    padding: 2rem;
    text-align: center;
    background: white;
}

.carousel-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.carousel-content p {
    font-size: 1.2rem;
    color: var(--pink-primary);
    font-weight: 700;
}

.carousel-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

.carousel-item:hover .carousel-glow {
    opacity: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--pink-primary);
    color: var(--pink-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
}

.carousel-btn:hover {
    background: var(--pink-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--pink-primary);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
}

.carousel-dot:hover {
    background: var(--pink-primary);
    transform: scale(1.3);
}

/* 3D Carousel Positioning */
.carousel-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(400px);
    opacity: 1;
    z-index: 6;
}

.carousel-item:nth-child(2) {
    transform: rotateY(60deg) translateZ(400px);
    opacity: 0.8;
    z-index: 5;
}

.carousel-item:nth-child(3) {
    transform: rotateY(120deg) translateZ(400px);
    opacity: 0.6;
    z-index: 4;
}

.carousel-item:nth-child(4) {
    transform: rotateY(180deg) translateZ(400px);
    opacity: 0.4;
    z-index: 3;
}

.carousel-item:nth-child(5) {
    transform: rotateY(240deg) translateZ(400px);
    opacity: 0.6;
    z-index: 4;
}

.carousel-item:nth-child(6) {
    transform: rotateY(300deg) translateZ(400px);
    opacity: 0.8;
    z-index: 5;
}

/* Auto-rotate animation */
@keyframes carouselRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.carousel-3d-container.auto-rotate {
    animation: carouselRotate 30s linear infinite;
}

/* Responsive */
@media (max-width: 968px) {
    .carousel-3d-wrapper {
        height: 500px;
        perspective: 1500px;
    }
    
    .carousel-item {
        width: 280px;
        height: 360px;
        margin-left: -140px;
        margin-top: -180px;
    }
    
    .carousel-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(300px);
    }
    
    .carousel-item:nth-child(2) {
        transform: rotateY(60deg) translateZ(300px);
    }
    
    .carousel-item:nth-child(3) {
        transform: rotateY(120deg) translateZ(300px);
    }
    
    .carousel-item:nth-child(4) {
        transform: rotateY(180deg) translateZ(300px);
    }
    
    .carousel-item:nth-child(5) {
        transform: rotateY(240deg) translateZ(300px);
    }
    
    .carousel-item:nth-child(6) {
        transform: rotateY(300deg) translateZ(300px);
    }
}

.featured-preview {
    background: white;
    padding: 8rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.featured-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(255, 105, 180, 0.2);
}

.featured-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-card:hover .featured-overlay {
    opacity: 1;
}

.featured-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.featured-link:hover {
    transform: scale(1.05);
}

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.featured-content p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 182, 193, 0.05) 100%);
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    color: var(--pink-primary);
    font-size: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--pink-primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Preview */
.testimonials-preview {
    background: var(--bg-light);
    padding: 8rem 0;
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    margin-top: 4rem;
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

.testimonial-row {
    position: relative;
    overflow: hidden;
    height: 320px;
    /* Temporarily disable masking to ensure visibility across browsers */
    mask-image: none;
    -webkit-mask-image: none;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-row-2 {
    margin-top: 0;
}

.testimonial-track {
    display: flex !important;
    gap: 1.5rem;
    height: 100%;
    width: fit-content;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

.track-left {
    animation: scroll-left-testimonials 40s linear infinite;
}

.track-right {
    animation: scroll-right-testimonials 45s linear infinite;
}

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

@keyframes scroll-right-testimonials {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    min-width: 280px;
    max-width: 280px;
    background: white;
    padding: 1.75rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: fit-content;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 12rem 0 8rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 182, 193, 0.05) 100%);
}

.page-hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 1.5rem;
    color: var(--text-light);
}

/* About Intro Section */
.about-intro {
    padding: 8rem 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.intro-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.intro-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.intro-stat {
    text-align: center;
}

.intro-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--pink-primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.intro-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.intro-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intro-image-wrapper:hover img {
    transform: scale(1.05);
}

.intro-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Masonry Gallery */
.masonry-gallery-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 2rem;
    margin-top: 4rem;
}

.masonry-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.masonry-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.masonry-item-large {
    grid-row: span 2;
}

.masonry-item-tall {
    grid-row: span 2;
}

.masonry-item-wide {
    grid-column: span 2;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
    background: white;
}

.value-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.value-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    color: var(--pink-primary);
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--pink-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Enhanced Mission Section */
.mission-section-enhanced {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 182, 193, 0.05) 100%);
}

.mission-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.mission-card-enhanced {
    position: relative;
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mission-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pink-primary) 0%, var(--pink-dark) 100%);
}

.mission-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(255, 105, 180, 0.25);
}

.mission-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 105, 180, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.mission-icon-enhanced {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    color: var(--pink-primary);
    font-size: 3rem;
    transition: all 0.4s ease;
}

.mission-card-enhanced:hover .mission-icon-enhanced {
    background: var(--pink-primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.mission-card-enhanced h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.mission-card-enhanced p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: white;
}

.process-timeline {
    margin-top: 4rem;
    position: relative;
    padding-left: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--pink-primary) 0%, var(--pink-dark) 100%);
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 4rem;
}

.process-step-number {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
    z-index: 2;
}

.process-step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* About CTA */
.about-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 182, 193, 0.1) 100%);
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-cta-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.about-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.social-links-about {
    margin-top: 3rem;
}

.social-link-about {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--pink-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-link-about:hover {
    background: var(--pink-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

/* Mission Section */
.mission-section {
    background: white;
    padding: 8rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mission-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
}

.mission-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    color: var(--pink-primary);
    font-size: 2.5rem;
}

.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mission-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

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

.cta-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-dark) 100%);
    opacity: 0.95;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-buttons .btn-primary:hover {
    background: var(--black);
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--black);
}

/* Shop Filter Responsive */
@media (max-width: 968px) {
    .filter-sidebar {
        width: 85%;
        max-width: 350px;
    }
    
    .filter-backdrop.active {
        display: block;
        pointer-events: auto;
    }
    
    .close-filters {
        display: flex;
    }
    
    .shop-controls-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .filter-toggle,
    .sort-wrapper {
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
}

/* Active Nav Link */
.nav-link.active {
    color: var(--pink-primary);
}

.nav-link.active::after {
    width: 100%;
}

/* Cart Page */
.cart-page {
    padding: 5rem 0;
    min-height: 60vh;
}

.cart-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.cart-items-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-page-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cart-page-item:hover {
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    transform: translateY(-3px);
}

.cart-item-image-wrapper {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.cart-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.cart-item-details-wrapper {
    flex: 1;
}

.cart-item-details-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.cart-item-flowers {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-primary);
    font-family: 'Playfair Display', serif;
}

.remove-item-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--pink-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.remove-item-btn:hover {
    background: var(--pink-primary);
    color: white;
    transform: scale(1.1);
}

.cart-summary-section {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.cart-summary-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cart-summary-card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.summary-row span {
    color: var(--text-light);
}

.summary-row strong {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.summary-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.total-row {
    font-size: 1.3rem;
    margin-top: 1rem;
}

.total-row strong {
    color: var(--pink-primary);
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.cart-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.empty-cart-page {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-cart-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    color: var(--pink-primary);
    font-size: 4rem;
}

.empty-cart-page h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.empty-cart-page p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .section-container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 0 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem;
        gap: 2rem;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-content,
    .contact-content,
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .gallery-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .gallery-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .gallery-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .gallery-item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .gallery-item-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .gallery-item-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .hero-content-wrapper {
        padding: 2.5rem;
    }
    
    .featured-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
    
    .cart-page-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-summary-section {
        position: relative;
        top: 0;
    }
}

/* ============================================
   TABLET RESPONSIVE STYLES (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-container {
        padding: 0 2rem;
    }
    
    .logo {
        height: 60px;
    }
    
    /* Hero Section */
    .hero {
        padding: 0 2rem;
        min-height: 90vh;
    }
    
    .hero-content-wrapper {
        padding: 3rem;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .hero-description {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    
    .hero-image-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Section Containers */
    .section-container {
        padding: 0 2rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    /* Featured Grid */
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* About Page */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-intro-text {
        text-align: center;
    }
    
    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .mission-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Process Timeline */
    .process-timeline {
        padding-left: 2rem;
    }
    
    .process-step {
        padding-left: 3rem;
    }
    
    /* Masonry Gallery */
    .masonry-gallery {
        columns: 2;
        column-gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 250px;
    }
    
    .testimonial-row {
        height: 280px;
    }
    
    /* Circular Gallery */
    #circular-gallery-container {
        height: 500px;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        width: 90%;
        max-width: 450px;
    }
    
    /* Product Modal */
    .product-modal-content {
        width: 90%;
        max-width: 700px;
        padding: 2rem;
    }
    
    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    /* Shop Page */
    .shop-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .shop-controls-right {
        width: 100%;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 6rem 0;
    }
    
    .cta-content h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem;
        gap: 2rem;
        justify-content: flex-start;
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 0 1.5rem;
        min-height: 80vh;
        justify-content: center;
    }
    
    .hero-content-wrapper {
        padding: 2rem;
        max-width: 100%;
        backdrop-filter: blur(15px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .hero-image-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-item {
        border-radius: 15px;
    }
    
    /* Section Containers */
    .section-container {
        padding: 0 1.5rem;
    }
    
    /* Section Headers */
    .section-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        padding: 0;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(0,0,0,0.08);
        background: white;
    }
    
    .product-image-wrapper {
        height: 260px;
        aspect-ratio: unset;
        overflow: hidden;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-info {
        padding: 1.25rem 1.15rem 1.5rem;
    }
    
    .product-footer {
        padding-top: 1rem;
        align-items: center;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    /* Featured Grid */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-card {
        padding: 2rem;
    }
    
    /* About Page */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-intro-text h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .mission-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .mission-icon-enhanced {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    /* Process Timeline */
    .process-timeline {
        padding-left: 1.5rem;
    }
    
    .process-step {
        padding-left: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: -1.25rem;
    }
    
    .process-step-content h3 {
        font-size: 1.5rem;
    }
    
    /* Masonry Gallery */
    .masonry-gallery {
        columns: 1;
        column-gap: 1rem;
    }
    
    .masonry-item {
        margin-bottom: 1rem;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        min-width: 220px;
        padding: 1.5rem;
    }
    
    .testimonial-row {
        height: 260px;
    }
    
    .testimonials-carousel-wrapper {
        gap: 0.5rem;
    }
    
    .testimonial-track {
        gap: 1rem;
    }
    
     /* Product Carousels */
     .product-carousels-section {
         padding: 3rem 0 6rem;
     }
     
     .product-carousel-wrapper {
         padding: 2rem 0;
     }
     
    .carousel-product-card {
        width: 320px;
        height: auto;
        min-height: 440px;
        overflow: hidden;
    }
     
     .carousel-product-image {
         height: 280px;
     }
    
    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        right: -100%;
        padding: 2rem 1.5rem;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item-details {
        width: 100%;
    }
    
    /* Product Modal */
    .product-modal {
        padding: 1rem;
    }
    
    .product-modal-content {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-modal-image {
        height: 300px;
    }
    
    .product-modal-info h2 {
        font-size: 1.8rem;
    }
    
    .product-modal-info .price {
        font-size: 1.8rem;
    }
    
    .flower-options {
        grid-template-columns: 1fr;
    }
    
    .flower-option {
        padding: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-actions button {
        width: 100%;
    }
    
    /* Checkout Modal */
    .checkout-modal-content {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .checkout-form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Shop Page */
    .shop {
        padding: 3rem 0;
    }
    
    .shop-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .shop-controls {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .shop-controls-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .filter-toggle,
    .sort-wrapper {
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .filter-sidebar {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .filter-section {
        margin-bottom: 1.5rem;
    }
    
    .filter-section h3 {
        font-size: 1.2rem;
    }
    
    /* Cart Page */
    .cart-page {
        padding: 3rem 0;
    }
    
    .cart-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-summary-section {
        position: relative;
        top: 0;
        padding: 2rem;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 250px;
    }
    
    .cart-item-details {
        width: 100%;
    }
    
    /* Contact Page */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
    
    /* Floating Flowers */
    .floating-flower {
        width: 60px;
        height: 60px;
        opacity: 0.3;
    }
    
    /* Notifications */
    .notification {
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: calc(100% - 2rem);
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* About CTA */
    .about-cta {
        padding: 3rem 0;
    }
    
    .about-cta-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

/* ============================================
   SMALL MOBILE RESPONSIVE STYLES (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 45px;
    }
    
    /* Hero */
    .hero {
        padding: 0 1rem;
        min-height: 70vh;
    }
    
    .hero-content-wrapper {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    /* Section Containers */
    .section-container {
        padding: 0 1rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Product Cards */
    .product-card {
        padding: 1rem;
    }
    
    .product-card img {
        height: 200px;
    }
    
    /* Modals */
    .product-modal-content,
    .checkout-modal-content {
        padding: 1rem;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        padding: 1.5rem 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
     /* Product Carousels */
     .product-carousels-section {
         padding: 2rem 0 4rem;
     }
     
     .product-carousel-wrapper {
         padding: 1.5rem 0;
     }
     
    .carousel-product-card {
        width: 280px;
        height: auto;
        min-height: 400px;
        overflow: hidden;
    }
     
     .carousel-product-image {
         height: 240px;
     }
     
     .carousel-product-info {
         padding: 1.5rem;
     }
     
     .carousel-product-info h3 {
         font-size: 1.3rem;
     }
    
}
