/* ===== ПЕРЕМЕННЫЕ ЦВЕТОВ ===== */
:root {
    /* Основные цвета */
    --color-primary: #5f6f4a;
    --color-primary-dark: #4a5738;
    --color-primary-light: #7a8f60;
    --color-secondary: #ecf39e;
    --color-secondary-dark: #d4e07a;
    --color-accent: #861818;
    --color-accent-light: #a12222;

    /* Фоновые цвета */
    --bg-body: #f2f4ee;
    --bg-about: #c1cbb6;
    --bg-delivery: #c1cbb6;
    --bg-tabs: #f2f4ee;
    --bg-card: #fff;
    --bg-footer: #5f6f4a;
    --bg-hero-overlay: rgba(0,0,0,0.4);

    /* Текстовые цвета */
    --text-dark: #333;
    --text-light: #fff;
    --text-muted: #666;
    --text-muted-light: #ccc;
    --text-accent: #861818;

    /* Цвета ссылок */
    --link-color: #5f6f4a;
    --link-hover: #ecf39e;

    /* Тени */
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.1);
}

/* ===== Базовые стили ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Muller';
    src: url('../fonts/MullerRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Muller';
    src: url('../fonts/MullerBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Muller';
    src: url('../fonts/MullerExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

body {
    font-family: 'Muller', Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--bg-body);
    overflow-x: hidden;
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 60px 0;
}

.section__title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

/* ===== Шапка ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 80px;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    flex: 0 0 auto;
}

.logo__img {
    max-height: 55px;
    width: auto;
}

.nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
    white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
    color: var(--link-hover);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--link-hover);
}

.header-contacts {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contacts__phone {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-light);
    white-space: nowrap;
    line-height: 1;
}

.header-contacts__phone:hover {
    color: var(--link-hover);
}

.header-contacts__name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-light);
    white-space: nowrap;
    line-height: 1;
}

.header-contacts__name:hover {
    color: var(--link-hover);
}

.social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social__link {
    display: block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s;
}

.social__link:hover {
    transform: scale(1.1);
}

/* Viber */
.social__link--viber {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2C6.5 2 2 6.5 2 12c0 1.9.5 3.7 1.5 5.3L2.3 21.7l4.4-1.2c1.6 1 3.5 1.5 5.4 1.5 5.5 0 10-4.5 10-10S17.5 2 12 2zm4.9 13.6c-.3.8-1.5 1.5-2.4 1.6-.9.1-2.4.2-4.6-1-2.3-1.2-3.8-3.5-4-3.8-.2-.3-1-1.4-1-2.6 0-1.3.7-2 1-2.3.3-.3.6-.4.9-.4h.6c.2 0 .5.1.8.6.3.5 1 1.7 1.1 1.8.1.1.1.3 0 .5-.1.2-.2.4-.4.6-.2.2-.3.4-.5.6-.1.2-.2.4-.1.6.1.2.5.9 1.1 1.5.7.7 1.4 1 1.7 1.1.3.1.5.1.7-.1.2-.2.8-.9 1-1.2.2-.3.5-.3.8-.2.3.1 1.8.9 2.1 1 .3.2.5.2.6.4.1.1.1.4 0 .7z"/></svg>');
}

.social__link--viber:hover {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ecf39e"><path d="M12 2C6.5 2 2 6.5 2 12c0 1.9.5 3.7 1.5 5.3L2.3 21.7l4.4-1.2c1.6 1 3.5 1.5 5.4 1.5 5.5 0 10-4.5 10-10S17.5 2 12 2zm4.9 13.6c-.3.8-1.5 1.5-2.4 1.6-.9.1-2.4.2-4.6-1-2.3-1.2-3.8-3.5-4-3.8-.2-.3-1-1.4-1-2.6 0-1.3.7-2 1-2.3.3-.3.6-.4.9-.4h.6c.2 0 .5.1.8.6.3.5 1 1.7 1.1 1.8.1.1.1.3 0 .5-.1.2-.2.4-.4.6-.2.2-.3.4-.5.6-.1.2-.2.4-.1.6.1.2.5.9 1.1 1.5.7.7 1.4 1 1.7 1.1.3.1.5.1.7-.1.2-.2.8-.9 1-1.2.2-.3.5-.3.8-.2.3.1 1.8.9 2.1 1 .3.2.5.2.6.4.1.1.1.4 0 .7z"/></svg>');
}

/* Telegram */
.social__link--telegram {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2C6.5 2 2 6.5 2 12c0 5.5 4.5 10 10 10s10-4.5 10-10c0-5.5-4.5-10-10-10zm4.9 6.3l-1.7 8c-.1.5-.4.6-.8.4l-2.3-1.7-1.1 1.1c-.1.1-.2.2-.4.2l.2-2.3 4.2-3.8c.2-.1 0-.3-.2-.2l-5.2 3.3-2.2-.7c-.5-.1-.5-.5.1-.7l8.6-3.3c.4-.2.8.1.6.6z"/></svg>');
}

.social__link--telegram:hover {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ecf39e"><path d="M12 2C6.5 2 2 6.5 2 12c0 5.5 4.5 10 10 10s10-4.5 10-10c0-5.5-4.5-10-10-10zm4.9 6.3l-1.7 8c-.1.5-.4.6-.8.4l-2.3-1.7-1.1 1.1c-.1.1-.2.2-.4.2l.2-2.3 4.2-3.8c.2-.1 0-.3-.2-.2l-5.2 3.3-2.2-.7c-.5-.1-.5-.5.1-.7l8.6-3.3c.4-.2.8.1.6.6z"/></svg>');
}

/* Instagram */
.social__link--instagram {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2c-2.7 0-3 .1-4 .2-1 .1-1.7.3-2.3.5-.6.2-1.2.6-1.6 1-.5.5-.8 1-1 1.6-.2.6-.4 1.3-.5 2.3C2.1 9 2 9.3 2 12s.1 3 .2 4c.1 1 .3 1.7.5 2.3.2.6.6 1.2 1 1.6.5.5 1 .8 1.6 1 .6.2 1.3.4 2.3.5 1 .1 1.3.2 4 .2s3-.1 4-.2c1-.1 1.7-.3 2.3-.5.6-.2 1.2-.6 1.6-1 .5-.5.8-1 1-1.6.2-.6.4-1.3.5-2.3.1-1 .2-1.3.2-4s-.1-3-.2-4c-.1-1-.3-1.7-.5-2.3-.2-.6-.6-1.2-1-1.6-.5-.5-1-.8-1.6-1-.6-.2-1.3-.4-2.3-.5-1-.1-1.3-.2-4-.2zm0 1.8c2.7 0 3 .1 4 .2.9.1 1.4.2 1.7.3.4.1.7.3.9.5.2.2.4.5.5.9.1.3.2.8.3 1.7.1 1 .2 1.3.2 4s-.1 3-.2 4c-.1.9-.2 1.4-.3 1.7-.1.4-.3.7-.5.9-.2.2-.5.4-.9.5-.3.1-.8.2-1.7.3-1 .1-1.3.2-4 .2s-3-.1-4-.2c-.9-.1-1.4-.2-1.7-.3-.4-.1-.7-.3-.9-.5-.2-.2-.4-.5-.5-.9-.1-.3-.2-.8-.3-1.7-.1-1-.2-1.3-.2-4s.1-3 .2-4c.1-.9.2-1.4.3-1.7.1-.4.3-.7.5-.9.2-.2.5-.4.9-.5.3-.1.8-.2 1.7-.3 1-.1 1.3-.2 4-.2z"/><path d="M12 6.5c-3 0-5.5 2.5-5.5 5.5s2.5 5.5 5.5 5.5 5.5-2.5 5.5-5.5-2.5-5.5-5.5-5.5zm0 9c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"/><circle cx="17.5" cy="6.5" r="1.3"/></svg>');
}

.social__link--instagram:hover {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ecf39e"><path d="M12 2c-2.7 0-3 .1-4 .2-1 .1-1.7.3-2.3.5-.6.2-1.2.6-1.6 1-.5.5-.8 1-1 1.6-.2.6-.4 1.3-.5 2.3C2.1 9 2 9.3 2 12s.1 3 .2 4c.1 1 .3 1.7.5 2.3.2.6.6 1.2 1 1.6.5.5 1 .8 1.6 1 .6.2 1.3.4 2.3.5 1 .1 1.3.2 4 .2s3-.1 4-.2c1-.1 1.7-.3 2.3-.5.6-.2 1.2-.6 1.6-1 .5-.5.8-1 1-1.6.2-.6.4-1.3.5-2.3.1-1 .2-1.3.2-4s-.1-3-.2-4c-.1-1-.3-1.7-.5-2.3-.2-.6-.6-1.2-1-1.6-.5-.5-1-.8-1.6-1-.6-.2-1.3-.4-2.3-.5-1-.1-1.3-.2-4-.2zm0 1.8c2.7 0 3 .1 4 .2.9.1 1.4.2 1.7.3.4.1.7.3.9.5.2.2.4.5.5.9.1.3.2.8.3 1.7.1 1 .2 1.3.2 4s-.1 3-.2 4c-.1.9-.2 1.4-.3 1.7-.1.4-.3.7-.5.9-.2.2-.5.4-.9.5-.3.1-.8.2-1.7.3-1 .1-1.3.2-4 .2s-3-.1-4-.2c-.9-.1-1.4-.2-1.7-.3-.4-.1-.7-.3-.9-.5-.2-.2-.4-.5-.5-.9-.1-.3-.2-.8-.3-1.7-.1-1-.2-1.3-.2-4s.1-3 .2-4c.1-.9.2-1.4.3-1.7.1-.4.3-.7.5-.9.2-.2.5-.4.9-.5.3-.1.8-.2 1.7-.3 1-.1 1.3-.2 4-.2z"/><path d="M12 6.5c-3 0-5.5 2.5-5.5 5.5s2.5 5.5 5.5 5.5 5.5-2.5 5.5-5.5-2.5-5.5-5.5-5.5zm0 9c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"/><circle cx="17.5" cy="6.5" r="1.3"/></svg>');
}

.burger {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 5px auto;
    transition: all 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ===== Герой секция ===== */
.hero {
    position: relative;
    height: 537px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-hero-overlay), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__title {
    color: var(--text-light);
    font-size: 56px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== О нас ===== */
.about {
    background-color: var(--bg-about);
}

.about__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-dark);
}

/* ===== Вкладки ===== */
.tabs {
    background-color: var(--bg-tabs);
}

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

.tab {
    position: relative;
    display: block;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tab:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tab__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.tab__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.tab__title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--text-light);
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 2;
}

/* ===== Стили для ссылок в названиях товаров (тюльпаны) ===== */
.product-card__title .product-link,
.product-detail__title .product-link {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.product-card__title .product-link:hover,
.product-detail__title .product-link:hover {
    color: var(--link-hover);
    text-decoration: none;
}

/* ===== Каталог товаров ===== */
.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card__image {
    position: relative;
    padding-bottom: 111.111%;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    cursor: pointer;
}

.product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-card__image img {
    transform: scale(1.08);
}

.product-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    min-height: 3.6em;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-number {
    font-weight: 800;
    color: var(--color-primary);
    margin-right: 5px;
}

.product-card__description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__price,
.product-card__price.price-pending{
    font-size: 18px;
    font-weight: 800;
    color: var(--color-accent);
    margin-top: auto;
    margin-bottom: 15px;
    min-height: 27px;
}

.product-card__btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.product-card__btn:hover {
    background: #333;
}

/* ===== Стили для проданных товаров ===== */
.product-card.sold-out .product-card__image,
.product-card.sold-out .product-card__title,
.product-card.sold-out .product-card__description,
.product-card.sold-out .product-card__price,
.product-card.sold-out .product-card__btn,
.product-card.sold-out .product-number {
    opacity: 0.5;
    filter: blur(0.5px);
    pointer-events: none;
}

.product-card.sold-out::after {
    content: 'ПРОДАНО';
    display: block;
    font-size: 24px;
    font-family: 'MullerExtraBold', sans-serif;
    color: var(--text-light);
    text-align: center;
    border-radius: 10px;
    padding: 15px 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-primary);
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-weight: 800;
    letter-spacing: 1px;
}

/* ===== Кнопки назад ===== */
.back-to-tabs {
    display: inline-block;
    margin: 20px 0 30px;
    color: var(--text-accent);
    font-size: 16px;
    transition: color 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    padding: 10px 0;
}

.back-to-tabs:hover {
    color: var(--link-hover);
}

.back-to-tabs::before {
    content: '←';
    margin-right: 5px;
}

.product-detail__back {
    display: inline-block;
    color: var(--text-accent);
    font-size: 16px;
    transition: color 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    margin: 20px 0;
    padding: 10px 0;
}

.product-detail__back:hover {
    color: var(--link-hover);
}

.product-detail__back::before {
    content: '←';
    margin-right: 5px;
}

/* ===== Заголовок категории ===== */
.category-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

/* ===== Доставка ===== */
.delivery {
    background-color: var(--bg-delivery);
}

.delivery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.delivery-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.delivery-card__icon {
    margin-bottom: 20px;
}

.delivery-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.delivery-card__text {
    font-size: 16px;
    color: var(--color-primary);
    line-height: 1.5;
    margin-bottom: 10px;
}

.delivery-card__address,
.delivery-card__work-time {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.delivery-card__work-time strong {
    font-weight: 700;
    color: #000;
}

.delivery-card__work-time span {
    font-size: 12px;
    color: #888;
}

/* ===== Карта ===== */
.map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* ===== Детальная страница товара ===== */
.product-detail {
    padding: 40px 0 60px;
    background-color: var(--bg-card);
    min-height: calc(100vh - 80px);
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-detail__image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f5;
    margin: 0 auto;
    cursor: pointer;
}

.product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail__info {
    padding: 20px 0;
}

.product-detail__title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.product-detail__title .product-number {
    font-size: 36px;
}

.product-detail__price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--color-accent);
}

.product-detail__price.price-pending {
    color: var(--color-accent);
    font-weight: 400;
    font-style: italic;
    font-size: 28px;
}

.product-detail__description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}

.product-detail__description ul {
    margin: 15px 0;
    padding-left: 20px;
}

.product-detail__description li {
    margin-bottom: 8px;
}

/* ===== Футер ===== */
.footer {
    background-color: var(--bg-footer);
    color: var(--text-light);
    padding: 30px 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    margin-bottom: 25px;
}

.footer__logo {
    text-align: center;
}

.footer__logo img {
    max-height: 60px;
    margin: 0 auto;
}

.footer__address {
    font-size: 16px;
    color: var(--text-muted-light);
    text-align: center;
    line-height: 1.5;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer__phone {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    transition: color 0.2s;
    white-space: nowrap;
}

.footer__phone:hover {
    color: var(--link-hover);
}

.footer__copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--text-muted-light);
}

.footer__copyright span {
    font-weight: 700;
    color: var(--text-light);
}

/* ===== Кнопка наверх ===== */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s;
    width: 50px;
    height: 50px;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

.scroll-top svg {
    width: 100%;
    height: 100%;
}

.scroll-top:hover rect {
    fill: var(--link-hover);
}

.scroll-top:hover path {
    stroke: var(--text-light);
}

/* ===== Для страниц категорий ===== */
.category-page main {
    min-height: calc(100vh - 80px);
    padding-bottom: 40px;
}

.no-products {
    text-align: center;
    font-size: 24px;
    color: var(--color-primary);
    padding: 50px 0;
}

/* ===== Стили для описания товара ===== */
.product-descr {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.product-descr__intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.product-descr__section {
    margin-bottom: 25px;
}

.product-descr__title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    position: relative;
    padding-left: 12px;
}

.product-descr__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.product-descr__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-descr__list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.product-descr__list li::before {
    content: '•';
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    left: 5px;
    top: -2px;
}

.product-descr__list--plus li::before {
    content: '+';
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
}

.product-descr__prop {
    font-weight: 700;
    color: #000;
    margin-right: 5px;
}

/* Стили для ссылки на сайт тюльпанов в описании товара */
.product-descr__list .product-link {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s;
}

.product-descr__list .product-link:hover {
    color: var(--link-hover);
    text-decoration: none;
}