:root {
    
    --bg-dark: #070709;
    --text-light: #F8F9FA;
    --text-muted: #aaaaaa;

    
    --rose-gold: #e28e9d;
    --cyber-pink: #ff1493;
    --rose-gold-dim: #8a3f4e;

    
    --glass-dark: rgba(20, 15, 20, 0.6);
    --glass-border-dark: rgba(226, 142, 157, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--rose-gold-dim);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose-gold);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    animation: pulseGlow 2s infinite ease-in-out;
}

.loader-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(226, 142, 157, 0.4));
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    animation: drawLine 1.5s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes pulseGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(226, 142, 157, 0.2);
        opacity: 0.8;
    }

    50% {
        text-shadow: 0 0 30px rgba(226, 142, 157, 0.8);
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes drawLine {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        width: 100px;
        opacity: 1;
    }

    100% {
        width: 0;
        opacity: 0;
        transform: translateX(50px);
    }
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.marquee-section {
    width: 100vw;
    background-color: var(--rose-gold);
    color: var(--bg-dark);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 10;
    margin-top: 100px;
}

.marquee-track {
    display: inline-block;
    animation: marqueeScroll 25s linear infinite;
    will-change: transform;
}

.marquee-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    padding-right: 20px;
    display: inline-block;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--rose-gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--rose-gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s, backdrop-filter 0.2s;
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(226, 142, 157, 0.1);
    
    backdrop-filter: blur(2px);
    
    border-width: 2px;
}

#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9990;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

#liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a0b12 0%, var(--bg-dark) 70%);
}

#floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    padding: 10px 30px;
    background: var(--glass-dark);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border-dark);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 35px;
    
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(226, 142, 157, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

#mobile-menu-btn {
    display: none;
}

.links {
    display: flex;
    align-items: center;
}

.links a {
    text-decoration: none;
    color: var(--text-light);
    margin-left: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.links a:hover {
    color: var(--rose-gold);
}

.lang-switcher {
    background: transparent;
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold-dim);
    padding: 3px 8px;
    border-radius: 10px;
    outline: none;
    font-size: 0.75rem;
    margin-left: 20px;
}

.lang-switcher option {
    background: var(--bg-dark);
    color: var(--text-light);
}

a,
button,
select {
    cursor: none;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 14vw;
    
    line-height: 0.8;
    font-style: italic;
    color: var(--rose-gold);
    text-shadow: 0 0 50px rgba(226, 142, 157, 0.3);
    position: absolute;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    font-weight: 400;
    letter-spacing: -0.5vw;
}

.hero-product {
    position: relative;
    z-index: 5;
    width: 400px;
    height: 600px;
    transform-style: preserve-3d;
    perspective: 1500px;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background: var(--cyber-pink);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    z-index: -1;
}

.product-bottle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 300px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(226, 142, 157, 0.2);
    border: 2px solid var(--glass-border-dark);
    filter: contrast(1.1) brightness(0.85);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
    z-index: 20;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--rose-gold);
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--rose-gold), transparent);
    background-size: 100% 200%;
    animation: scrollLine 2s linear infinite;
}

@keyframes scrollLine {
    0% {
        background-position: 0% -100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

.scrolly-pin-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ingredients-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.ingredient {
    position: absolute;
    opacity: 0;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    filter: drop-shadow(0 0 15px rgba(226, 142, 157, 0.4));
}

.petal {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23e28e9d" d="M50 0 C70 30 100 50 50 100 C0 50 30 30 50 0 Z"/></svg>');
}

.drop {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ff1493" opacity="0.8" d="M50 0 Q100 60 50 100 Q0 60 50 0 Z"/></svg>');
}

.story-content {
    z-index: 20;
    text-align: center;
    max-width: 800px;
    padding: 60px;
    color: var(--text-light);
}

.story-title {
    font-size: 6vw;
    margin-bottom: 20px;
    font-style: italic;
    background: linear-gradient(45deg, #fff, var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(226, 142, 157, 0.2));
}

.story-content p {
    font-size: 1.5rem;
    line-height: 2;
    font-weight: 300;
}

.products-section {
    min-height: 100vh;
    padding: 150px 50px 100px 50px;
    position: relative;
    z-index: 20;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    transform-style: preserve-3d;
    perspective: 1200px;
    
    position: relative;
    
    background: rgba(14, 10, 15, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(226, 142, 157, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.card-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    
    height: 600px;
    border-radius: 50%;
    
    background: radial-gradient(circle at center, rgba(226, 142, 157, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.glow-clip {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    z-index: 0;
}

.img-wrapper {
    transform: translateZ(20px);
    
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    height: 380px;
    
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
}

.product-card:hover .img-wrapper {
    transform: translateZ(20px);
    
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
    filter: brightness(0.85) contrast(1.1);
}

.product-card:hover img {
    transform: scale(1.08);
}

.card-info {
    transform: translateZ(15px);
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.product-card:hover .card-info {
    transform: translateZ(25px);
    
}

.product-card h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-light);
    transform: translateZ(0px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover h3 {
    transform: translateZ(10px);
    
}

.product-card p {
    font-size: 0.8rem;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 4px;
    
    min-height: 45px;
    color: var(--rose-gold);
    transform: translateZ(0px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.8;
}

.product-card:hover p {
    transform: translateZ(10px);
}

.add-to-cart {
    background: transparent;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    position: relative;
    width: 220px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
    transform: translateZ(0px);
    transition: all 0.4s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .add-to-cart {
    transform: translateZ(15px);
    
    box-shadow: 0 10px 20px rgba(226, 142, 157, 0.15);
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 142, 157, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.add-to-cart:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(226, 142, 157, 0.4);
}

.add-to-cart:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-text,
.btn-icon {
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.btn-icon {
    transform: translateY(40px);
    opacity: 0;
    font-size: 1.5rem;
}

.add-to-cart:hover .btn-text {
    transform: translateY(-40px);
    opacity: 0;
}

.add-to-cart:hover .btn-icon {
    transform: translateY(0);
    opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    background: rgba(10, 5, 8, 0.95);
    border-left: 1px solid var(--glass-border-dark);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border-dark);
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
}

#cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.cart-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    color: var(--text-light);
}

.cart-item-info p {
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 600;
    color: var(--rose-gold);
}

.cart-item-info button {
    background: transparent;
    border: none;
    color: #999;
    font-size: 0.8rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-footer {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--glass-border-dark);
}

.checkout-btn {
    border: none;
    padding: 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s;
    background: var(--rose-gold);
    color: var(--bg-dark);
}

.checkout-btn:hover {
    transform: scale(1.02);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--rose-gold-dim);
}

.premium-footer {
    background-color: #050304;
    
    border-top: 1px solid rgba(226, 142, 157, 0.1);
    padding: 100px 5vw 40px 5vw;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    color: var(--rose-gold);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.link-group h4 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--rose-gold);
}

.subscribe-box {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    width: 250px;
}

.subscribe-box input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.subscribe-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.subscribe-box button {
    background: transparent;
    border: none;
    color: var(--rose-gold);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.subscribe-box button:hover {
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.8rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.social-links a:hover {
    color: var(--rose-gold);
}

@media (max-width: 1024px) {
    .scrolly-pin-wrapper {
        min-height: 100vh;
        
    }

    .ingredient {
        width: 15vw;
        height: 15vw;
    }

    .hero-title {
        font-size: 16vw;
        
    }
}

@media (max-width: 768px) {
    #mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        color: var(--rose-gold);
        font-size: 2rem;
        cursor: pointer;
    }

    
    #floating-nav {
        width: 95%;
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
        border-radius: 25px;
    }

    .logo img {
        height: 28px;
        
    }

    
    .links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 5, 10, 0.95);
        backdrop-filter: blur(20px);
        position: absolute;
        top: 70px;
        left: 0;
        border-radius: 20px;
        border: 1px solid var(--border);
        padding: 20px 0;
        z-index: 1000;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }

    .links.mobile-open {
        display: flex;
        animation: fadeInDown 0.3s ease;
    }

    .links a {
        margin: 15px 0;
        font-size: 1.1rem;
        text-align: center;
        letter-spacing: 2px;
    }

    .lang-switcher {
        margin: 15px auto;
        display: block;
    }

    
    .hero-title {
        font-size: 15vw;
        letter-spacing: 0;
        line-height: 1.2;
        margin-top: 50px;
    }

    .hero-product {
        width: 300px;
        height: 450px;
        margin-top: -20px;
    }

    .product-bottle {
        width: 100%;
    }

    
    .products {
        padding: 50px 15px;
    }

    .grid {
        grid-template-columns: 1fr;
        
        gap: 40px;
        justify-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 350px;
        transform: none !important;
        
        transition: transform 0.2s ease;
    }

    .add-to-cart,
    .pdp-add-btn {
        padding: 15px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-sidebar.open {
        right: 0;
    }

    .product-card:hover {
        transform: translateY(-5px) !important;
        
    }

    .product-card:hover .img-wrapper,
    .product-card:hover .card-info,
    .product-card:hover .add-to-cart {
        transform: none;
        
    }

    
    .premium-footer {
        padding: 60px 20px 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links {
        justify-content: space-around;
        gap: 30px;
    }

    .subscribe-box {
        width: 100%;
        margin-top: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

.testimonials-section {
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(226, 142, 157, 0.05), transparent 60%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: var(--rose-gold);
    opacity: 0.3;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 60px;
    letter-spacing: 2px;
    font-style: italic;
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 200px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 1s ease;
    transform: scale(0.95) translateY(20px);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.testimonial-controls {
    margin-top: 30px;
}

.test-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    margin: 0 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.test-dot.active {
    background: var(--rose-gold);
    transform: scale(1.5);
}

#ethereal-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.shop-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: radial-gradient(circle at center, rgba(226, 142, 157, 0.05) 0%, transparent 70%);
}

.shop-title-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.shop-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(180deg, #fff 0%, var(--rose-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.shop-subtitle {
    font-size: 1.2rem;
    color: var(--rose-gold);
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 200;
}

.shop-hero-3d-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--rose-gold);
    top: 10%;
    left: 10%;
    animation: floatOrb 15s infinite alternate ease-in-out;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--rose-gold-dim);
    bottom: 10%;
    right: 5%;
    animation: floatOrb 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, 100px) scale(1.1);
    }
}

.utility-bar {
    position: sticky;
    top: 100px;
    z-index: 10;
    padding: 20px 0;
    margin-bottom: 40px;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(226, 142, 157, 0.1);
    border-bottom: 1px solid rgba(226, 142, 157, 0.1);
}

.utility-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(226, 142, 157, 0.2);
    border-radius: 30px;
    padding: 8px 20px;
    width: 300px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--rose-gold);
    box-shadow: 0 0 15px rgba(226, 142, 157, 0.2);
    width: 350px;
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    padding-left: 10px;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
}

.search-box .material-symbols-outlined {
    color: var(--rose-gold);
    font-size: 1.2rem;
}

.filter-group {
    display: flex;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
    background: rgba(226, 142, 157, 0.05);
}

.sort-box select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(226, 142, 157, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
}

.shop-page .products-grid {
    align-items: stretch;
}

.shop-page .product-card {
    height: auto;
    min-height: 520px;
    background: rgba(20, 15, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(226, 142, 157, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.shop-page .product-card:hover {
    border-color: rgba(226, 142, 157, 0.5);
    box-shadow: 0 10px 40px rgba(226, 142, 157, 0.15);
    transform: translateY(-10px) !important;
}

.shop-page .img-wrapper {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.shop-page .card-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shop-page .prod-desc {
    flex-grow: 1;
    margin-bottom: 20px;
}

.shop-page .add-to-cart {
    margin-top: auto;
}

@media (max-width: 768px) {
    .shop-hero {
        margin-top: 100px;
        height: 40vh;
    }

    .shop-main-title {
        font-size: 10vw;
        letter-spacing: 3px;
    }

    .utility-container {
        flex-direction: column;
        gap: 20px;
    }

    .search-box {
        width: 100%;
    }

    .search-box:focus-within {
        width: 100%;
    }

    .filter-group {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
        white-space: nowrap;
    }
}

.search-icon-anim .search-circle {
    transform-origin: 11px 11px;
    transition: all 0.3s ease;
}
.search-icon-anim .search-handle {
    transform-origin: 16px 16px;
    transition: all 0.3s ease;
}
.search-box:focus-within .search-icon-anim .search-circle {
    animation: searchPulse 1.5s infinite alternate ease-in-out;
}
.search-box:focus-within .search-icon-anim .search-handle {
    animation: searchWiggle 1.5s infinite alternate ease-in-out;
}
@keyframes searchPulse {
    0% { transform: scale(1); stroke: #e28e9d; filter: drop-shadow(0 0 0px transparent); }
    100% { transform: scale(1.15); stroke: #fde8ec; filter: drop-shadow(0 0 8px rgba(226, 142, 157, 0.8)); }
}
@keyframes searchWiggle {
    0% { transform: rotate(0deg); stroke: #e28e9d; }
    100% { transform: rotate(10deg); stroke: #fde8ec; }
}


