/* =====================================================
   COMPLETE STRUCTURED CSS - ALL ORIGINAL STYLES PRESERVED
   ===================================================== */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
    transition: padding-top 0.3s ease;
}

body.header-compact {
    padding-top: 80px;
}

body.loading {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COMMON UI ELEMENTS ===== */
/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
    background: transparent;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-bottom-color: #007bff;
}

.form-control.textarea {
    border: 1px solid #e9ecef;
    border-radius: 2px;
    padding: 16px;
    min-height: 120px;
    resize: vertical;
    margin-top: 5px;
}

.form-control.textarea:focus {
    border-color: #007bff;
}

/* Messages */
.message {
    padding: 20px;
    border-radius: 2px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-container.hidden {
    transform: translateY(-100%);
}

.header-container.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 58415;
}

.header-container.scrolled .header {
    padding: 8px 0;
    font-size: 12px;
}

.header-container.scrolled .navbar {
    padding: 10px 0;
}

.header-container.scrolled .logo {
    font-size: 20px;
}

.header-container.scrolled .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

ul.nav-links > li > a {
    font-size: 16px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    width: 38%;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ccc376;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 35px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    width: 250px;
    font-size: 13px;
    outline: none;
    background: #f8f9fa;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #667eea;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.7;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-icon:hover {
    opacity: 1;
}

i.fa-solid.fa-cart-shopping {
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu span {
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
}

/* ===== COMPONENT PLACEHOLDERS ===== */
#header-placeholder.loading {
    height: 120px;
    background: linear-gradient(90deg, #f0f0f0 25%, rgba(255,255,255,0) 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: placeholderShimmer 1.5s infinite;
    position: relative;
}

#header-placeholder.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #667eea;
    opacity: 0.1;
}

#header-placeholder.loading::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

#footer-placeholder.loading {
    height: 400px;
    background: linear-gradient(90deg, #333 25%, rgba(85,85,85,0) 50%, #333 75%);
    background-size: 200% 100%;
    animation: placeholderShimmer 1.5s infinite;
    margin-top: 80px;
}

@keyframes placeholderShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.component-error {
    padding: 20px;
    text-align: center;
    color: #999;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 4px;
    margin: 10px;
    font-size: 14px;
}

#header-placeholder,
#footer-placeholder {
    transition: height 0.3s ease;
}

#header-placeholder:not(.loading),
#footer-placeholder:not(.loading) {
    height: auto;
}

#header-placeholder:empty,
#footer-placeholder:empty {
    min-height: 60px;
    background: #fafafa;
}

/* ===== HERO SECTIONS ===== */
.hero {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    min-height: 500px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDeform 12s ease-in-out infinite;
    z-index: -1;
}

@keyframes gridDeform {
    0%, 100% { 
        transform: perspective(1000px) rotateX(0deg) skew(0deg);
        background-size: 60px 60px;
    }
    50% { 
        transform: perspective(1000px) rotateX(1deg) skew(0.5deg);
        background-size: 65px 55px;
    }
}

.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.contact-hero,
.faq-hero {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.3s;
}

.about-hero .hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    background: linear-gradient(166deg, #393939 0%, #dfd04e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.6s;
}

.about-hero .hero-subtitle {
    z-index: 41554;
    font-size: 1.25rem;
    color: #5f5f5f;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.8s backwards;
    position: relative;
    opacity: 1;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sd {
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(166deg, #000000 0%, #fff06dba 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.5)); }
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}





/* ===== VIDEO SHOWCASE SECTION ===== */
.video-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== VIDEO CONTENT ===== */
.video-content {
    text-align: center;
}

.video-header {
    margin-bottom: 40px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c3e50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.video-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-frame:hover {
    transform: translateY(-5px);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.play-button {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #34495e;
    transform: scale(1.1);
}

.play-button i {
    margin-left: 2px;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: #a5a5a5;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== VIDEO FEATURES ===== */
.video-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-item .feature-icon {
    width: 45px;
    height: 45px;
    background: #2c3e50;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .video-header h2 {
        font-size: 32px;
    }
    
    .video-features {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 60px 0;
    }
    
    .video-container {
        padding: 0 15px;
        gap: 35px;
    }
    
    .video-header h2 {
        font-size: 28px;
    }
    
    .video-frame {
        max-width: 250px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .video-stats {
        padding: 15px;
        margin-top: 20px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .feature-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        padding: 40px 0;
    }
    
    .video-container {
        padding: 0 10px;
        gap: 30px;
    }
    
    .video-header h2 {
        font-size: 24px;
    }
    
    .video-frame {
        max-width: 220px;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat {
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ===== FLOATING ICONS TRAIN ANIMATION ===== */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(44, 62, 80, 0.15);
    font-size: 24px;
    opacity: 0;
    transition: color 0.3s ease;
}

/* ===== GOLDEN ICONS ===== */
.floating-icon.golden {
    color: rgba(184, 134, 11, 0.18) !important;
}

/* ===== ЛЕВАЯ СТОРОНА ПАРОВОЗИК (ПРЯМО У ЛЕВОГО КРАЯ ВИДЕО) ===== */
.icon-1 {
    left: 15%;
    font-size: 26px;
    color: rgba(44, 62, 80, 0.2);
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: 0s;
}

.icon-2 {
    left: 14%;
    font-size: 20px;
    color: rgba(52, 152, 219, 0.17);
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: -1s;
}

.icon-3 {
    left: 16%;
    font-size: 22px;
    color: rgba(44, 62, 80, 0.18);
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: -2s;
}

.icon-4 {
    left: 13%;
    font-size: 18px;
    color: rgba(52, 152, 219, 0.16);
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: -3s;
}

.icon-5 {
    left: 17%;
    font-size: 24px;
    color: rgba(155, 89, 182, 0.15);
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: -4s;
}

.icon-6 {
    left: 12%;
    font-size: 16px;
    color: rgba(52, 152, 219, 0.14);
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: -5s;
}

.icon-7 {
    left: 18%;
    font-size: 20px;
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: -6s;
}

.icon-8 {
    left: 15%;
    font-size: 19px;
    color: rgba(44, 62, 80, 0.16);
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: -7s;
}

.icon-9 {
    left: 11%;
    font-size: 17px;
    animation: trainMoveLeft 8s linear infinite;
    animation-delay: -0.5s;
}

/* ===== ПРАВАЯ СТОРОНА ПАРОВОЗИК (ПРЯМО У ПРАВОГО КРАЯ ВИДЕО) ===== */
.icon-10 {
    right: 15%;
    font-size: 25px;
    color: rgba(44, 62, 80, 0.19);
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -0.5s;
}

.icon-11 {
    right: 14%;
    font-size: 21px;
    color: rgba(52, 152, 219, 0.16);
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -1.5s;
}

.icon-12 {
    right: 16%;
    font-size: 23px;
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -2.5s;
}

.icon-13 {
    right: 13%;
    font-size: 17px;
    color: rgba(52, 152, 219, 0.17);
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -3.5s;
}

.icon-14 {
    right: 17%;
    font-size: 19px;
    color: rgba(155, 89, 182, 0.14);
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -4.5s;
}

.icon-15 {
    right: 12%;
    font-size: 22px;
    color: rgba(231, 76, 60, 0.15);
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -5.5s;
}

.icon-16 {
    right: 18%;
    font-size: 16px;
    color: rgba(52, 152, 219, 0.13);
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -6.5s;
}

.icon-17 {
    right: 15%;
    font-size: 20px;
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -7.5s;
}

.icon-18 {
    right: 11%;
    font-size: 18px;
    color: rgba(44, 62, 80, 0.15);
    animation: trainMoveRight 8s linear infinite;
    animation-delay: -1s;
}

/* ===== АНИМАЦИИ ДВИЖЕНИЯ ===== */
@keyframes trainMoveLeft {
    0% {
        top: -8%;
        opacity: 0;
        transform: translateX(-3px);
    }
    8% {
        opacity: 0.7;
        transform: translateX(0px);
    }
    92% {
        opacity: 0.7;
        transform: translateX(0px);
    }
    100% {
        top: 108%;
        opacity: 0;
        transform: translateX(3px);
    }
}

@keyframes trainMoveRight {
    0% {
        top: -8%;
        opacity: 0;
        transform: translateX(3px);
    }
    8% {
        opacity: 0.7;
        transform: translateX(0px);
    }
    92% {
        opacity: 0.7;
        transform: translateX(0px);
    }
    100% {
        top: 108%;
        opacity: 0;
        transform: translateX(-3px);
    }
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ ===== */

/* Эффект мерцания для золотых иконок */
.floating-icon.golden {
    animation-name: trainMoveLeftGolden, sparkle;
    animation-duration: 8s, 2s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

.icon-12.golden,
.icon-17.golden {
    animation-name: trainMoveRightGolden, sparkle;
    animation-duration: 8s, 2s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

@keyframes trainMoveLeftGolden {
    0% {
        top: -8%;
        opacity: 0;
        transform: translateX(-3px);
    }
    8% {
        opacity: 0.8;
        transform: translateX(0px);
    }
    92% {
        opacity: 0.8;
        transform: translateX(0px);
    }
    100% {
        top: 108%;
        opacity: 0;
        transform: translateX(3px);
    }
}

@keyframes trainMoveRightGolden {
    0% {
        top: -8%;
        opacity: 0;
        transform: translateX(3px);
    }
    8% {
        opacity: 0.8;
        transform: translateX(0px);
    }
    92% {
        opacity: 0.8;
        transform: translateX(0px);
    }
    100% {
        top: 108%;
        opacity: 0;
        transform: translateX(-3px);
    }
}

@keyframes sparkle {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.4);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Десктоп */
@media (min-width: 969px) {
    .floating-icons {
        display: block;
    }
}

/* Планшеты */
@media (min-width: 769px) and (max-width: 968px) {
    .floating-icons {
        display: block;
    }
    
    .floating-icon {
        font-size: 20px;
    }
    
    /* Быстрее движение */
    .floating-icon {
        animation-duration: 6s !important;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .floating-icons {
        display: block;
    }
    
    .floating-icon {
        font-size: 16px;
    }
    
    /* Еще быстрее движение */
    .floating-icon {
        animation-duration: 5s !important;
    }
    
    /* Прямо у краев видео на мобильном */
    .icon-1, .icon-2, .icon-3, .icon-4, .icon-5, .icon-6, .icon-7, .icon-8, .icon-9 {
        left: 20%;
    }
    
    .icon-10, .icon-11, .icon-12, .icon-13, .icon-14, .icon-15, .icon-16, .icon-17, .icon-18 {
        right: 20%;
    }
}

/* Маленькие мобильные */
@media (max-width: 480px) {
    .floating-icon {
        font-size: 14px;
    }
    
    /* Быстрое движение */
    .floating-icon {
        animation-duration: 4s !important;
    }
    
    /* Прямо у краев видео */
    .icon-1, .icon-2, .icon-3, .icon-4, .icon-5, .icon-6, .icon-7, .icon-8, .icon-9 {
        left: 25%;
    }
    
    .icon-10, .icon-11, .icon-12, .icon-13, .icon-14, .icon-15, .icon-16, .icon-17, .icon-18 {
        right: 25%;
    }
    
    /* Скрываем некоторые иконки для производительности */
    .icon-6, .icon-8, .icon-9, .icon-14, .icon-16, .icon-18 {
        display: none;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .floating-icon {
        font-size: 12px;
    }
    
    /* Очень быстрое движение */
    .floating-icon {
        animation-duration: 3s !important;
    }
    
    /* Прямо у краев видео */
    .icon-1, .icon-3, .icon-5, .icon-7 {
        left: 30%;
    }
    
    .icon-10, .icon-12, .icon-15, .icon-17 {
        right: 30%;
    }
    
    /* Показываем только основные иконки */
    .icon-1, .icon-3, .icon-5, .icon-7, .icon-10, .icon-12, .icon-15, .icon-17 {
        display: block;
    }
    
    .icon-2, .icon-4, .icon-6, .icon-8, .icon-9, .icon-11, .icon-13, .icon-14, .icon-16, .icon-18 {
        display: none;
    }
}

/* ===== HERO HEADER STRIPE ===== */
.hero-header-stripe {
    position: relative;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.stripe-line {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #c7c038 10%, 
        #dfd04e 30%, 
        #fff06d 50%, 
        #dfd04e 70%, 
        #c7c038 90%, 
        transparent 100%
    );
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.stripe-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stripe-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.stripe-text i {
    color: #c7c038;
    font-size: 26px;
    animation: pulse 2s ease-in-out infinite;
}

.stripe-text span {
    position: relative;
    background: linear-gradient(45deg, #e7ca3b, #34495e, #2c3e50);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1); 
    }
}

@keyframes textGradient {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

/* ===== RESPONSIVE STYLES FOR STRIPE ===== */
@media (max-width: 768px) {
    .hero-header-stripe {
        margin-bottom: 20px;
    }
    
    .stripe-text {
        font-size: 12px;
        gap: 6px;
        text-align: center;
        justify-content: center;
    }
    
    .stripe-text i {
        font-size: 14px;
    }
    
    .stripe-line {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero-header-stripe {
        margin-bottom: 15px;
    }
    
    .stripe-text {
        font-size: 11px;
        gap: 5px;
    }
    
    .stripe-text i {
        font-size: 13px;
    }
    
    .stripe-text span {
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .stripe-text {
        font-size: 10px;
        flex-direction: column;
        gap: 3px;
    }
    
    .stripe-text i {
        font-size: 12px;
    }
}

/* ===== CTA BUTTON ===== */
.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 20%, #d4d4d45c 40%, #f0f0f0 60%, #c0c0c02b 80%, #e8e8e8 100%);
    color: #333;
    border: 2px solid #dbdbdb;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 1.1s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        transparent 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    border-radius: 50px;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        #f0f0f0 0%, 
        #ffffff 20%, 
        #e0e0e0 40%, 
        #f8f8f8 60%, 
        #d0d0d0 80%, 
        #f0f0f0 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, 
        #d0d0d0 0%, 
        #e8e8e8 20%, 
        #c8c8c8 40%, 
        #e0e0e0 60%, 
        #b8b8b8 80%, 
        #d0d0d0 100%);
}

.cta-button span {
    position: relative;
    z-index: 2;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover span {
    transform: translateX(5px);
}

/* ===== PRODUCT ELEMENTS ===== */
.hero-product {
    text-align: center;
    border-radius: 20px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.hero-product:hover .cst2 {
    transform: scale(1.05);
}

.product-image {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.secondbl{
    height: 350px !important;
}

.product-logo {
    border-radius: 8px;
    padding: 20px 30px;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffffff 100%, #fffa6b 99%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffea1000;
    background-clip: text;
    text-shadow: 2px 2px 4px rgb(255 255 255 / 30%);
    line-height: 1;
    margin-bottom: 8px;
}

.logo-subtext {
    font-size: 18px;
    background: linear-gradient(135deg, #ffed4e 0%, #fff700 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-product h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-product p {
    font-size: 28px;
    color: #666;
    font-weight: bold;
}

.hero-product {
    /* ... существующие стили ... */
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(2deg); 
    }
}

.cst2 {
    transition: transform 0.3s ease;
}

.cst2 {
    animation: imageGlow 3s ease-in-out infinite alternate;
}

@keyframes imageGlow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); 
    }
    100% { 
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6)); 
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #fbfbfd;
}

.section-title,
.similar-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-hero .section-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    color: #1d1d1f;
}

.similar-title {
    font-size: 24px;
    margin-bottom: 5px;
    text-align: left;
}

.similar-subtitle {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* ===== FEATURES SECTION ===== */
.features {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature:nth-child(1).animate { animation-delay: 0.1s; }
.feature:nth-child(2).animate { animation-delay: 0.3s; }
.feature:nth-child(3).animate { animation-delay: 0.5s; }

.feature:hover {
    transform: translateY(-10px) scale(1.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1d1f1d 0%, #213845 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}
.feature:nth-child(2) .feature-icon {
    animation-delay: -1s;
}

.feature:nth-child(3) .feature-icon {
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== VALUES & TEAM SECTIONS ===== */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #1d1d1f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.value-description {
    color: #86868b;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.member-role {
    font-size: 1rem;
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-bio {
    color: #86868b;
    line-height: 1.6;
}

/* ===== PRODUCTS GRID ===== */
.best-selling, 
.similar-products {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.products-grid, 
.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 32px;
}

.similar-grid {
    gap: 25px;
}

.product-card, 
.similar-product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.similar-product {
    border-radius: 8px;
}

.product-card:hover, 
.similar-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.similar-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card-image, 
.similar-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.similar-image {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    font-size: 12px;
    color: #666;
    padding: 15px;
}

/* Product Card Specific Gradients */
.product-card[data-id="1"] .product-card-image {
    background: linear-gradient(135deg, #685f0d 0%, #193447 100%);
    height: 250px;
    font-size: 24px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-card[data-id="2"] .product-card-image {
    background: linear-gradient(135deg, #193244 0%, #193245 100%);
    height: 250px;
    font-size: 24px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-card[data-id="3"] .product-card-image {
    background: linear-gradient(135deg, #213a4c 0%, #685f0d 100%);
    height: 250px;
    font-size: 24px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 192, 56, 0.055) 0%, #b3424200 70%);
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-card-image small {
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.9;
}

.product-info, 
.similar-info {
    padding: 20px;
}

.similar-info {
    padding: 15px;
}

.product-name, 
.similar-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.similar-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.product-price, 
.similar-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price, 
.similar-price {
    font-size: 18px;
    font-weight: 700;
    color: #020202;
}

.similar-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.stock-status, 
.similar-stock {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
}

span.stock-status.red {
    color: red;
}

.similar-stock {
    font-size: 10px;
    color: #2e7d2e;
}

span.product-volume {
    FONT-SIZE: 12px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
    max-width: 100%;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* ===== MAIN CONTAINERS ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
}

.content-area {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===== RESULTS HEADER & SORTING ===== */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.results-count {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-by span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    background: white;
    min-width: 160px;
    outline: none;
}

.sort-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

/* ===== ADD TO CART BUTTONS ===== */
.add-to-cart-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.add-to-cart-btn::after {
    content: '🛒';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover::after {
    transform: translateY(-50%) scale(1);
}

/* Product-specific button colors */
.product-card[data-id="1"] .add-to-cart-btn {
    background: linear-gradient(135deg, #000000 0%, #263449 100%);
}

.product-card[data-id="1"] .add-to-cart-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.product-card[data-id="2"] .add-to-cart-btn {
    background: linear-gradient(135deg, #243145 0%, #243246 100%);
}

.product-card[data-id="2"] .add-to-cart-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.product-card[data-id="3"] .add-to-cart-btn {
    background: linear-gradient(135deg, #223a4c 0%, #2b2e30 100%);
}

.product-card[data-id="3"] .add-to-cart-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* ===== PRODUCT PAGE ELEMENTS ===== */
.share-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.product-image-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    max-width: 400px;
    height: 480px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.image-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #333;
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars, 
.rating-stars {
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
}

.rating-text, 
.review-count {
    font-size: 14px;
    color: #666;
}

.stock-badge {
    background: #e8f5e8;
    color: #2e7d2e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-left: auto;
}

.product-price {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* ===== PRODUCT OPTIONS ===== */
.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-label, 
.quantity-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-swatches {
    display: flex;
    gap: 8px;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.color-swatch.active {
    border-color: #333;
    transform: scale(1.1);
}

.swatch-blue { background-color: #4a90e2; }
.swatch-gray { background-color: #9b9b9b; }
.swatch-green { background-color: #7ed321; }

.size-options {
    display: flex;
    gap: 8px;
}

.size-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.size-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: background 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    border: none;
    padding: 8px 12px;
    width: 50px;
    text-align: center;
    font-size: 14px;
    outline: none;
    height: 36px;
}

input.qty-input::-webkit-outer-spin-button,
input.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.add-to-cart {
    flex: 1;
    background: #333;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #1a1a1a;
}

.wishlist-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    border-color: #333;
    color: #333;
}

.shipping-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* ===== TABS SECTION ===== */
.tabs-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 0;
    margin-right: 40px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #333;
    border-bottom-color: #333;
    font-weight: 500;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== REVIEWS ===== */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.big-rating {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.write-review {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.write-review:hover {
    border-color: #333;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
}

.review:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.reviewer-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-rating {
    color: #333;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.load-more {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    margin: 40px auto 0;
    display: block;
    transition: all 0.3s ease;
}

.load-more:hover {
    border-color: #333;
}

/* ===== DETAILS TAB ===== */
.details-content {
    max-width: 800px;
}

.details-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.details-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 25px 0;
}

.features-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.features-list li:before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== CART PAGE ===== */
.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.page-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.cart-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    animation: fadeIn 0.5s ease forwards;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item.removing {
    animation: fadeOut 0.3s ease forwards;
}

.item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    text-align: center;
    font-weight: 600;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.item-options {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.color-gray { background-color: #9b9b9b; }
.color-blue { background-color: #4a90e2; }
.color-green { background-color: #7ed321; }

.item-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 20px;
    min-width: 70px;
    text-align: right;
}

.remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #e74c3c;
}

/* ===== ORDER SUMMARY ===== */
.order-summary {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-label {
    color: #666;
}

.summary-value {
    color: #333;
    font-weight: 500;
}

.summary-total {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 20px;
}

.summary-total .summary-label,
.summary-total .summary-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.checkout-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 25px;
}

.checkout-btn:hover {
    background: #1a1a1a;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.continue-shopping {
    width: 100%;
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    border-color: #333;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-cart h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.empty-cart p {
    font-size: 16px;
    margin-bottom: 30px;
}

.shop-now-btn {
    background: #333;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.shop-now-btn:hover {
    background: #1a1a1a;
}

/* ===== CART SIDEBAR ===== */
#cartSidebar {
    position: fixed !important;
    top: 0 !important;
    right: -400px !important;
    width: 400px !important;
    height: calc(var(--vh, 1vh) * 100) !important; /* Используем переменную */
    background: white !important;
    z-index: 910999 !important;
    transition: right 0.3s ease !important;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1) !important;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    #cartSidebar {
        width: 100% !important;
        right: -100% !important;
        height: calc(var(--vh, 1vh) * 100) !important;
    }
    
    #cartSidebar.active {
        right: 0 !important;
    }
}

#cartSidebar.active {
    right: 0 !important;
}

#cartOverlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.5) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

#cartOverlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #333;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-cart-message p {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.empty-cart-message small {
    font-size: 14px;
    color: #999;
}

.cart-item-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-mini:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
    display: flex;
    align-items: center;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-controls .qty-btn {
    background: #f5f5f5;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-controls .qty-btn:hover {
    background: #e0e0e0;
}

.qty {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    min-width: 20px;
    text-align: center;
}

.item-controls .remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 2px;
    transition: color 0.3s ease;
}

.item-controls .remove-btn:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.cart-total {
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.cart-total strong {
    font-weight: 600;
}

.cart-footer .checkout-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-footer .checkout-btn:hover {
    background: #1a1a1a;
}

.continue-shopping-btn {
    width: 100%;
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.continue-shopping-btn:hover {
    border-color: #333;
    background: #f8f9fa;
    transform: translateY(-1px);
}

.continue-shopping-btn::before {
    content: "←";
    font-size: 16px;
    font-weight: bold;
}

.empty-cart-continue {
    margin-top: 20px !important;
    background: linear-gradient(135deg, #1b2a35 0%, #00243d 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
}

.empty-cart-continue:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4) !important;
}

.empty-cart-continue::before {
    content: "🛍️" !important;
    font-size: 16px !important;
}

body[data-page="cart"] .cart-sidebar,
body[data-page="cart"] .cart-overlay {
    display: none !important;
}

.cart-page .cart-sidebar,
.cart-page .cart-overlay {
    display: none !important;
}

/* ===== PARADISE SECTION ===== */
.paradise-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.paradise-content {
    position: relative;
    z-index: 2;
}

.paradise-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.paradise-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
}

.steps-list {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px 25px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #333;
}

.step:hover {
    transform: translateX(10px);
    background: #fff;
    border-color: #d3d3d3;
    box-shadow: 0 10px 30px rgba(255, 110, 199, 0.15);
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #ffe73e61, #bfbfbf);
    transition: width 0.3s ease;
}

.step:hover::before {
    width: 100%;
    opacity: 0.1;
}

.step strong {
    color: #4b4b46;
    font-size: 18px;
    min-width: 120px;
}

.step::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff6ec7, #ff9a8b);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.step:hover::after {
    opacity: 0.3;
    transform: translateY(-50%) scale(1.2);
}

.step:nth-child(1)::after { 
    content: '\f49e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #213945;
    background: none;
    opacity: 1;
}
.step:nth-child(2)::after { 
    content: '\f5aa';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #213945;
    background: none;
    opacity: 1;
}
.step:nth-child(3)::after { 
    content: '\f25a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #213945;
    background: none;
    opacity: 1;
}
.step:nth-child(4)::after { 
    content: '\f2dc';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #213945;
    background: none;
    opacity: 1;
}

.paradise-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paradise-product {
    background: linear-gradient(135deg, #272727 0%, #000000 100%);
    width: 300px;
    height: 300px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgb(0 0 0 / 30%);
}

.paradise-product::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.paradise-product small {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ===== PARADISE VIDEO STYLES ===== */
.paradise-video-container {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #272727 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.paradise-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.paradise-video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    background: #000;
    object-fit: cover;
}

.video-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.paradise-video-container:hover .video-label {
    opacity: 1;
}

/* ===== ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ PARADISE SECTION ===== */
.paradise-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.paradise-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .paradise-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .paradise-video-container {
        width: 280px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .paradise-section {
        padding: 60px 15px;
        gap: 40px;
    }
    
    .paradise-video-container {
        width: 250px;
        height: 350px;
    }
    
    .video-label {
        bottom: 12px;
        padding: 6px 14px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .paradise-section {
        padding: 40px 10px;
        gap: 30px;
    }
    
    .paradise-video-container {
        width: 220px;
        height: 320px;
    }
    
    .video-label {
        bottom: 10px;
        padding: 5px 12px;
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .paradise-video-container {
        width: 200px;
        height: 300px;
    }
    
    .video-label {
        bottom: 8px;
        padding: 4px 10px;
        font-size: 9px;
    }
}

/* ===== УБИРАЕМ СТАРЫЕ АНИМАЦИИ ===== */
/* Отключаем все анимации paradise-product */
.paradise-product {
    animation: none !important;
}

/* Убираем hover эффекты если они мешают */
.paradise-image:hover .paradise-video-container {
    /* Только легкий подъем, никаких сложных анимаций */
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ ===== */
.paradise-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 0, 0, 0.1) 100%
    );
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

/* Стили для загрузки видео */
.paradise-video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: videoLoading 1s linear infinite;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes videoLoading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Показываем loader только когда видео не загружено */
.paradise-video-container.loading::after {
    opacity: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #1d1d1f;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    max-width: 100%;
    margin: 80px auto;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    z-index: -1;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    transition: all 0.8s ease;
}

.newsletter p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.8s ease;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter.animate h2 {
    opacity: 1;
    transform: translateY(0);
}

.newsletter.animate p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.newsletter.animate .newsletter-form {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #667eea;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.newsletter-button, 
.newsletter-submit {
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-submit {
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.newsletter-button:hover::before {
    width: 300px;
    height: 300px;
}

.newsletter-button:hover, 
.newsletter-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section h3, 
.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons, 
.social-links {
    display: flex;
    gap: 15px;
}

.social-links {
    gap: 10px;
}

.social-icon, .social-link {
    width: 40px;
    height: 40px;
    background: #020203;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: #555;
}

.social-icon:hover {
    background: #130c1b;
}

.social-link:hover {
    background: #666;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 14px;
}

.payment-methods, 
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-icons {
    gap: 8px;
    margin-top: 15px;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #333;
}

.payment-icons .payment-icon {
    width: 32px;
    height: 20px;
    border-radius: 2px;
    font-size: 8px;
}

i.fa-solid.fa-user {
    font-size: 20px;
}

/* ===== FAQ PAGE SPECIFIC ===== */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.category-card.active {
    border-color: #007bff;
    background: #f8f9ff;
}

.category-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.faq-items {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f8f9ff;
    color: #007bff;
}

.question-text {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
}

.faq-question.active .question-text {
    color: #007bff;
}

.faq-icon {
    font-size: 1.2rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: #007bff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.faq-answer.active {
    max-height: 1000px;
}

.answer-content {
    padding: 25px 30px;
    color: #6c757d;
    line-height: 1.6;
}

.answer-content p {
    margin-bottom: 15px;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.answer-content li {
    margin-bottom: 8px;
}

.highlight {
    background: #fff3cd;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin: 15px 0;
}

.steps {
    background: #d4edda;
    padding: 15px 30px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
    margin: 15px 0;
}

.warning {
    background: #f8d7da;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #dc3545;
    margin: 15px 0;
}

.faq-search {
    margin-bottom: 40px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
}

.faq-item.hidden {
    display: none;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    display: none;
}

.no-results.show {
    display: block;
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 50px 40px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.contact-item {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 20px;
    margin-right: 20px;
    margin-top: 2px;
    color: #007bff;
    font-size: 16px;
}

.contact-details h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #2c3e50;
    color: white;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #007bff;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-container .animate-in.visible {
    animation: staggerUp 0.6s ease forwards;
}

@keyframes staggerUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-container .animate-in:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-container .animate-in:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-container .animate-in:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-container .animate-in:nth-child(4) {
    transition-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.hero-content, 
.feature, 
.product-card {
    animation: fadeInUp 0.8s ease forwards;
}

.feature:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3) {
    animation-delay: 0.4s;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.product-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.loader-image {
    width: 340px;
    height: 340px;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* ===== PARTICLE EFFECT ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== RESPONSIVE HEADER STYLES (Mobile Navigation) ===== */
.mobile-search {
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.mobile-search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: #f8f9fa;
}

.mobile-search input:focus {
    border-color: #667eea;
}

/* ===== SCROLLED STATE SPECIFIC ===== */
.header-container.scrolled .header {
    padding: 4px 0;
    font-size: 11px;
}

.header-container.scrolled .navbar {
    padding: 8px 0;
}

.header-container.scrolled .logoOne {
    height: 100%;
}

/* ===== LOGO IMAGE SPECIFIC ===== */
.logoOne {
    height: 40px;
    width: auto;
    max-width: 150px;
    transition: all 0.3s ease;
}

img.logoOne {
    width: 140px;
    height: 100%;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .sd {
        width: 90%;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-product {
        max-width: 350px;
        padding: 25px;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .search-box input:focus {
        width: 220px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        gap: 3px;
        padding: 8px;
        z-index: 1002;
    }

    .search-box input {
        width: 180px;
    }

    .nav-right {
        gap: 15px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin: 30px auto;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 60px auto;
    }

    .products-grid, 
    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .similar-grid {
        gap: 15px;
    }

    .paradise-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 15px;
    }

    .cart-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-summary {
        position: static;
    }

    .share-btn {
        display: none;
    }

    .tab-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-button {
        white-space: nowrap;
        margin-right: 30px;
    }

    body {
        padding-top: 100px;
    }
    
    body.header-compact {
        padding-top: 70px;
    }
    
    .header-container.scrolled .header {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .header-container.scrolled .navbar {
        padding: 8px 0;
    }
    
    .header-container.scrolled .mobile-nav {
        top: 60px;
    }

    #header-placeholder.loading {
        height: 100px;
    }
    
    #footer-placeholder.loading {
        height: 300px;
    }

    #cartSidebar {
        width: 100% !important;
        right: -100% !important;
    }
    
    #cartSidebar.active {
        right: 0 !important;
        z-index: 999999 !important;
    }

    .cart-footer {
        padding: 20px;
        border-top: 1px solid #f0f0f0;
        background: #fafafa;
    }

    .logoOne {
        height: 35px;
        max-width: 120px;
    }

    .header {
        padding: 6px 0;
        font-size: 12px;
    }

    .navbar {
        padding: 12px 0;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .search-box {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .hero {
        min-height: auto;
        padding: 20px 15px;
        margin: 20px auto;
    }
    
    .sd {
        flex-direction: column;
        width: 100%;
        gap: 30px;
        text-align: center;
        align-items: center;
        margin-top: 25px;
        margin-bottom: 26px;
    }
    
    .hero-content {
        width: 100%;
        order: 1;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        margin: 0 auto;
        display: inline-flex;
    }
    
    .hero-image {
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .hero-product {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .product-image {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .logo-text {
        font-size: 24px;
        line-height: 1.1;
    }
    
    .logo-subtext {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .hero-product h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #333;
    }
    
    .hero-product p {
        font-size: 24px;
        color: #666;
        font-weight: bold;
        margin: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 80px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        margin: 40px auto;
        padding: 0 15px;
    }

    .best-selling, 
    .similar-products {
        padding: 0 15px;
    }

    .products-grid, 
    .similar-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .similar-grid {
        gap: 12px;
    }

    .product-card-image, 
    .similar-image {
        height: 150px;
        font-size: 12px;
        padding: 15px;
    }

    .paradise-section {
        padding: 35px 15px;
        gap: 30px;
    }

    .paradise-product {
        width: 250px;
        height: 300px;
        font-size: 14px;
    }

    .newsletter {
        padding: 25px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .product-title {
        font-size: 22px;
    }

    .product-price {
        font-size: 26px;
    }

    .main-image {
        height: 350px;
        max-width: 100%;
    }

    .reviews-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .cart-container {
        padding: 15px;
    }

    .cart-section, 
    .order-summary {
        padding: 20px;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 15px;
    }

    .item-image {
        width: 60px;
        height: 60px;
    }

    .quantity-controls {
        margin: 0;
    }

    .results-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .contact-hero,
    .faq-hero {
        padding: 100px 0 60px;
    }

    .contact-section,
    .faq-section {
        padding: 60px 0;
    }

    .contact-container,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
        padding: 0 15px;
    }

    .contact-info,
    .contact-form {
        padding: 40px 30px;
    }

    .contact-item {
        margin-bottom: 30px;
    }

    .contact-icon {
        margin-right: 15px;
    }

    .faq-categories {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .category-card {
        padding: 25px 20px;
    }

    .faq-question {
        padding: 20px 15px;
    }

    .answer-content {
        padding: 20px 15px;
    }

    .question-text {
        font-size: 0.95rem;
    }

    body {
        padding-top: 90px;
    }

    .header {
        padding: 8px 15px;
        font-size: 11px;
    }

    .navbar {
        padding: 10px 0;
    }

    .logoOne {
        height: 32px;
        max-width: 100px;
    }

    .nav-icon {
        width: 18px;
        height: 18px;
    }

    .cart-count {
        top: -6px;
        right: -6px;
        width: 14px;
        height: 14px;
        font-size: 9px;
    }

    .header-container.scrolled .header {
        padding: 4px 15px;
        font-size: 10px;
    }

    .header-container.scrolled .navbar {
        padding: 6px 0;
    }

    .header-container.scrolled .logoOne {
        height: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    body {
        padding-top: 90px;
    }
    
    body.header-compact {
        padding-top: 60px;
    }
    
    .header-container.scrolled .mobile-nav {
        top: 80px;
    }

    #header-placeholder.loading {
        height: 90px;
    }
    
    #footer-placeholder.loading {
        height: 250px;
    }

    .hero {
        padding: 15px 10px;
        margin: 15px auto;
    }
    
    .sd {
        gap: 25px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 95%;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero-product {
        max-width: 300px;
        padding: 20px 15px;
    }
    
    .product-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-subtext {
        font-size: 13px;
    }
    
    .hero-product h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .hero-product p {
        font-size: 22px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-product {
        max-width: 280px;
        padding: 25px 15px;
    }

    .product-image {
        width: 120px;
        height: 100%;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .paradise-content h2 {
        font-size: 28px;
    }

    .newsletter h2 {
        font-size: 28px;
    }

    .paradise-product {
        width: 220px;
        height: 250px;
        font-size: 13px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature h3 {
        font-size: 18px;
    }

    .feature p {
        font-size: 13px;
    }

    .product-info {
        padding: 15px;
    }

    .product-name {
        font-size: 14px;
    }

    .price {
        font-size: 16px;
    }

    .stock-status {
        font-size: 10px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .breadcrumb {
        padding: 15px 10px 0;
        font-size: 12px;
    }

    .main-content {
        gap: 30px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-price {
        font-size: 24px;
    }

    .main-image {
        height: 300px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .big-rating {
        font-size: 36px;
    }

    .tabs-section {
        padding: 0 10px;
    }

    .page-title {
        font-size: 24px;
    }

    .cart-item {
        padding: 15px 0;
    }

    .item-details {
        width: 100%;
    }

    .item-price {
        margin: 10px 0;
    }

    .quantity-controls {
        margin: 10px 0;
    }

    .continue-shopping-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .contact-container,
    .faq-container {
        padding: 0 15px;
    }

    .form-control {
        padding: 14px 0;
    }

    .submit-btn {
        padding: 16px;
    }

    .faq-question {
        padding: 18px 12px;
    }

    .answer-content {
        padding: 18px 12px;
    }

    body {
        padding-top: 80px;
    }

    .header {
        padding: 6px 10px;
        font-size: 10px;
    }

    .nav-container {
        padding: 5px 10px;
    }

    .logoOne {
        height: 28px;
        max-width: 90px;
    }

    .nav-right {
        gap: 8px;
    }

    .mobile-menu {
        padding: 4px;
        margin-top: 5px;
    }

    .mobile-menu span {
        width: 18px;
        height: 2px;
    }

    .mobile-nav ul li {
        padding: 15px 0;
    }

    .mobile-nav ul li a {
        font-size: 16px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .hero {
        padding: 10px 8px;
    }
    
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-product {
        max-width: 280px;
        padding: 15px 12px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtext {
        font-size: 11px;
    }
    
    .hero-product h3 {
        font-size: 16px;
    }
    
    .hero-product p {
        font-size: 20px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .hero {
        padding: 0 10px;
    }

    .best-selling, 
    .features, 
    .paradise-section, 
    .newsletter, 
    .similar-products {
        padding: 0 10px;
    }

    .paradise-product {
        width: 200px;
        height: 220px;
    }

    .header {
        padding: 4px 8px;
        font-size: 9px;
    }

    .nav-container {
        padding: 0 8px;
    }

    .logoOne {
        height: 25px;
        max-width: 80px;
    }

    .mobile-nav ul {
        padding: 15px;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero::before {
        animation-duration: 15s;
    }
    
    .feature:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .product-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .paradise-product:hover {
        transform: scale(1.03) rotate(1deg);
    }

    .hero {
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .sd {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content,
    .hero-image,
    .hero-product {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* iOS optimizations */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .hero {
            -webkit-overflow-scrolling: touch;
        }
        
        .hero-content h1,
        .hero-product h3 {
            -webkit-font-smoothing: antialiased;
        }
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01s !important;
    }
}

/* ===== АНИМИРОВАННАЯ КНОПКА ЗВОНКА ===== */
.phone-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    z-index: 99999; /* Высокий z-index чтобы быть поверх всего */
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Пульсирующая анимация */
    animation: phonePulse 2s infinite;
    
    /* Убираем outline при фокусе */
    outline: none;
}

.phone-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: scale(1);
    transition: all 0.3s ease;
}

.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
    animation: none; /* Останавливаем пульсацию при hover */
}

.phone-button:hover::before {
    opacity: 0.3;
    transform: scale(1.2);
}

.phone-button:active {
    transform: scale(1.05);
}

/* Иконка телефона */
.phone-button i {
    font-size: 24px;
    animation: phoneRing 1s ease-in-out infinite;
    transform-origin: center;
}

.phone-button:hover i {
    animation: phoneRingFast 0.5s ease-in-out infinite;
    color: #ffffff;
}

/* Тултип */
.phone-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.phone-tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid rgba(31, 41, 55, 0.95);
}

.phone-button:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ===== АНИМАЦИИ ===== */

/* Основная пульсация */
@keyframes phonePulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(16, 185, 129, 0.4),
            0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(16, 185, 129, 0.4),
            0 0 0 10px rgba(16, 185, 129, 0);
    }
}

/* Анимация звонка (медленная) */
@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50%, 60%, 70%, 80%, 90% { transform: rotate(0deg); }
}

/* Анимация звонка (быстрая при hover) */
@keyframes phoneRingFast {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-20deg) scale(1.1); }
    75% { transform: rotate(20deg) scale(1.1); }
}

/* Дополнительная анимация появления */
@keyframes phoneSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Применяем анимацию появления */
.phone-button {
    animation: phoneSlideIn 0.8s ease-out, phonePulse 2s infinite 0.8s;
}

/* ===== РЕСПОНСИВНОСТЬ ===== */

@media (max-width: 768px) {
    .phone-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .phone-button i {
        font-size: 22px;
    }
    
    .phone-tooltip {
        right: 70px;
        font-size: 13px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .phone-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .phone-button i {
        font-size: 20px;
    }
    
    .phone-tooltip {
        right: 65px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Для очень маленьких экранов - прячем тултип */
@media (max-width: 380px) {
    .phone-tooltip {
        display: none;
    }
}

/* Адаптация для landscape на мобильных */
@media (max-height: 500px) and (orientation: landscape) {
    .phone-button {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .phone-button i {
        font-size: 18px;
    }
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ ===== */

/* Эффект "волн" при клике */
.phone-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.phone-button:active::after {
    width: 120px;
    height: 120px;
}

/* Плавное появление при прокрутке */
.phone-button.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px) scale(0.5);
}

/* Эффект при потере/получении фокуса */
.phone-button:focus {
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.4),
        0 0 0 3px rgba(16, 185, 129, 0.3);
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .phone-tooltip {
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .phone-tooltip::before {
        border-left-color: rgba(15, 23, 42, 0.95);
    }
}

/* Reduce motion для пользователей с ограниченными возможностями */
@media (prefers-reduced-motion: reduce) {
    .phone-button {
        animation: none;
    }
    
    .phone-button i {
        animation: none;
    }
    
    .phone-button:hover i {
        animation: none;
        transform: scale(1.1);
    }
}

/* ===== АЛЬТЕРНАТИВНЫЕ СТИЛИ ===== */

/* Вариант с WhatsApp цветами (закомментировано) */
/*
.phone-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

@keyframes phonePulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 10px rgba(37, 211, 102, 0);
    }
}
*/