* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

/* Стили для шрифта Kanchenjunga */
.kanchenjunga-regular {
  font-family: "Kanchenjunga", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kanchenjunga-medium {
  font-family: "Kanchenjunga", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.kanchenjunga-semibold {
  font-family: "Kanchenjunga", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.kanchenjunga-bold {
  font-family: "Kanchenjunga", sans-serif;
  font-weight: 700;
  font-style: normal;
}

:root {
    --transition-time: 0.5s;
    --transition-slow: 1s;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100vw;
    direction: rtl;
    text-align: right;
    font-family: 'Kanchenjunga', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #000000 0%, #000000 60%, #000000 100%);
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    background-color: #000000;
}

.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    transition: all 0.6s ease-in-out;
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    opacity: 0;
    transform: translateX(20px);
    overflow: visible;
}

.slide.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

/* Красно-золотой градиент для первого слайда (радиальный) */
.slide[data-bg="red-gold"] {
    background: radial-gradient(circle at center, #FFD700 0%, #CD0000 60%, #8B0000 100%);
}

/* Фон для второго слайда */
.slide[data-bg="blue-purple"] {
    background: radial-gradient(circle at center, #6EC5FF 0%, #4e4376 70%, #2b5876 100%);
}

/* Шапка сайта */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0.5rem;
    z-index: 100;
    flex-direction: row-reverse;
}

.logo h1 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 svg {
    animation: pulseBeat 1.5s infinite ease-in-out alternate;
    transform-origin: center;
}

@keyframes pulseBeat {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.25);
    }
}

/* Навигационные кнопки */
.menu {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.5rem;
    z-index: 100;
    flex-direction: row-reverse;
}

.menu button {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-time);
}

.menu button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu button.active {
    background-color: white;
    color: #333;
    border-color: white;
}

.icons {
    display: flex;
    gap: 0.5rem;
    direction: ltr;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-time);
}

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

/* Основной контент */
main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas:
        "left center right"
        "footer footer footer";
    gap: 0.5rem;
    height: calc(100% - 90px);
    position: relative;
}

/* Левая колонка */
.left-column {
    grid-area: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    padding: 1rem 0;
}

.left-column[dir="rtl"] {
    text-align: right;
}

.left-column[dir="rtl"] h2 {
    font-size: 2.8rem;
}

.text-content {
    margin-bottom: 1rem;
}

.text-content h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    transition: opacity 0.5s ease;
}

.volume {
    font-size: 1.5rem;
    opacity: 0.9;
}

.description {
    line-height: 1.5;
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 350px;
}

/* Центральная колонка */
.center-column {
    grid-area: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-image {
    position: relative;
    height: 85%;
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.product-image img {
    height: 400px;
    width: auto;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    opacity: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

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

/* Стиль для цены под изображением товара */
.center-column .price {
    margin-top: 10px;
    font-size: 3.2rem;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 3px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    transition: opacity 0.5s ease;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.center-column .price::before {
    content: "EGP 2200";
    position: absolute;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 10px;
    border-radius: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Скрываем прыгающий курсор */
.cursor-indicator {
    display: none;
}

/* Правая колонка */
.right-column {
    grid-area: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    padding: 1rem 0;
}

.product-title {
    margin-bottom: 1rem;
}

.flavor {
    font-size: 3.2rem;
    margin-bottom: 0.2rem;
    transition: opacity 0.5s ease;
    line-height: 1;
}

.sale {
    font-size: 2.6rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    line-height: 1;
    margin-top: 0.2rem;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    position: relative;
}

.sale::before {
    content: "✓";
    position: absolute;
    right: -20px;
    left: auto;
    color: white;
    font-weight: bold;
}

.feature-circles {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.circle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Стиль для кнопки купить в правой колонке */
.right-column .buy-btn {
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    max-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    align-self: flex-start;
}

.right-column .buy-btn:hover {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Перемещаем соцсети в футер */
.product-footer {
    grid-area: footer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding-top: 0.3rem;
    margin-top: 0.3rem;
}

.product-footer .social {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.3rem;
}

/* Убираем соцсети из правой колонки */
.right-column .social {
    display: none;
}

/* Стиль для кнопки "Back to Product" */
.back-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.back-to-product {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Стили для информационного блока */
.info-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.info-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.info-content p {
    margin-bottom: 1.5rem;
}

.info-content h3 {
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.info-content ul {
    list-style-type: none;
    padding-left: 0;
}

.info-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-content ul li:before {
    content: "✓";
    position: absolute;
    right: 0;
    left: auto;
    color: #6EC5FF;
    font-weight: bold;
}

.info-social {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1.5rem;
}

/* Адаптивность для информационного блока */
@media (max-width: 768px) {
    .info-container {
        width: 90%;
        padding: 1.5rem;
    }
    
    .info-container h2 {
        font-size: 2rem;
    }
    
    .info-content {
        font-size: 1rem;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    main {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas:
            "center"
            "left"
            "right"
            "footer";
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .text-content h2 {
        font-size: 2.5rem;
    }
    
    .left-column, .right-column {
        padding: 1rem 0;
        align-items: center;
    }
    
    .left-column[dir="rtl"], .right-column {
        text-align: center;
    }
    
    .description {
        text-align: center;
        margin: 0 auto;
        font-size: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .price-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .right-column {
        align-items: center;
    }
    
    .right-column .buy-btn {
        align-self: center;
        width: 80%;
        max-width: none;
        font-size: 1.3rem;
        padding: 0.8rem 1rem;
    }
    
    .center-column .price {
        font-size: 2.8rem;
        margin-top: 5px;
        padding: 8px 20px;
    }
    
    .center-column .price::before {
        font-size: 1.2rem;
        top: -44px;
        padding: 1px 8px;
    }
    
    .product-image img {
        height: 300px;
    }
    
    .flavor {
        font-size: 2.8rem;
    }
    
    .sale {
        font-size: 2.2rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .menu {
        width: 100%;
        justify-content: space-around;
    }
    
    .menu button {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Поправка для арабского текста */
    .left-column[dir="rtl"] h2 {
        text-align: center;
    }
    
    .left-column[dir="rtl"] .description p {
        text-align: center;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 576px) {
    .product-image img {
        height: 250px;
    }
    
    .center-column .price {
        font-size: 2.4rem;
        padding: 6px 16px;
    }
    
    .flavor {
        font-size: 2.4rem;
    }
    
    .sale {
        font-size: 1.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .sale::before {
        right: -15px;
        font-size: 0.9rem;
    }
    
    .volume {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .right-column .buy-btn {
        font-size: 1.1rem;
        width: 90%;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    .icon-btn {
        width: 35px;
        height: 35px;
    }
    
    .tabs {
        margin-bottom: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .info-container h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .tab-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Стили для контактного оверлея на мобильных */
@media (max-width: 768px) {
    .contact-container {
        width: 95%;
        max-width: none;
        padding: 15px;
        background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
        backdrop-filter: blur(10px);
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-close {
        left: 10px;
        right: auto;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Стили для галереи на мобильных */
    .gallery-container {
        width: 95%;
        height: 90%;
        display: flex;
        flex-direction: column;
    }
    
    .gallery-content {
        height: 80%;
        margin-bottom: 20px;
    }
    
    .gallery-image {
        height: auto;
        width: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .gallery-nav {
        position: static;
        transform: none;
        height: 60px;
        display: flex;
        justify-content: center;
        gap: 50px;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .gallery-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-close {
        top: 15px;
        left: 15px;
        right: auto;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Добавим плавный скролл */
html {
    scroll-behavior: smooth;
}

/* Стили для контактной формы как оверлея */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-container {
    position: relative;
    width: 85%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    transform: translateY(0);
    animation: formAppear 0.5s ease-out;
    backdrop-filter: blur(20px);
}

@keyframes formAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.contact-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Обновленные стили для контактной формы внутри оверлея */
.contact-overlay .contact-form-container {
    max-width: 100%;
    margin: 0;
    padding: 10px 20px 30px;
    background: transparent;
    box-shadow: none;
    border: none;
    position: relative;
}

.contact-form-container::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.contact-form-container::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
}

.contact-form-container h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 3px;
}

/* Стили для блока скидки в табе заказа */
.discount-banner-tab {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 0, 0, 0.2) 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.discount-banner-tab::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.discount-banner-tab h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.discount-banner-tab p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

.discount-banner-tab .discount-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    display: inline-block;
    margin: 0 5px;
    animation: pulse 2s infinite;
}

.limited-offer {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .discount-banner-tab h3 {
        font-size: 1.6rem;
    }
    
    .discount-banner-tab p {
        font-size: 1.2rem;
    }
    
    .discount-banner-tab .discount-value {
        font-size: 2rem;
    }
}

/* Стили для соцсетей */
.social {
    display: flex;
    gap: 1.5rem;
}

.social a {
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    padding: 10px;
}

.social a:hover {
    transform: scale(1.2);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* Дополнительные стили для анимации слайдера */
#slide-container.sliding {
    animation: colorTransition 1.2s ease-in-out;
}

@keyframes colorTransition {
    0% { filter: brightness(1); }
    50% { filter: brightness(0.8); }
    100% { filter: brightness(1); }
}

/* Эффект при наведении курсора на элементы */
.logo h1:hover,
.social a:hover,
.feature-circles .circle:hover {
    filter: brightness(1.2);
}

/* Полноэкранный контейнер для информации */
.info-container.fullscreen {
    max-width: none;
    width: calc(100% - 3rem);
    min-height: calc(100vh - 160px);
    height: auto;
    margin: 0.5rem auto;
    display: flex;
    flex-direction: column;
    overflow: auto;
    background: rgba(255, 255, 255, 0.05);
}

/* Система табов */
.tabs-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    direction: rtl;
}

.tab-button {
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: none;
}

.tab-button.tab-active {
    background: white;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-contents {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.tab-content {
    display: none;
    height: 100%;
    overflow-y: auto;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
}

.tab-content.content-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Новые стили для информационных блоков Zoomix */
.card-highlight {
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.benefits-list ul {
    list-style-type: none;
    padding: 0;
}

.benefits-list ul li {
    padding-right: 2rem;
    padding-left: 0;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list ul li:before {
    content: "✓";
    position: absolute;
    right: 0;
    left: auto;
    color: white;
    font-weight: bold;
}

.features-container {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    width: 45%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Стили для ингредиентов Zoomix */
.ingredient-card, .more-ingredients {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ingredient-card:hover, .more-ingredients:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ingredient-card h4, .more-ingredients h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.order-btn {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2.5rem;
    background: white;
    color: #333;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Стили для инструкций по использованию */
.usage-instructions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.usage-step {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.usage-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.usage-step p {
    font-size: 1.1rem;
    margin: 0;
}

/* Стили для блока заказа */
.pricing-box {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.discount {
    color: #ff4444;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.new-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 0.5rem 0;
}

.quantity {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.order-form {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-form .form-group {
    margin-bottom: 1.5rem;
}

.order-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.order-form input {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.order-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.order-submit-btn {
    width: 100%;
    padding: 1rem;
    background: white;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.order-submit-btn:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.order-benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
}

.benefit-item i {
    font-size: 1.3rem;
    color: white;
}

.warning-box {
    background: rgba(255, 150, 150, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box h4 {
    color: #ff5555;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.order-steps {
    margin: 2rem 0;
}

.order-steps h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.order-steps ol {
    padding-right: 1.5rem;
}

.order-steps li {
    margin-bottom: 0.8rem;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Адаптивность для системы табов */
@media (max-width: 768px) {
    .info-container.fullscreen {
        height: auto;
        max-height: none;
        overflow-y: auto;
        padding: 1rem;
        margin: 0;
        width: 100%;
    }
    
    /* Новая вертикальная структура табов для мобильных */
    .tabs-container {
        display: flex;
        flex-direction: column;
    }
    
    .tabs {
        flex-direction: column;
        flex-wrap: nowrap;
        overflow-x: visible;
        padding: 0;
        justify-content: flex-start;
        gap: 10px;
        background: transparent;
        margin-bottom: 20px;
    }
    
    .tab-button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        white-space: normal;
        text-align: center;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.7);
        color: white;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .tab-button.tab-active {
        background: white;
        color: #333;
        border-color: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        font-weight: bold;
    }
    
    .tab-contents {
        overflow-y: auto;
        max-height: none;
    }
    
    .tab-content {
        padding: 1rem;
    }
    
    /* Стили для мобильной версии содержимого табов */
    .card-highlight {
        font-size: 1.2rem;
        margin: 0.8rem 0;
    }
    
    .info-card {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .info-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .benefits-list ul li {
        padding: 0.6rem 1.5rem 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .feature-box {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .feature-box h4 {
        font-size: 1.1rem;
    }
    
    .ingredient-card, .more-ingredients {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .ingredient-card h4, .more-ingredients h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .usage-step {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .usage-step p {
        font-size: 0.95rem;
    }
    
    .order-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        margin: 1.5rem auto;
    }
    
    .pricing-box {
        padding: 1.5rem 1rem;
    }
    
    .new-price {
        font-size: 2.2rem;
    }
    
    .order-form {
        padding: 1.5rem 1rem;
    }
    
    .order-benefits {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefit-item {
        justify-content: center;
        width: 100%;
    }
    
    .warning-box {
        padding: 1rem;
    }
    
    .order-steps ol {
        padding-right: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Галерея изображений */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-container {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row-reverse;
}

.gallery-counter {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.gallery-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.gallery-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-image {
    max-width: 95%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-nav {
    position: absolute;
    bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 15px;
    z-index: 5;
}

.gallery-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.5);
    height: 80px;
    align-items: center;
}

.gallery-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    border: 2px solid transparent;
}

.gallery-thumbnail.active {
    opacity: 1;
    border-color: #FFD700;
    transform: scale(1.1);
}

.gallery-thumbnail:hover {
    opacity: 0.9;
}

/* Адаптивность для галереи на мобильных устройствах */
@media (max-width: 768px) {
    .gallery-container {
        width: 95%;
        height: 90%;
    }
    
    .gallery-image {
        max-width: 100%;
        max-height: 70%;
    }
    
    .gallery-nav {
        bottom: 90px;
        gap: 50px;
    }
    
    .gallery-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .gallery-thumbnails {
        height: 70px;
    }
    
    .gallery-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .gallery-header {
        padding: 10px 15px;
    }
}

/* Стили для скелетного прелоадера */
@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    background: radial-gradient(circle at center, #333 0%, #222 60%, #111 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.skeleton-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.skeleton-pulse {
    background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 6px;
}

/* Стили для заголовка */
.skeleton-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    flex-direction: row-reverse;
}

.skeleton-logo {
    width: 120px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
}

.skeleton-icons {
    display: flex;
    gap: 0.5rem;
}

.skeleton-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
}

/* Стили для меню */
.skeleton-menu {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-direction: row-reverse;
}

.skeleton-button {
    width: 100px;
    height: 35px;
    border-radius: 30px;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
}

/* Стили для основного содержимого */
.skeleton-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        "left center right";
    gap: 0.5rem;
    height: calc(100% - 120px);
}

.skeleton-left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem 0;
    gap: 1rem;
}

.skeleton-title {
    width: 70%;
    height: 50px;
    margin-bottom: 0.5rem;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 6px;
}

.skeleton-text {
    width: 50%;
    height: 25px;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 6px;
}

.skeleton-paragraph {
    width: 90%;
    height: 100px;
    margin-top: 1rem;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 6px;
}

.skeleton-center {
    grid-area: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.skeleton-image {
    width: 85%;
    height: 350px;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 12px;
}

.skeleton-price {
    width: 120px;
    height: 45px;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 6px;
}

.skeleton-right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem 0;
    gap: 1rem;
}

.skeleton-product-title {
    width: 70%;
    height: 45px;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 6px;
}

.skeleton-badge {
    width: 80%;
    height: 35px;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 6px;
}

.skeleton-btn {
    width: 120px;
    height: 40px;
    margin-top: 1.5rem;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 30px;
}

.skeleton-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}

.skeleton-social {
    width: 150px;
    height: 30px;
    animation: skeleton-loading 1.5s infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    border-radius: 6px;
}

/* Адаптивность для прелоадера */
@media (max-width: 992px) {
    .skeleton-main {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "center"
            "left"
            "right";
        gap: 1rem;
    }
    
    .skeleton-center {
        margin-bottom: 1rem;
    }
    
    .skeleton-image {
        height: 280px;
    }
    
    .skeleton-left, .skeleton-right {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .skeleton-image {
        height: 220px;
    }
}

/* Эффект дымки за изображением в левом нижнем углу */
#product-slide::before {
    content: "";
    position: fixed;
    bottom: -60px;
    left: -60px;
    width: 600px;
    height: 500px;
    background: radial-gradient(circle at center, 
                rgba(255, 255, 255, 0.4) 0%, 
                rgba(255, 255, 255, 0.2) 40%, 
                rgba(255, 255, 255, 0.05) 60%,
                rgba(255, 255, 255, 0) 80%);
    filter: blur(25px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
    animation: breathe 8s infinite alternate ease-in-out;
}

/* Анимация "дыхания" для дымки */
@keyframes breathe {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Фоновое изображение в левом нижнем углу (только для слайда продукта) */
#product-slide::after {
    content: "";
    position: fixed;
    bottom: -20px;
    left: -30px;
    width: 550px;
    height: 450px;
    background-image: url('https://i.postimg.cc/mgNZFBGP/2025-05-09-14-remove-bg-io.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 0;
    pointer-events: none;
    /* Делаем маску менее интенсивной для лучшей видимости изображения */
    mask-image: radial-gradient(ellipse at bottom left, black 50%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse at bottom left, black 50%, transparent 95%);
    /* Уменьшаем тень для лучшей видимости */
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
    /* Плавная анимация для естественного движения */
    animation: float 10s infinite ease-in-out;
}

/* Анимация плавного движения для изображения */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Скрываем изображение на мобильных устройствах */
@media (max-width: 992px) {
    #product-slide::after {
        display: none;
    }
}

/* Стрелки галереи в правильном направлении */
#prev-arrow {
    right: 30px;
    left: auto;
}

#next-arrow {
    left: 30px;
    right: auto;
}

/* Добавляем блок с акцентом на скидку */
.discount-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 0, 0, 0.2) 100%);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.discount-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.discount-banner h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.discount-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.discount-banner .discount-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: inline-block;
    margin: 0 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    direction: rtl;
    text-align: right;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}

.form-group label {
    font-size: 1.1rem;
    color: white;
    text-align: right;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-right: 5px;
}

.form-group input {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.12);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.8) 100%);
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-btn::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: all 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 165, 0, 0.9) 100%);
}

.submit-btn:hover::before {
    left: 100%;
}

/* Адаптивность для контактной формы */
@media (max-width: 768px) {
    .contact-container {
        width: 90%;
        padding: 25px 15px;
    }
    
    .contact-form-container {
        padding: 5px 10px 20px;
    }
    
    .contact-form-container h2 {
        font-size: 1.8rem;
    }
    
    .form-group input {
        padding: 0.9rem 1rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.8rem;
    }
    
    .discount-banner h3 {
        font-size: 1.5rem;
    }
    
    .discount-banner p {
        font-size: 1rem;
    }
    
    .discount-banner .discount-value {
        font-size: 2rem;
    }
} 