/* =====================================================
   LUXE INTIMATES - Main Stylesheet
   Author: LUXE Development Team
   Version: 1.0.0
   ===================================================== */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-bg: #ffffff;
    --secondary-bg: #fafafa;
    --accent-bg: #f5f5f5;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --hover-border: #d0d0d0;
    --blush-accent: #D4A5A5;
    --blush-light: #f5e6e6;
    --blush-dark: #c09090;
    
    /* Shadows */
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 20px 30px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Typography */
    --font-primary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 2rem;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1rem, 2vw, 1.25rem); }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--blush-accent);
}

/* ===== Container ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 165, 0.1);
    border: 1px solid var(--blush-accent);
    opacity: 0.5;
}

.cursor.hover {
    transform: scale(2);
}

.cursor-follower.hover {
    transform: scale(1.5);
    opacity: 0.3;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem var(--container-padding);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.logo-main {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.5em;
    margin-right: -0.5em;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.2em;
    color: var(--blush-accent);
    margin-top: 0.2rem;
}

.nav-logo:hover .logo-main {
    color: var(--blush-accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blush-accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-btn,
.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    position: relative;
}

.search-btn:hover,
.cart-btn:hover {
    color: var(--blush-accent);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--blush-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -5px);
}

/* ===== Search Modal ===== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 2000;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background: var(--primary-bg);
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-large);
    transform: translateY(-20px);
    transition: var(--transition-smooth);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--secondary-bg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--blush-accent);
    background: var(--primary-bg);
}

.search-submit {
    padding: 1rem 2rem;
    background: var(--blush-accent);
    color: white;
    border: none;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-submit:hover {
    background: var(--blush-dark);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

/* ===== Cart Sidebar ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--primary-bg);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--blush-accent);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quantity-btn:hover {
    border-color: var(--blush-accent);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--blush-accent);
    color: white;
    border: none;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.checkout-btn:hover {
    background: var(--blush-dark);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    transition: left 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 5rem 2rem;
    height: 100%;
    overflow-y: auto;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: var(--font-weight-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-footer {
    text-align: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--secondary-bg);
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,230,230,0.8) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: hero-fade-in 1.5s ease;
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.5em;
    margin-bottom: 1rem;
    margin-right: -0.5em;
}

.animate-text {
    overflow: hidden;
}

.animate-text .word {
    display: inline-block;
    animation: word-slide-up 0.8s ease both;
}

.animate-text .word:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes word-slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.3em;
    color: var(--blush-accent);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: var(--font-weight-light);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--blush-accent);
    color: white;
}

.btn-primary:hover {
    background: var(--blush-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--primary-bg);
}

/* ===== Hero Navigation ===== */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    pointer-events: all;
}

.hero-prev:hover,
.hero-next:hover {
    background: white;
    box-shadow: var(--shadow-medium);
}

.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    background: var(--blush-accent);
    width: 24px;
    border-radius: 4px;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--text-muted);
    margin: 0.5rem auto 0;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blush-accent);
    animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

/* ===== Sections ===== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.view-all {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blush-accent);
    position: relative;
}

.view-all::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.view-all:hover::after {
    transform: translateX(5px);
}

/* ===== Featured Categories ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.category-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.category-overlay h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.category-link {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    position: relative;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.category-card:hover .category-link::after {
    width: 100%;
}

/* ===== Products ===== */
.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--blush-accent);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--secondary-bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--blush-accent);
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.quick-view {
    padding: 0.8rem 2rem;
    background: var(--text-primary);
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-view:hover {
    background: var(--blush-accent);
}

.add-to-wishlist {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.add-to-wishlist svg {
    transition: var(--transition-fast);
}

.add-to-wishlist:hover svg {
    stroke: var(--blush-accent);
    fill: var(--blush-accent);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--blush-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-colors {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.color-swatch:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px var(--blush-accent);
}

.add-to-cart {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.add-to-cart:hover {
    background: var(--text-primary);
    color: white;
}

/* ===== About Section ===== */
.about-section {
    background: var(--secondary-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-large);
}

/* ===== Newsletter ===== */
.newsletter {
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--primary-bg) 100%);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--primary-bg);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--blush-accent);
}

.newsletter-submit {
    padding: 1rem 2rem;
    background: var(--text-primary);
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-submit:hover {
    background: var(--blush-accent);
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.newsletter-privacy a {
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--blush-accent);
    background: var(--blush-accent);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-methods img {
    height: 24px;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.payment-methods img:hover {
    opacity: 1;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 3000;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--primary-bg);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.loader-text {
    font-size: 2.5rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.8em;
    margin-right: -0.8em;
    animation: fade-in 1s ease;
}

.loader-subtext {
    font-size: 0.75rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.3em;
    color: var(--blush-accent);
    margin-top: 0.5rem;
    animation: fade-in 1s ease 0.2s both;
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--border-color);
    border-radius: 1px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: var(--blush-accent);
    width: 0;
    animation: loading-progress 2s ease-in-out;
}

@keyframes loading-progress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Custom Cursor ===== */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--blush-accent);
    mix-blend-mode: multiply;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    background: rgba(212, 165, 165, 0.1);
    border: 1px solid var(--blush-accent);
    opacity: 0.5;
}