/* Extracted from index.html */
/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
/* Стили для body */
body {
    background-color: #040A0A;
    color: #ffffff;
    font-family: 'Cormorant', serif;
    line-height: 1.6;
}
        
/* Основной контейнер */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px;
}
        
/* Стили для хедера */
.header-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}
        
.header-background {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -100px;
}
        
/* Градиент для хедера */
.header-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Высота градиента - от низа до середины */
    background: linear-gradient(to top, rgba(4, 10, 10, 1) 0%, rgba(4, 10, 10, 0) 100%);
    pointer-events: none; /* Чтобы градиент не мешал кликам */
    display: flex;
    justify-content: center;
    align-items: center;
}
        
/* Стиль для текста в градиенте */
.gradient-text {
    font-family: 'Ballet', cursive;
    color: #00e5b8;
    opacity: 0.8;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg); /* Добавляем наклон всему блоку */
    width: 100%;
    pointer-events: none; /* Чтобы текст не мешал кликам */
    line-height: 0.8;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 229, 184, 0.3); /* Добавляем легкое свечение */
}
        
.gradient-text .first-line {
    font-size: 160px;
    display: block;
    margin-bottom: -20px; /* Уменьшаем расстояние между строками */
    transform: skew(-5deg); /* Дополнительный наклон для первой строки */
}
        
.gradient-text .second-line {
    font-size: 140px;
    display: block;
    margin-left: 180px; /* Смещаем вторую строку вправо */
    transform: skew(-5deg); /* Дополнительный наклон для второй строки */
}
        
/* Стили для навигационного меню */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 10;
}
        
.nav-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Для абсолютного позиционирования блока контактов */
}
        
.nav-flex {
    display: flex;
    align-items: center;
}
        
.logo {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Cormorant', serif;
    margin-right: 40px; /* Отступ между логотипом и меню */
}
        
.main-menu {
    display: flex;
    list-style: none;
}
        
.main-menu li {
    margin: 0 15px;
}
        
.main-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
        
.main-menu a:hover {
    color: #00e5b8; /* Цвет при наведении, как на изображении */
}
        
.search-icon {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
}
        
.contact-info {
    position: absolute;
    top: 0;
    right: 20px;
    text-align: right;
}
        
.email {
    color: #00e5b8; /* Цвет email, как на изображении */
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}
        
.delivery-info {
    color: #ffffff;
}
        
.address {
    color: #00e5b8; /* Цвет адреса, как на изображении */
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
}
        
.hours {
    color: #ffffff;
    font-size: 12px;
    margin-top: 5px;
}
        
/* Стили для блока социальных сетей */
.social-icons {
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 229, 184, 0.2);
}
        
.social-icon {
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
        
.social-icon:hover {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 229, 184, 0.8); /* Усиленное свечение при наведении */
}
        
.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
        
/* Стили для блока с телефоном и корзиной */
.header-contact {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 10;
}
        
.phone-number {
    color: #00e5b8;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 229, 184, 0.5);
    display: block;
    text-align: right;
}
        
.call-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00e5b8;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 229, 184, 0.3);
    transition: all 0.3s ease;
}
        
.call-back-btn:hover {
    background: rgba(0, 229, 184, 0.2);
    box-shadow: 0 0 20px rgba(0, 229, 184, 0.5);
}
        
.call-back-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
        
.cart-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 229, 184, 0.3);
    transition: all 0.3s ease;
}
        
.cart-btn:hover {
    background: rgba(0, 229, 184, 0.2);
    box-shadow: 0 0 20px rgba(0, 229, 184, 0.5);
}
        
.cart-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
        
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #00e5b8;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 229, 184, 0.5);
}
        
header {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    z-index: 5; /* Чтобы контент был над градиентом */
}
        
.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Для абсолютного позиционирования иконок */
    width: 100%;
}
        
.header-content {
    text-align: center;
    background-color: transparent; /* Убираем фон */
    padding: 0; /* Убираем отступы */
    max-width: none; /* Убираем ограничение ширины */
    border-radius: 0; /* Убираем скругление углов */
    position: relative;
    padding-bottom: 100px; /* Добавляем отступ снизу для размещения контактов */
}
        
/* Стили для заголовка */
.header-content h1 {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: 150px;
    line-height: 1.1;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 50px;
}
        
/* Стиль для подзаголовка */
.header-content p {
    font-family: 'Oswald', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 20px;
    letter-spacing: 0.02em; /* 2% межбуквенный интервал */
    margin-top: 20px;
}
        
/* Стиль для кнопки */
.catalog-btn {
    display: inline-block;
    background-color: #00e5b8;
    color: #000;
    padding: 15px 30px;
    margin-top: 30px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}
        
.catalog-btn:hover {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 229, 184, 0.8);
}
        
/* Стили для блока каталога */
.catalog-section {
    position: relative;
    margin-bottom: 60px;
    background-color: #040A0A; /* Черный фон */
    width: 100%;
    padding-bottom: 60px;
    overflow: hidden; /* Чтобы фоновые слова не выходили за пределы секции */
}
        
/* Контейнер для градиентов на всю ширину */
.catalog-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
        
/* Градиенты для фона каталога */
:root{ --idx-blur: 80px; }
.gradient-left,
.gradient-right {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(var(--idx-blur));
    z-index: 0;
    transform: rotate(30deg); /* Поворачиваем эллипсы в противоположную сторону */
}
        
/* Фиолетовый градиент слева */
.gradient-left {
    left: 0%;
    top: 40%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgb(128 0 128 / 95%) 0%, rgba(128, 0, 128, 0) 70%);
}
        
/* Бирюзовый градиент справа */
.gradient-right {
    right: 15%;
    top: 40%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgb(0 128 128 / 85%) 0%, rgba(0, 128, 128, 0) 70%);
}
        
/* Фоновые слова для блоков */
.background-word {
    position: absolute;
    font-family: 'Oswald', sans-serif; /* Изменено на Oswald */
    font-weight: 700; /* Bold */
    font-size: 200px; /* Увеличено до 200px */
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
}
        
/* Позиционирование фоновых слов */
.bukety-word {
    top: 35%; /* Опускаем на 30px ниже */
    right: 10%;
    transform: translateY(-50%);
}
        
.cvety-word {
    top: 65%; /* Поднимаем на 30px выше */
    left: 10%;
    transform: translateY(-50%);
}
        
.dopolnitelno-word {
    top: 85%; /* Опускаем на 30px ниже */
    right: -20%;
    transform: translateY(-50%);
}
        
/* Контейнер для контента каталога */
.catalog-content {
    position: relative;
    z-index: 2; /* Выше фоновых слов */
    padding: 60px 0 0 20px;
    max-width: 1250px;
    margin: 0 auto;
}
        
.catalog-title {
    font-family: 'Cormorant', serif;
    font-size: 100px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: 10px;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
}
        
/* Синяя линия под заголовком */
/* Контейнер для текста и первого блока */
.catalog-top-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
}
        
.catalog-text {
    flex: 0 0 45%;
}
        
.catalog-description {
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}
        
.catalog-subtitle {
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #ffffff;
}
        
/* Стили для блоков каталога */
.catalog-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
        
.catalog-row {
    display: flex;
    width: 100%;
    gap: 30px;
    margin-bottom: 30px;
}
        
.catalog-block {
    flex: 1;
    position: relative;
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
    min-height: 200px;
    z-index: 2;
}
        
.catalog-block-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
        
.catalog-block-list {
    list-style-type: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
        
.catalog-block-list li {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
        
.catalog-block-list li::before {
    content: "•";
    margin-right: 10px;
    color: #ffffff;
}
        
.catalog-block-btn {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
        
.catalog-block-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
        
/* Стили для блока "ГОТОВЫЕ БУКЕТЫ ИЗ СУХОЦВЕТОВ" */
.dried-flowers-container {
    position: relative;
    flex: 0 0 45%;
    margin-top: 30px; /* Опускаем блок на 30px ниже */
}
        
.dried-flowers {
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
}
        
.dried-flowers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(30px);
    z-index: 1;
}
        
.dried-flowers .catalog-block-title {
    color: #00e5b8;
}
        
/* Стили для блока "ЦВЕТЫ" */
.flowers-container {
    position: relative;
    flex: 1;
    margin-top: -30px; /* Поднимаем блок на 30px выше */
}
        
.flowers {
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
}
        
.flowers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(30px);
    z-index: 1;
}
        
.flowers .catalog-block-title {
    color: #ff00ff;
}
        
/* Стили для блока "ДОПОЛНИТЕЛЬНО" */
.additional-container {
    position: relative;
    flex: 1;
    margin-top: 30px; /* Опускаем блок на 30px ниже */
}
        
.additional {
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
}
        
.additional::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(30px);
    z-index: 1;
}
        
.additional .catalog-block-title {
    color: #00e5b8;
}
        
/* Примеры использования шрифтов */
.font-cormorant {
    font-family: 'Cormorant', serif;
}
        
.font-ballet {
    font-family: 'Ballet', cursive;
}
        
.font-oswald {
    font-family: 'Oswald', sans-serif;
}
        
/* Примеры весов шрифтов */
.font-light {
    font-weight: 300;
}
        
.font-regular {
    font-weight: 400;
}
        
.font-medium {
    font-weight: 500;
}
        
.font-semibold {
    font-weight: 600;
}
        
.font-bold {
    font-weight: 700;
}
        
/* Примеры стилей шрифтов */
.font-italic {
    font-style: italic;
}
        
/* Дополнительные стили для демонстрации */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
}
        
section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #333;
    background-color: rgba(4, 10, 10, 0.8);
    border-radius: 8px;
}

/* Удаляем background-color только для страницы checkout */
body.woocommerce-checkout section {
    background-color: transparent !important;
}

/* Стили для форм WooCommerce на странице checkout */
body.woocommerce-checkout .woocommerce form .form-row .input-text, 
body.woocommerce-checkout .woocommerce form .form-row select {
    font-family: inherit !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    padding: .5em !important;
    display: block !important;
    background-color: #00e5b803 !important;
    border: var(--wc-form-border-width) solid #00e5b8 !important;
    border-radius: var(--wc-form-border-radius) !important;
    color: var(--wc-form-color-text, #000) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 0 !important;
    line-height: normal !important;
    height: auto !important;
}
        
.sample-text {
    margin-bottom: 15px;
}
        
/* Стили для футера */
.site-footer {
    background-color: #000;
    padding: 50px 0;
    width: 100%;
}
        
.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
}
        
.footer-logo-container {
    width: 200px;
    margin-right: 50px;
}
        
.footer-logo {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Cormorant', serif;
}
        
.footer-brand {
    font-family: 'Ballet', cursive;
    font-size: 60px;
    color: #ff00ff;
    line-height: 1;
    text-align: left;
    margin-top: 10px;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}
        
.footer-columns {
    display: flex;
    flex: 1;
    justify-content: space-between;
}
        
.footer-column {
    flex: 1;
    margin-right: 20px;
}
        
.footer-column:last-child {
    margin-right: 0;
}
        
.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #00e5b8;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
        
.footer-links {
    list-style: none;
}
        
.footer-links li {
    margin-bottom: 10px;
}
        
.footer-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
        
.footer-links a:hover {
    color: #00e5b8;
}
        
.footer-contact {
    margin-bottom: 20px;
}
        
.footer-contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #00e5b8;
    margin-bottom: 10px;
}
        
.footer-contact-text {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}
        
.footer-contact-email {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #00e5b8;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}
        
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
        
.footer-social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
}
        
.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
        
.footer-social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
        
/* Стили для слайдера популярных букетов */
.popular-section {
    position: relative;
    margin-bottom: 60px;
    background-color: #040A0A; /* Черный фон */
    width: 100%;
    padding-bottom: 60px;
    overflow: hidden; /* Чтобы фоновые слова не выходили за пределы секции */
}
        
/* Структура слайдера с темным фоном справа */
.popular-section {
    position: relative;
    display: flex;
    flex-direction: column;
}
        
.popular-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; /* Фон занимает 70% справа */
    height: 100%;
    background-color: #000;
    background-image: url('/placeholder.svg?height=800&width=800');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
        
/* Контейнер для градиентов слайдера */
.popular-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}
        
/* Градиенты для фона слайдера */
.popular-gradient-left,
.popular-gradient-right {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(var(--idx-blur));
    z-index: 0;
}

@media (max-width: 1024px){ :root{ --idx-blur: 72px; } }
@media (max-width: 768px){ :root{ --idx-blur: 66px; } }
@media (max-width: 425px){ :root{ --idx-blur: 60px; } }
@media (max-width: 375px){ :root{ --idx-blur: 54px; } }
@media (max-width: 320px){ :root{ --idx-blur: 48px; } }
        
/* Зеленый градиент слева */
.popular-gradient-left {
    left: 0%;
    top: 40%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(0, 128, 64, 0.95) 0%, rgba(0, 128, 64, 0) 70%);
}
        
/* Темно-синий градиент справа */
.popular-gradient-right {
    right: 15%;
    top: 40%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 64, 0.85) 0%, rgba(0, 0, 64, 0) 70%);
}
        
/* Контейнер для контента слайдера */
.popular-content {
    position: relative;
    z-index: 3; /* Выше фоновых градиентов */
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}
        
/* Заголовок слайдера - расположен справа */
.popular-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-bottom: 40px;
}
        
.popular-title {
    font-family: 'Cormorant', serif;
    font-size: 80px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    line-height: 1;
}
        
.popular-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-top: 20px;
}
        
/* Стили для слайдера */
.popular-slider {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
        
.product-card {
    flex: 1;
    position: relative;
    border-radius: 10px;
}
        
.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Убираем фиксированную высоту у изображений товаров на мобильных */
@media (max-width: 1000px) {
    .product-image {
        height: auto;
    }
}
        
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
        
.badge-new {
    background-color: #ff6699;
    color: #ffffff;
}
        
.badge-sale {
    background-color: #00cc66;
    color: #ffffff;
}
        
.product-info {
    padding: 20px 0;
}
        
.product-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}
        
.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
        
.current-price {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}
        
.old-price {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}
        
.add-to-cart {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}
        
.add-to-cart:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
        
.view-all {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #ff6699;
    text-decoration: none;
    margin-top: 20px;
    transition: color 0.3s ease;
}
        
.view-all:hover {
    color: #ffffff;
}
        
.view-all::after {
    content: "→";
    margin-left: 10px;
}
        
/* Медиа-запросы для адаптивности заголовка */
@media (max-width: 1200px) {
    .header-content h1 {
        font-size: 120px;
    }
            
    .gradient-text .first-line {
        font-size: 130px;
    }
            
    .gradient-text .second-line {
        font-size: 110px;
        margin-left: 140px;
    }
            
    .phone-number {
        font-size: 20px;
    }
            
    .call-back-btn {
        font-size: 14px;
    }
            
    .catalog-title {
        font-size: 80px;
    }
            
    .catalog-title::after {
        width: 500px;
    }
            
    .catalog-top-row {
        flex-direction: column;
    }
            
    .catalog-text, .dried-flowers-container {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
            
    .catalog-row {
        flex-direction: column;
    }
            
    .background-word {
        font-size: 150px;
    }
            
    .footer-container {
        flex-direction: column;
    }
            
    .footer-columns {
        flex-direction: column;
    }
            
    .footer-logo-container {
        margin-bottom: 30px;
    }
            
    .footer-column {
        margin-right: 0;
        margin-bottom: 30px;
    }
            
    .popular-slider {
        flex-direction: column;
    }
            
    .popular-title {
        font-size: 60px;
    }
            
    .popular-background {
        width: 100%;
    }
}
        
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 80px;
    }
            
    .social-icons {
        right: 10px;
    }
            
    .social-icon {
        width: 40px;
        height: 40px;
    }
            
    .social-icon img {
        width: 20px;
        height: 20px;
    }
            
    .gradient-text .first-line {
        font-size: 90px;
    }
            
    .gradient-text .second-line {
        font-size: 70px;
        margin-left: 100px;
    }
            
    .phone-number {
        font-size: 18px;
    }
            
    .call-back-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
            
    .cart-btn {
        width: 40px;
        height: 40px;
    }
            
    .cart-btn img {
        width: 20px;
        height: 20px;
    }
            
    .catalog-title {
        font-size: 60px;
    }
            
    .catalog-title::after {
        width: 400px;
    }
            
    .catalog-description {
        font-size: 16px;
    }
            
    .catalog-subtitle {
        font-size: 18px;
    }
            
    .background-word {
        font-size: 100px;
    }
            
    .footer-brand {
        font-size: 40px;
    }
            
    .footer-container {
        flex-direction: column;
    }
            
    .footer-columns {
        flex-direction: column;
    }
            
    .popular-title {
        font-size: 40px;
    }
            
    .popular-header {
        align-items: center;
        text-align: center;
    }
}
        
@media (max-width: 480px) {
    .header-content h1 {
        font-size: 60px;
    }
            
    .social-icons {
        right: 5px;
    }
            
    .social-icon {
        width: 35px;
        height: 35px;
    }
            
    .social-icon img {
        width: 18px;
        height: 18px;
    }
            
    .gradient-text .first-line {
        font-size: 60px;
    }
            
    .gradient-text .second-line {
        font-size: 50px;
        margin-left: 60px;
    }
            
    .phone-number {
        font-size: 16px;
    }
            
    .call-back-btn {
        font-size: 10px;
        padding: 6px 10px;
    }
            
    .cart-btn {
        width: 35px;
        height: 35px;
    }
            
    .cart-btn img {
        width: 18px;
        height: 18px;
    }
            
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
            
    .catalog-title {
        font-size: 40px;
    }
            
    .catalog-title::after {
        width: 250px;
    }
            
    .catalog-description {
        font-size: 14px;
    }
            
    .catalog-subtitle {
        font-size: 16px;
    }
            
    .background-word {
        font-size: 80px;
    }
            
    .footer-container {
        padding: 0 10px;
        flex-direction: column;
    }
            
    .footer-columns {
        flex-direction: column;
    }
            
    .footer-title {
        font-size: 14px;
    }
            
    .footer-links a {
        font-size: 12px;
    }
            
    .footer-brand {
        font-size: 30px;
    }
            
    .popular-title {
        font-size: 30px;
    }
}

