/* ==================== PROMOTIONS MINIMALISTIC STYLES ==================== */

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 0;
    margin-top: 80px;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-item:last-child {
    color: #d4af37;
}

.breadcrumbs-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs-link:hover {
    color: #d4af37;
}

.breadcrumbs-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Quick Navigation */
.promotions-quick-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 20px;
}

.promotions-quick-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotions-quick-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.promotions-quick-nav-item {
    display: inline-block;
}

.promotions-quick-nav-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.promotions-quick-nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

/* Hero Section - Minimalistic */
.promotions-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('./1762096265733.jpg') center/cover no-repeat;
    margin-top: 80px;
    padding: 60px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.promotions-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 1400px 900px at 30% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 1200px 700px at 70% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: promotionsHeroGlow 15s ease-in-out infinite;
}

@keyframes promotionsHeroGlow {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1) translate(0, 0);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translate(20px, -15px);
    }
}

.promotions-hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.promotions-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.3);
}

.promotions-hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.promotions-hero-overlay {
    display: none;
}

/* Promotions Section - Minimalistic */
.promotions-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('./1762096265733.jpg') center/cover no-repeat;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 1400px 900px at 30% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 1200px 700px at 70% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: promotionsSectionGlow 15s ease-in-out infinite;
}

@keyframes promotionsSectionGlow {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1) translate(0, 0);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translate(20px, -15px);
    }
}

.promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promotions-header {
    text-align: center;
    margin-bottom: 40px;
}

.promotions-section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.promotions-section-title::after {
    display: none;
}

.promotions-intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Promotions Grid - Minimalistic */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Promotion Card - Minimalistic */
.promotion-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    animation: none;
    position: relative;
}

.promotion-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.promotion-card.featured {
    border-color: rgba(212, 175, 55, 0.3);
}

.promotion-card.featured::before {
    display: none;
}

.promotion-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
}

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

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

.promotion-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.promotion-label {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: #d4af37;
    border-radius: 4px;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    text-transform: uppercase;
}

.promotion-content {
    padding: 20px;
}

.promotion-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.promotion-description {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promotion-description strong {
    color: #d4af37;
    font-weight: 600;
}

/* Savings removed from minimal cards */

.promotion-details {
    margin-bottom: 0;
}

.promotion-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.promotion-old-price {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.promotion-new-price {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
}

.promotion-discount {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    padding: 4px 12px;
    border-radius: 6px;
}

/* Time removed from minimal cards */

.promotion-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promotion-features li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.promotion-features li:last-child {
    border-bottom: none;
}

.promotion-features li::before {
    content: '•';
    color: #d4af37;
    font-weight: 700;
    margin-right: 8px;
}

.promotion-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.promotion-feature-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.promotion-feature-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.promotion-feature-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Additional Info Block - Simplified */
.promotion-additional-info {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 16px;
}

.promotion-additional-info-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.promotion-additional-info-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Included Block - Simplified */
.promotion-included {
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.promotion-included-title {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
}

.promotion-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promotion-included-list li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-left: 20px;
    position: relative;
}

.promotion-included-list li:last-child {
    border-bottom: none;
}

.promotion-included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
    font-size: 14px;
}

/* Conditions Block - Simplified */
.promotion-conditions {
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.promotion-conditions-title {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
}

.promotion-conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promotion-conditions-list li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-left: 20px;
    position: relative;
}

.promotion-conditions-list li:last-child {
    border-bottom: none;
}

.promotion-conditions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(212, 175, 55, 0.6);
    font-weight: 700;
    font-size: 14px;
}

/* Tips Block - Simplified */
.promotion-tips {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 16px;
}

.promotion-tips-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.promotion-tips-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

/* Buttons - Minimalistic */
.promotion-btn {
    width: 100%;
    padding: 10px 20px;
    background: #d4af37;
    border: none;
    border-radius: 6px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0;
    text-transform: uppercase;
}

.promotion-btn:hover {
    background: #f4e5b5;
    transform: translateY(-1px);
}

.promotion-btn:active {
    transform: translateY(0);
}

.promotion-btn::before {
    display: none;
}

/* Notice Section - Simplified */
.promotions-notice {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 40px;
}

.promotions-notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.promotions-notice-content {
    flex: 1;
}

.promotions-notice-title {
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
}

.promotions-notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promotions-notice-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.promotions-notice-list li:last-child {
    border-bottom: none;
}

.promotions-notice-list li::before {
    content: '•';
    color: #d4af37;
    font-weight: 700;
    margin-right: 8px;
}

/* Remove complex animations */
.promotion-card::after {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 15px 15px 0;
        margin-top: 70px;
    }

    .promotions-hero {
        padding: 40px 20px;
        min-height: 150px;
    }
    
    .promotions-hero::before {
        background: 
            radial-gradient(ellipse 800px 600px at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 700px 500px at 70% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    }

    .promotions-hero-title {
        font-size: 28px;
    }

    .promotions-hero-subtitle {
        font-size: 14px;
    }

    .promotions-section {
        padding: 40px 15px;
    }
    
    .promotions-section::before {
        background: 
            radial-gradient(ellipse 800px 600px at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 700px 500px at 70% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    }
    }

    .promotions-section-title {
        font-size: 24px;
    }

    .promotions-intro-text {
        font-size: 14px;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .promotion-image {
        height: 180px;
    }

    .promotion-content {
        padding: 20px;
    }

    .promotion-title {
        font-size: 18px;
    }

    .promotion-features-grid {
        grid-template-columns: 1fr;
    }

    .promotions-quick-nav {
        padding: 15px;
    }

    .promotions-quick-nav-list {
        gap: 8px;
    }

    .promotions-quick-nav-link {
        font-size: 12px;
        padding: 6px 12px;
    }

    .promotions-notice {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .promotions-hero {
        padding: 30px 15px;
        min-height: 120px;
    }

    .promotions-section {
        padding: 30px 15px;
    }

    .promotion-content {
        padding: 16px;
    }

    .promotion-title {
        font-size: 16px;
    }

    .promotion-new-price {
        font-size: 20px;
    }

    .promotion-discount {
        font-size: 18px;
    }
    
    /* Улучшаем читаемость на маленьких экранах */
    .promotions-hero-subtitle {
        font-size: 13px !important;
    }
    
    .promotions-intro-text {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    /* Оптимизируем touch targets */
    .promotions-quick-nav-link {
        min-height: 44px !important;
        padding: 10px 14px !important;
    }
}

/* Оптимизация для очень маленьких экранов */
@media (max-width: 375px) {
    .promotions-hero-title {
        font-size: 24px !important;
    }
    
    .promotions-hero-subtitle {
        font-size: 12px !important;
    }
    
    .promotion-content {
        padding: 14px !important;
    }
    
    .promotion-title {
        font-size: 15px !important;
    }
}
