/* ═══════════════════════════════════════════════════════════
   LOVESHOP - ELEGANT PURPLE & GOLD DESIGN
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Фиолетово-золотая палитра */
    --primary-purple: #8B5CF6;
    --deep-purple: #6D28D9;
    --light-purple: #A78BFA;
    --gold: #F59E0B;
    --light-gold: #FCD34D;
    --dark-gold: #D97706;
    
    /* Нейтральные */
    --bg-light: #FAF5FF;
    --bg-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --border-color: #E5E7EB;
    
    /* Градиенты */
    --gradient-purple: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    --gradient-elegant: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 50%, var(--gold) 100%);
    
    /* Шрифты */
    --font-elegant: 'Cormorant Garamond', serif;
    --font-modern: 'Raleway', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-modern);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    position: relative;
}

/* Элегантный фон */
.elegant-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

.site-header {
    background: var(--gradient-elegant);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.header-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
}

.site-header .container {
    position: relative;
    z-index: 1;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.elegant-title {
    font-family: var(--font-elegant);
    font-size: 4em;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.logo-subtitle {
    font-size: 1.2em;
    color: var(--light-gold);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-nav a:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-family: var(--font-elegant);
    font-size: 3.5em;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 20px;
}

.hero-title .accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3em;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.badge-icon {
    font-size: 1.5em;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */

section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-elegant);
    font-size: 2.8em;
    font-weight: 700;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 15px;
}

.section-title .accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   CATALOG
   ═══════════════════════════════════════════════════════════ */

.catalog {
    background: white;
}

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

.product-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--gradient-purple);
}

.product-badge.hot {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.product-badge.premium {
    background: var(--gradient-gold);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: var(--font-elegant);
    font-size: 1.6em;
    color: var(--deep-purple);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.rating {
    color: var(--gold);
    font-weight: 600;
}

.reviews {
    color: var(--text-gray);
}

/* ═══════════════════════════════════════════════════════════
   PROMO SECTION
   ═══════════════════════════════════════════════════════════ */

.promo-section {
    background: var(--gradient-elegant);
    position: relative;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.promo-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-content {
    padding: 25px;
    color: white;
}

.promo-content h3 {
    font-family: var(--font-elegant);
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--light-gold);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */

.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .lead-text {
    font-size: 1.4em;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
}

.feature-number {
    display: block;
    font-family: var(--font-elegant);
    font-size: 2.5em;
    font-weight: 700;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.feature-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.9em;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   DELIVERY SECTION
   ═══════════════════════════════════════════════════════════ */

.delivery {
    background: var(--bg-light);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.delivery-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.delivery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
}

.delivery-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.delivery-card h3 {
    font-family: var(--font-elegant);
    font-size: 1.5em;
    color: var(--deep-purple);
    margin-bottom: 15px;
}

.delivery-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   MIRRORS SECTION
   ═══════════════════════════════════════════════════════════ */

.mirrors {
    background: white;
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mirror-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bg-light);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mirror-link:hover {
    background: white;
    border-color: var(--primary-purple);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
}

.mirror-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mirror-status.online {
    background: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    animation: pulse-online 2s ease-in-out infinite;
}

@keyframes pulse-online {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.mirror-text {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
    font-family: monospace;
    font-size: 1.1em;
}

.mirror-badge {
    padding: 5px 12px;
    background: var(--gradient-purple);
    color: white;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.mirrors-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1em;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   CONTACTS SECTION
   ═══════════════════════════════════════════════════════════ */

.contacts {
    background: var(--bg-light);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: var(--font-elegant);
    font-size: 1.5em;
    color: var(--deep-purple);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-gray);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--gradient-elegant);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.footer-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-elegant);
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--light-gold);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--light-gold);
    padding-left: 5px;
}

.footer-keywords {
    font-size: 0.9em;
    opacity: 0.7;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .elegant-title {
        font-size: 2.5em;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-nav a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .elegant-title {
        font-size: 2em;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

