/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Gradient Themes */
    --lavender-start: #2e1a47;
    --lavender-end: #0a0510;
    --rose-start: #471a2d;
    --rose-end: #10050a;
    --forest-start: #1a472a;
    --forest-end: #051007;
    --citrus-start: #473a1a;
    --citrus-end: #100d05;
    
    /* Colors */
    --color-lavender: #8b5cf6;
    --color-rose: #f472b6;
    --color-forest: #10b981;
    --color-citrus: #fbbf24;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-bg-strong: rgba(255, 255, 255, 0.09);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.2);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ========================================
   GLOBAL RESET
   ======================================== */
* {
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-gradient.active {
    opacity: 1;
}

.bg-lavender {
    background: radial-gradient(circle at 30% 40%, #8b5cf6 0%, #6b21a8 25%, #2e1a47 60%, #0a0510 100%);
}

.bg-rose {
    background: radial-gradient(circle at 60% 50%, #f472b6 0%, #db2777 25%, #471a2d 60%, #10050a 100%);
}

.bg-forest {
    background: radial-gradient(circle at 40% 60%, #34d399 0%, #059669 25%, #1a472a 60%, #051007 100%);
}

.bg-citrus {
    background: radial-gradient(circle at 70% 30%, #fbbf24 0%, #f59e0b 25%, #473a1a 60%, #100d05 100%);
}

/* ========================================
   GLASS EFFECTS
   ======================================== */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-btn {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all var(--transition-smooth);
    box-shadow: 
        var(--shadow-md),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.15);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        var(--shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-btn:active {
    transform: scale(0.98) translateY(0);
}

/* ========================================
   HEADER - LUXURIOUS TYPOGRAPHY
   ======================================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    margin-bottom: 1rem;
    position: relative;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-decoration: none;
    color: white;
    transition: opacity var(--transition-normal);
    text-transform: uppercase;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-item {
    position: relative;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all var(--transition-normal);
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transition: width var(--transition-smooth);
}

.nav-item:hover {
    opacity: 1;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-profile.hidden {
    display: none;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(244, 114, 182, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--glass-border-hover);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.avatar:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(244, 114, 182, 0.7));
    transform: scale(1.05);
}

.action-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    color: white;
    font-weight: 400;
}

/* ========================================
   ENHANCED CART BUTTON
   ======================================== */
.cart-button {
    position: relative;
    padding: 0.6rem 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        var(--shadow-md),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.15);
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        var(--shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cart-button:active {
    transform: scale(0.95) translateY(0);
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform var(--transition-smooth);
}

.cart-button:hover .cart-icon {
    transform: scale(1.1);
}

.cart-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    padding: 0 5px;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-bounce);
    box-shadow: 
        0 4px 12px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cart-badge.show {
    opacity: 1;
    transform: scale(1);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(255, 107, 107, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(255, 107, 107, 0.6),
            0 0 15px rgba(255, 107, 107, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Mobile cart button optimization */
@media (max-width: 768px) {
    .cart-button {
        width: 48px;
        height: 48px;
        padding: 0.7rem;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cart-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .cart-badge {
        top: -4px;
        right: -4px;
        min-width: 22px;
        height: 22px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cart-button {
        width: 44px;
        height: 44px;
    }
    
    .cart-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1002;
}

.menu-toggle:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: scale(1.05);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-smooth);
    transform-origin: center;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    transition: right var(--transition-smooth);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.mobile-nav-item {
    position: relative;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    text-transform: uppercase;
    opacity: 0.8;
    transition: all var(--transition-smooth);
    text-decoration: none;
    color: white;
    font-weight: 400;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateX(50px);
    opacity: 0;
}

.mobile-menu.active .mobile-nav-item {
    transform: translateX(0);
    opacity: 0.8;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-item:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transition: width var(--transition-smooth);
}

.mobile-nav-item:hover::before {
    width: 20px;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-grow: 0;
    gap: 2rem;
    padding: 0;
    z-index: 1;
    max-height: calc(100vh - 180px);
    margin-bottom: 2rem;
}

/* ========================================
   PRODUCT IMAGE - SEAMLESS TRANSITIONS
   ======================================== */
.image-wrapper {
    perspective: 2000px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    filter: blur(140px);
    opacity: 0.5;
    z-index: -1;
    background: var(--color-lavender);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.15);
        opacity: 0.7;
    }
}

@keyframes luxuryFloat {
    0% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
    }
    25% {
        transform: translateY(-6px) rotateX(1deg) rotateY(-1deg) scale(1.01);
    }
    50% {
        transform: translateY(4px) rotateX(-1deg) rotateY(1deg) scale(1.015);
    }
    75% {
        transform: translateY(-3px) rotateX(0.5deg) rotateY(-0.5deg) scale(1.01);
    }
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
    }
}

.product-image.active {
    animation: luxuryFloat 8s ease-in-out infinite;
}

.image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    position: relative;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0;
    transform: translateZ(0) rotateX(0) rotateY(0) scale(0.85);
    transform-origin: center center;
    filter: 
        drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5))
        brightness(1);
    transition: 
        opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.9s cubic-bezier(0.34, 1.3, 0.64, 1),
        filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter, opacity;
    pointer-events: none;
    transform-style: preserve-3d;
}

.product-image.active {
    opacity: 1;
    transform: translateZ(0) rotateX(0) rotateY(0) scale(1);
}



/* ========================================
   NATURAL HANGING ITEM ANIMATION FOR MOBILE
   ======================================== */
@keyframes naturalHang {
    0%   { transform: rotate(0deg) translateX(0); }
    10%  { transform: rotate(6deg) translateX(2px); }
    20%  { transform: rotate(-5deg) translateX(-2px); }
    30%  { transform: rotate(4deg) translateX(1px); }
    40%  { transform: rotate(-3deg) translateX(-1px); }
    50%  { transform: rotate(2deg) translateX(0); }
    60%  { transform: rotate(-1deg) translateX(-0.5px); }
    70%  { transform: rotate(1deg) translateX(0.5px); }
    80%  { transform: rotate(-0.5deg) translateX(-0.2px); }
    90%  { transform: rotate(0.3deg) translateX(0.2px); }
    100% { transform: rotate(0deg) translateX(0); }
}

@media (max-width: 768px) {
    .product-image.active {
        animation: 
            luxuryFloat 20s ease-in-out infinite, 
            naturalHang 4s cubic-bezier(0.25, 1, 0.5, 1);
        transform-origin: top center;
    }
}

/* ========================================
   PRODUCT INFO - LUXURIOUS FONTS
   ======================================== */
.info-card,
.details-card {
    z-index: 10;
    width: 100%;
    max-width: 26rem;
    transition: all var(--transition-smooth);
}

.content-box {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-box.active {
    opacity: 1;
    transform: translateY(0);
}

.edition-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    margin-bottom: 0.75rem;
    opacity: 0.6;
    font-weight: 400;
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-name {
    font-family: 'Prata', serif;
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.12;
    letter-spacing: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    opacity: 0;
}

.product-description {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 0.015em;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.details-card .content-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: right;
}

.detail-item {
    transition: all var(--transition-bounce);
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.detail-item:nth-child(1) {
    animation-delay: 0.3s;
}

.detail-item:nth-child(2) {
    animation-delay: 0.4s;
}

.detail-item:nth-child(3) {
    animation-delay: 0.5s;
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.detail-value {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
}

/* ========================================
   ADD TO CART BUTTON - REFINED ALIGNMENT
   ======================================== */
.add-cart-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    cursor: pointer;
    border: none;
    color: white;
    width: 100%;
    transition: all var(--transition-smooth);
}

.add-cart-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.add-cart-btn:active {
    transform: translateY(-1px) scale(0.99);
}

@media (min-width: 1024px) {
    .add-cart-btn {
        padding: 0.65rem 1.75rem;
        font-size: 0.68rem;
        width: 180px;
        min-width: 100px;
        margin-left: 250px;
    }
}

/* ========================================
   SCROLLABLE SECTIONS
   ======================================== */
.scrollable-section {
    position: relative;
    width: 100%;
    z-index: 1;
    margin: 4rem 0;
    padding: 4rem 0;
}

/* The Art of Creation Section */
.creation-section {
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.section-title {
    font-family: 'Prata', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    opacity: 0.6;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
}

.creation-timeline {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.creation-timeline::-webkit-scrollbar {
    display: none;
}

.creation-step {
    flex: 0 0 340px;
    scroll-snap-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.creation-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-lavender), 
        var(--color-rose), 
        var(--color-forest), 
        var(--color-citrus));
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.creation-step:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.creation-step:hover::before {
    opacity: 0.7;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
    transition: opacity 0.6s ease;
}

.creation-step:hover .step-number {
    opacity: 0.15;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: var(--glass-bg-strong);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.creation-step:hover .step-icon {
    transform: scale(1.05);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    transition: color 0.6s ease;
}

.step-description {
    font-family: 'Outfit', sans-serif;
    font-size: 0.925rem;
    line-height: 1.7;
    opacity: 0.75;
    font-weight: 300;
    transition: opacity 0.6s ease;
}

.creation-step:hover .step-description {
    opacity: 0.85;
}



/* ========================================
   NAVIGATION DOTS - BELOW IMAGE
   ======================================== */
.navigation-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 7rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dots-container:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.dot:hover::before {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: scale(1.1);
}

.dot.active {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 12px rgba(255, 255, 255, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.dot.active::before {
    border-color: rgba(255, 255, 255, 0.25);
    opacity: 1;
    animation: gentleRipple 3s ease-in-out infinite;
}

@keyframes gentleRipple {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Mobile Scroll Indicator */
.mobile-scroll-indicator {
    display: none;
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.scroll-dot-mobile {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.scroll-dot-mobile.active {
    background: rgba(255, 255, 255, 0.8);
    height: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.scroll-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInBounce 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
    pointer-events: none;
}

.scroll-hint-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
    font-weight: 300;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    opacity: 0.5;
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.8;
    }
}

/* ========================================
   FOOTER
   ======================================== */
/* ============================================
   FOOTER V2 - ENHANCED CSS
   Mobile-First, User-Friendly, Premium Design
   Add this to your styles.css
   ============================================ */

/* ========================================
   BASE FOOTER STRUCTURE
   ======================================== */
.footer-v2 {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 6rem;
    /* Remove previous .footer styles if they conflict */
}

.footer-main-container {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2.5rem 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle ambient glow effect */
.footer-main-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(139, 92, 246, 0.03) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.footer-main-container:hover::before {
    opacity: 1;
}

/* ========================================
   BRAND SECTION
   ======================================== */
.footer-brand-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-v2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-decoration: none;
    color: white;
    display: inline-block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.footer-logo-v2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-v2:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.footer-logo-v2:hover::after {
    width: 100%;
}

.footer-brand-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    opacity: 0.6;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.95;
    margin-bottom: 0.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent);
}

/* ========================================
   NAVIGATION LINKS - IMPROVED UX
   ======================================== */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--color-lavender), var(--color-rose));
    transform: scaleY(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.footer-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.95);
    padding-left: 1.25rem;
}

.footer-nav-link:hover::before {
    transform: scaleY(1);
}

.footer-link-icon {
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover .footer-link-icon {
    opacity: 1;
    transform: translateX(2px) scale(1.1);
}

/* Active link state for current page */
.footer-nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

/* ========================================
   CONTACT ITEMS - ENHANCED TOUCH TARGETS
   ======================================== */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-item:hover .contact-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-icon-wrapper svg {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-contact-item:hover .contact-icon-wrapper svg {
    opacity: 1;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
    font-weight: 400;
}

.contact-value {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: opacity 0.3s ease;
}

.footer-contact-item:hover .contact-value {
    opacity: 1;
}

/* ========================================
   SOCIAL LINKS - CARD LAYOUT
   ======================================== */
.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.social-link-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1), 
        rgba(244, 114, 182, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link-v2:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-link-v2:hover::before {
    opacity: 1;
}

.social-link-v2 svg {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.social-link-v2:hover svg {
    transform: scale(1.15) rotateZ(5deg);
}

.social-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.social-link-v2:hover .social-label {
    opacity: 1;
}

/* ========================================
   DIVIDER - DECORATIVE
   ======================================== */
.footer-divider-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    opacity: 0.4;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
}

.divider-ornament {
    font-size: 1rem;
    opacity: 0.5;
    animation: ornamentPulse 4s ease-in-out infinite;
}

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

/* ========================================
   FOOTER BOTTOM
   ======================================== */
.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.5;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.legal-link-v2 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link-v2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-link-v2:hover {
    color: rgba(255, 255, 255, 0.95);
}

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

.legal-separator {
    opacity: 0.3;
    font-size: 0.8rem;
}

/* ========================================
   PAYMENT SECTION - IMPROVED
   ======================================== */
.footer-payment-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.5;
    font-weight: 400;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
}

.payment-badge:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.2);
}

.payment-badge svg {
    display: block;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: white;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1);
}

.back-to-top svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Tablet Landscape (1024px - 1366px) */
@media (max-width: 1366px) and (min-width: 1024px) {
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-col-contact,
    .footer-col-social {
        grid-column: span 1;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .footer-v2 {
        margin-top: 4rem;
    }
    
    .footer-main-container {
        padding: 2.5rem 2rem;
        border-radius: 28px;
    }
    
    .footer-brand-section {
        margin-bottom: 2.5rem;
        padding-bottom: 1.75rem;
    }
    
    .footer-logo-v2 {
        font-size: 2rem;
    }
    
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-col-social {
        grid-column: 1 / -1;
    }
    
    .footer-social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .footer-v2 {
        margin-top: 3rem;
    }
    
    .footer-main-container {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .footer-brand-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-logo-v2 {
        font-size: 1.75rem;
        letter-spacing: 0.35em;
    }
    
    .footer-brand-tagline {
        font-size: 0.85rem;
    }
    
    /* Single column layout on mobile */
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-heading {
        font-size: 1.05rem;
    }
    
    /* Improved mobile touch targets */
    .footer-nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .footer-contact-item {
        padding: 1rem;
    }
    
    .contact-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
    
    /* Social grid for mobile */
    .footer-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .social-link-v2 {
        padding: 1.25rem 1rem;
    }
    
    .social-link-v2 svg {
        width: 24px;
        height: 24px;
    }
    
    .social-label {
        font-size: 0.8rem;
    }
    
    /* Footer bottom stacking */
    .footer-bottom-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-legal-section {
        width: 100%;
    }
    
    .footer-payment-section {
        width: 100%;
        justify-content: flex-start;
    }
    
    /* Mobile back to top */
    .back-to-top {
        width: 52px;
        height: 52px;
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .footer-v2 {
        margin-top: 2.5rem;
    }
    
    .footer-main-container {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
    
    .footer-brand-section {
        margin-bottom: 1.75rem;
        padding-bottom: 1.25rem;
    }
    
    .footer-logo-v2 {
        font-size: 1.5rem;
    }
    
    .footer-brand-tagline {
        font-size: 0.8rem;
    }
    
    .footer-content-grid {
        gap: 1.75rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 0.85rem;
    }
    
    .footer-link-icon,
    .contact-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-value {
        font-size: 0.875rem;
    }
    
    .footer-copyright,
    .legal-link-v2,
    .payment-text {
        font-size: 0.75rem;
    }
    
    .payment-badge svg {
        width: 28px;
        height: 18px;
    }
    
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .footer-main-container {
        padding: 1.5rem 2rem;
    }
    
    .footer-brand-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .footer-content-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus states for keyboard navigation */
.footer-nav-link:focus,
.social-link-v2:focus,
.footer-contact-item:focus,
.legal-link-v2:focus,
.back-to-top:focus {
    outline: 2px solid rgba(139, 92, 246, 0.6);
    outline-offset: 3px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .footer-main-container,
    .footer-nav-link,
    .social-link-v2,
    .footer-contact-item,
    .back-to-top,
    .divider-ornament {
        animation: none;
        transition-duration: 0.05s;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer-main-container {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .footer-nav-link,
    .footer-contact-item,
    .social-link-v2 {
        border-width: 2px;
    }
}

/* ========================================
   MODALS
   ======================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Login Modal */
.login-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 420px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-bounce);
    border-radius: 30px;
}

.login-box.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.modal-content {
    padding: 2rem;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.875rem;
    opacity: 0.6;
    font-weight: 300;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-field {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    width: 100%;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    font-weight: 300;
}

.input-field:focus {
    outline: none;
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.input-field::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    color: white;
    font-weight: 500;
    margin-top: 0.5rem;
}

.modal-footer {
    text-align: center;
    margin-top: 1rem;
}

.guest-btn {
    background: none;
    border: none;
    font-size: 0.75rem;
    opacity: 0.6;
    cursor: pointer;
    color: white;
    transition: opacity var(--transition-normal);
    font-weight: 300;
    padding: 0.75rem;
}

.guest-btn:hover {
    opacity: 1;
}

/* Cart Modal */
.cart-box {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100%;
    z-index: 1000;
    transition: right var(--transition-smooth);
}

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

.cart-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
}

.close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    transition: all var(--transition-normal);
    line-height: 1;
}

.close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cart-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all var(--transition-normal);
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cart-item:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateX(-4px);
}

.cart-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
}

.total-label {
    opacity: 0.6;
    font-weight: 300;
}

.total-amount {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
}

.checkout-btn {
    width: 100%;
    padding: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    color: white;
    font-weight: 500;
}

.remove-btn {
    background: rgba(255, 50, 50, 0.2);
    border: 1px solid rgba(255, 50, 50, 0.3);
    color: #ff6b6b;
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 400;
}

.remove-btn:hover {
    background: rgba(255, 50, 50, 0.35);
    border-color: rgba(255, 50, 50, 0.5);
    transform: scale(1.05);
}

/* ========================================
   ENHANCED ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

.fade-in {
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Reset animations when content becomes active */
.content-box.active .product-name,
.content-box.active .product-description,
.content-box.active .edition-label,
.content-box.active .add-cart-btn,
.content-box.active .detail-item {
    opacity: 1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1366px) and (min-width: 1024px) {
    .image-wrapper {
        max-width: 480px;
    }
    
    .product-name {
        font-size: 3rem;
    }
    
    .info-card,
    .details-card {
        max-width: 22rem;
    }
}

@media (max-width: 1024px) {
    body {
        overflow-y: auto;
        min-height: 100vh;
    }
    
    .main-content {
        flex-direction: column;
        padding: 2rem 0;
        gap: 3rem;
        max-height: none;
    }
    
    .image-wrapper {
        max-width: 500px;
    }
    
    .info-card,
    .details-card {
        text-align: center;
    }
    
    .details-card .content-box {
        text-align: center;
    }
    
    .add-cart-btn {
        align-self: center;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }

    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .footer {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Hide navigation dots on tablet and below */
    .navigation-wrapper {
        display: none;
    }
    
    /* Show mobile scroll indicator */
    .mobile-scroll-indicator {
        display: flex;
    }
    
    .scroll-hint {
        display: flex;
    }
    
    /* Scrollable sections responsive */
    .section-title {
        font-size: 2.5rem;
    }
    
    .creation-step {
        flex: 0 0 300px;
    }
    

}

@media (max-width: 767px) {
    .header {
        margin-bottom: 0.75rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 1rem 0;
        gap: 2rem;
    }
    
    .image-wrapper {
        max-width: 400px;
    }

    .image-glow {
        filter: blur(100px);
    }

    .info-card,
    .details-card {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .product-name {
        font-size: 2.5rem;
    }
    
    .product-description {
        font-size: 0.875rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .footer {
        gap: 1rem;
        align-items: center;
        text-align: center;
        margin-top: 0.75rem;
    }
    
    .action-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .cart-box {
        max-width: 100%;
    }

    .dots-container {
        padding: 1rem 2rem;
        gap: 0.75rem;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile scroll indicator positioning */
    .mobile-scroll-indicator {
        right: 1rem;
    }
    
    .scroll-hint {
        bottom: 1.5rem;
    }
    
    .scroll-hint-text {
        font-size: 0.7rem;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
    
    /* Scrollable sections mobile */
    .scrollable-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .creation-step {
        flex: 0 0 280px;
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }

}

@media (max-width: 480px) {
    body {
        padding: 0.8rem 0.65rem;
    }
    
    .image-wrapper {
        max-width: 280px;
    }
    
    .product-name {
        font-size: 1.8rem;
    }
    
    .detail-value {
        font-size: 1.1rem;
    }
    
    .image-glow {
        filter: blur(80px);
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 260px;
        padding: 3.5rem 1.3rem 1.3rem;
    }
    
    .menu-toggle {
        padding: 0.4rem;
    }
    
    .menu-toggle span {
        width: 20px;
    }
    
    /* Scrollable sections small mobile */
    .section-title {
        font-size: 1.75rem;
    }
    
    .creation-step {
        flex: 0 0 260px;
        padding: 1.25rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.35rem;
    }
    
}

@media (max-height: 600px) and (orientation: landscape) {
    body {
        overflow-y: auto;
    }
    
    .main-content {
        padding: 1rem 0;
        gap: 1.5rem;
    }
    
    .image-wrapper {
        max-width: 300px;
    }
}