/* === FAMILY TREE PREMIUM THEME (FINAL COMPLETE) === */

:root {
    --bg-body: #ffffff;
    --bg-secondary: #F9F9F9;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --accent: #2C2622;
    --accent-hover: #000000;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 50px;
    --container-width: 1320px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    padding-top: 0px;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: var(--text-main);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

/* КНОПКИ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    padding: 14px 34px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border-color: #E5E5E5;
}

.btn--outline:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.btn-text-danger {
    color: #999;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}

.btn-text-danger:hover {
    color: #e74c3c;
}

.btn-full {
    width: 100%;
}

.btn--small {
    padding: 10px 20px;
    font-size: 11px;
}

/* HEADER 
.header { position: fixed; top: 0; left: 0; right: 0; padding: 20px 0; z-index: 1000; transition: 0.4s; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header.scrolled { padding: 15px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.header__container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-head); }
.nav__list { display: flex; gap: 40px; }
.nav__link { font-family: var(--font-head); font-size: 13px; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.nav__link:hover { color: var(--accent); }
*/

/* --- TOP BAR --- */
.header-top {
    background-color: #111;
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
}

/* --- MAIN HEADER --- */
.header-main {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.main-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Лого */
.logo {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
}

/* Обертка для Каталога и Поиска (чтобы были вместе) */
.search-wrapper {
    flex-grow: 1;
    max-width: 700px;
    /* Ограничиваем ширину */
    display: flex;
    align-items: center;
    gap: 15px;
    /* Расстояние между кнопкой Каталог и Поиском */
    margin: 0 40px;
    /* Отступы от Лого и Иконок */
}

/* Кнопка Каталога */
.btn-catalog {
    background: #2C2622;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    /* Или 30px, если хочешь круглую */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-catalog:hover {
    background: #000;
}

.burger-icon {
    font-size: 16px;
}

/* Поиск (обновляем, чтобы растягивался) */
.search-box {
    flex-grow: 1;
    width: 100%;
}

/* Дропдаун для кнопки каталога */
.catalog-btn-wrapper {
    position: relative;
}

.catalog-btn-wrapper:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.2s;
}

/* Вложенное меню */
.submenu-wrapper {
    position: relative;
}

.submenu-wrapper:hover .submenu {
    display: block;
    animation: fadeInUp 0.2s;
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    /* Выпадает справа */
    top: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    z-index: 101;
}


.search-box form {
    display: flex;
    border: 2px solid #eee;
    border-radius: 50px;
    overflow: hidden;
    transition: 0.3s;
}

.search-box form:hover {
    border-color: #ccc;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-box button {
    background: none;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

/* Иконки */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icon-link {
    color: #333;
    transition: 0.3s;
    position: relative;
}

.icon-link:hover {
    color: #000;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2C2622;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- NAVIGATION BAR --- */
.header-nav-bar {
    border-bottom: 1px solid #eee;
    background: #fff;
}

/* Если хочешь "липкое" меню, раскомментируй это: */
/* .header-nav-bar.sticky { position: fixed; top: 0; width: 100%; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } */

.menu-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.menu-link {
    display: block;
    padding: 18px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2C2622;
    transition: 0.3s;
}

.menu-link:hover::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-top: 3px solid #2C2622;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.2s;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    text-transform: capitalize;
    /* Первая буква заглавная */
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    color: #000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* АДАПТИВ (Планшет/Мобильный) */
@media (max-width: 900px) {
    .header-top {
        display: none;
    }

    /* Скрываем верхнюю полоску */
    .header-main {
        padding: 15px 0;
    }

    .search-box {
        display: none;
    }

    /* Скрываем поиск (или можно оставить иконку) */
    .header-nav-bar {
        display: none;
    }

    /* Скрываем меню (нужен бургер) */
    /* ВАЖНО: Тут нужно реализовать Мобильное меню (Гамбургер), пока просто скроем для теста десктопа */
}

.header-nav-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* БУРГЕР */
.burger-btn {
    display: none;
    /* Скрыт на ПК */
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-btn span {
    width: 25px;
    height: 2px;
    background: #000;
}

/* МОБИЛЬНОЕ МЕНЮ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.3s;
    padding: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.mobile-menu-overlay.open {
    display: block;
}

.mobile-nav-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
}

.mobile-nav-list a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* АДАПТИВ */
@media (max-width: 900px) {
    .burger-btn {
        display: flex;
    }

    .header-nav-bar {
        display: none;
    }

    /* Скрываем обычное меню */
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-submenu.show {
    display: block;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
}


/*Header*/

/* HERO */
.hero {
    height: 100vh;
    margin-top: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}


/* === КАТАЛОГ === */
.collection-header {
    background-color: #F6F6F6;
    padding: 30px 0;
    text-align: left;
    margin-bottom: 40px;
}

.collection-title {
    font-size: 2rem;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.breadcrumbs-center {
    font-size: 13px;
    color: #888;
}

.breadcrumbs-center a:hover {
    color: var(--accent);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 50px;
    align-items: start;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.product-card {
    background: transparent;
    transition: transform 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
    background: #fff;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.8s ease;
}

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

.quick-add-form {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    transform: translateY(100px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    z-index: 10;
    width: auto;
}

.product-card:hover .quick-add-form {
    transform: translateY(0);
    opacity: 1;
}

.quick-add-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: var(--accent);
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.quick-add-btn:hover {
    background: var(--accent);
    color: #fff;
}

.product-card__body {
    padding-top: 15px;
    text-align: center;
}

.product-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.product-card__price {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text-muted);
}

.sidebar-widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.widget-list li {
    margin-bottom: 10px;
}

.widget-list a {
    font-size: 14px;
    color: #555;
}

.widget-list a.active {
    color: var(--accent);
    font-weight: bold;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
}

.sidebar-banner {
    background: var(--bg-secondary);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-md);
}

.sidebar-banner h3 {
    font-size: 1.2rem;
    margin: 10px 0 0 0;
}

/* === СТРАНИЦА ТОВАРА === */
.product-layout-premium {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    align-items: start;
}

.gallery-container {
    display: flex;
    gap: 20px;
    height: 550px;
    margin-bottom: 40px;
}

.gallery-thumbs-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
    flex-shrink: 0;
    overflow-y: auto;
    height: 100%;
    scrollbar-width: none;
}

.gallery-thumbs-vertical::-webkit-scrollbar {
    display: none;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 1px solid #eee;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.7;
    transition: 0.3s;
    background: #fff;
}

.thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-image-wrapper {
    flex-grow: 1;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: zoom-in;
    position: relative;
}

.main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    z-index: 10;
    font-weight: 600;
}

.sticky-info {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.p-title {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.p-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
}

.description-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    position: relative;
}

.description-text.collapsed {
    max-height: 100px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.read-more-btn {
    border: none;
    background: none;
    color: var(--accent);
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: underline;
}

.buy-controls-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.qty-selector.full-width {
    width: 100%;
    justify-content: space-between;
    padding: 0 15px;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
}

.qty-selector button {
    background: none;
    border: none;
    font-size: 18px;
    width: 30px;
    cursor: pointer;
    color: var(--accent);
}

.qty-selector input {
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 600;
    color: var(--text-main);
    font-size: 16px;
}

.btn-add-cart.full-width {
    width: 100%;
    height: 50px;
}

.btn--outline.full-width {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badges-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #F9F9F9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.trust-item span {
    font-size: 24px;
}

.product-tabs-section {
    margin-top: 0;
}

.tab-headers {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.tab-link {
    border: none;
    background: none;
    padding-bottom: 10px;
    font-size: 16px;
    color: #999;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.tab-link.active {
    color: var(--accent);
    border-color: var(--accent);
    font-weight: 600;
}

.review-item,
.qa-item {
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.review-gallery img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: zoom-in;
}

.qa-form {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

/* --- КОРЗИНА (PREMIUM) --- */
.cart-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    align-items: start;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 100px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px 100px;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

.cart-item-price {
    color: #666;
    font-size: 14px;
}

.cart-remove-link {
    font-size: 12px;
    color: #999;
    text-decoration: underline;
    margin-top: 5px;
    display: inline-block;
    cursor: pointer;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
}

.qty-selector.small {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0 5px;
}

.qty-selector.small button {
    font-size: 16px;
    width: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent);
}

.qty-selector.small input {
    font-size: 14px;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
}

.cart-actions-bottom {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.cart-sidebar {
    position: sticky;
    top: 100px;
}

.cart-summary-box {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.input-coupon {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    outline: none;
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-top: 20px;
}

/* FIX БАЛЛОВ В КОРЗИНЕ */
.loyalty-row {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.points-switch {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.points-switch input {
    display: none;
}

.points-switch .slider {
    width: 44px;
    height: 24px;
    background: #ddd;
    border-radius: 24px;
    position: relative;
    transition: 0.3s;
    flex-shrink: 0;
}

.points-switch .slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.points-switch input:checked+.slider {
    background: #166534;
}

.points-switch input:checked+.slider::before {
    transform: translateX(20px);
}

.cart-trust {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

/* --- CHECKOUT (ОФОРМЛЕНИЕ) --- */
.checkout-page-wrapper {
    min-height: 100vh;
    background: #fff;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-main {
    padding: 50px 5% 80px 0;
    border-right: 1px solid #e1e1e1;
}

.checkout-header {
    margin-bottom: 40px;
}

.checkout-sidebar {
    background: #fafafa;
    padding: 50px 0 80px 5%;
}

.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.checkout-item-img {
    position: relative;
    width: 64px;
    height: 64px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #737373;
    color: white;
    font-size: 11px;
    font-weight: 500;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 700;
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
}

.divider-light {
    border-top: 1px solid #e1e1e1;
    margin: 20px 0;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-floating {
    position: relative;
    margin-bottom: 15px;
}

.form-floating input {
    width: 100%;
    padding: 22px 15px 8px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-floating input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.form-floating label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #737373;
    pointer-events: none;
    transition: 0.2s ease all;
}

.form-floating input:focus~label,
.form-floating input:not(:placeholder-shown)~label {
    top: 8px;
    font-size: 11px;
    transform: none;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.btn-primary-checkout {
    padding: 20px 30px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 5px;
}

.btn-text-back {
    color: var(--accent);
    font-size: 14px;
    cursor: pointer;
}

/* Доставка */
.shipping-methods {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #d9d9d9;
    cursor: pointer;
    background: #fff;
    position: relative;
    transition: background 0.2s;
}

.shipping-option:last-child {
    border-bottom: none;
}

.shipping-option:hover {
    background: #f9f9f9;
}

.shipping-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #d9d9d9;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    background: #fff;
    flex-shrink: 0;
}

.shipping-option input:checked+.radio-circle {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: inset 0 0 0 4px #fff;
}

/* --- ЛИЧНЫЙ КАБИНЕТ (FIXED) --- */
.account-header {
    background-color: #F9F9F9;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.user-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.user-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.loyalty-card {
    border-radius: 16px;
    padding: 25px;
    color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 50px;
}

.loyalty-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tier-friend {
    background: linear-gradient(135deg, #78716c, #a8a29e);
}

.tier-creator {
    background: linear-gradient(135deg, #b45309, #d97706);
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-btn {
    text-align: left;
    padding: 12px 15px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #555;
    transition: 0.2s;
}

.nav-btn:hover {
    background: #f5f5f5;
}

.nav-btn.active {
    background: #fff;
    color: #000;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* FIX КАРТОЧКИ ЗАКАЗА */
.order-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
}

.order-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.order-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
}

.order-date {
    font-size: 13px;
    color: #999;
}

.order-status {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.status-new {
    background: #e0f2fe;
    color: #0369a1;
}

.status-processing {
    background: #fef9c3;
    color: #a16207;
}

.status-shipped {
    background: #dcfce7;
    color: #15803d;
}

.status-completed {
    background: #f0fdf4;
    color: #16a34a;
}

/* FIX ПРОГРЕСС БАРА */
.order-progress {
    margin: 30px 0;
}

.progress-line {
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #4a403a);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* FIX СПИСОК ТОВАРОВ В ЗАКАЗЕ */
.mini-product {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.mini-product img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #eee;
}

.mini-info {
    font-size: 14px;
    line-height: 1.4;
}

.mini-info a {
    font-weight: 600;
    color: #333;
    display: block;
}

.mini-qty {
    font-size: 12px;
    color: #888;
}

.wishlist-remove {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #e74c3c !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 50 !important;
    text-decoration: none !important;
    border: none !important;
}

.wishlist-remove:hover {
    transform: scale(1.1);
}

.form-grid-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

/* --- МОДАЛКА И ЛАЙТБОКС (FIXED) --- */
.modal-overlay,
.lightbox-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.lightbox-overlay {
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
}

.modal-overlay.active,
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
    display: flex !important;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: 0.3s;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.lb-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
}

.lb-content img {
    max-width: 100%;
    max-height: 90vh;
}

.lb-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 30px;
    border-radius: 50%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lb-prev {
    left: 30px;
}

.lb-next {
    right: 30px;
}

.lb-prev:hover,
.lb-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer__title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    color: var(--text-muted);
    font-size: 14px;
}

/* --- АДАПТИВ ХЕДЕРА --- */

@media (max-width: 1000px) {
    /* 1. Скрываем десктопные элементы */
    .header-top,
    .search-box,
    .header-nav-bar,
    .header-actions a:not(.cart-btn-wrapper)

    /* Скрываем все иконки кроме корзины и бургера */
        {
        display: none;
    }

    /* 2. Настраиваем сетку Хедера */
    .header-main {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .main-header-content {
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        /* Бургер | Лого | Корзина */
        align-items: center;
        justify-items: center;
    }

    /* Бургер (показываем) */
    .mobile-burger {
        display: block;
        justify-self: start;
        /* Слева */
        font-size: 24px;
        background: none;
        border: none;
        padding: 0;
    }

    /* Лого (центр) */
    .logo {
        font-size: 20px;
        /* Чуть меньше */
    }

    /* Корзина (справа) */
    .header-actions {
        display: flex;
        justify-self: end;
        gap: 0;
    }

    /* Возвращаем иконку корзины (она была скрыта выше) */
    .header-actions .cart-btn {
        display: flex !important;
    }

    /* 3. Мобильное меню (Шторка) */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 2000;
        transform: translateX(-100%);
        transition: 0.3s;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-overlay.active {
        transform: translateX(0);
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        background: none;
        border: none;
    }

    .mobile-nav-list {
        margin-top: 60px;
        list-style: none;
        padding: 0;
    }

    .mobile-nav-list li {
        border-bottom: 1px solid #f5f5f5;
    }

    .mobile-nav-list a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

    /* Подменю в мобилке */
    .mobile-dropdown-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        font-size: 18px;
        font-weight: 600;
    }

    .mobile-submenu {
        display: none;
        background: #f9f9f9;
        padding: 10px 20px;
    }

    .mobile-submenu.show {
        display: block;
    }

    .mobile-submenu a {
        font-size: 16px;
        font-weight: 400;
    }
}


.sub-list {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
}

.sub-list.open {
    display: block;
}

.accordion-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.accordion-arrow.rotated {
    transform: rotate(180deg);
}

/* --- HERO SLIDER (PREMIUM) --- */
.hero-section-premium {
    height: 400px;
    /* Уменьшили высоту */
    position: relative;
    /* Убираем overflow:hidden, чтобы следующий блок мог наехать поверх (если нужно) */
    /* Но лучше использовать z-index */
    z-index: 1;
}

.hero-swiper {
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 5s ease;
    /* Зум эффект фона */
}

.swiper-slide-active .hero-bg {
    transform: scale(1.05);
    /* При активном слайде фон чуть увеличивается */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Легкое затемнение */
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
}

.hero-text-content {
    max-width: 600px;
    color: #fff;
    text-align: left;
    /* Можно center, если хочешь */
}

.hero-text-box {
    padding: 100px 0 0 100px;

}

.hero-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.3s;
    /* Задержка анимации */
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.5s;
}

.btn-white-premium {
    background: #fff;
    color: #000;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: 0.3s;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.7s;
}

.btn-white-premium:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* Навигация Hero */
.hero-next,
.hero-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.hero-next:after,
.hero-prev:after {
    font-size: 18px;
}

.hero-next:hover,
.hero-prev:hover {
    background: #fff;
    color: #000;
}


/* --- CATEGORY CAROUSEL (OVERLAP) --- */
.category-carousel-section {
    position: relative;
    z-index: 10;
    /* Поверх слайдера */
    margin-top: -80px;
    /* Наезжает на слайдер на 80px */
    padding: 0;
    /* Убираем лишние отступы */
    background: transparent;
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    /* Ширина контента */
    margin: 0 auto;
    /* Центрируем блок на странице */
    padding: 0 60px;
    /* Место для стрелок слева и справа */
}


/* Слайдер должен занимать всю доступную ширину */
.category-swiper {
    width: 100%;
    padding: 10px 0 20px;
    /* Отступы для теней */

}

/* СТРЕЛКИ (Принудительно видимые) */
.cat-next,
.cat-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: var(--text-main);

    /* Абсолютное позиционирование относительно carousel-wrapper */
    position: absolute;
    top: 51%;
    /* Центр картинки */
    transform: translateY(-50%);
    z-index: 20;

    /* Рисуем стрелку */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Выносим стрелки в padding зоны wrapper */
.cat-prev {
    left: 0;
}

.cat-next {
    right: 0;
}

.cat-next:after,
.cat-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.cat-next:hover,
.cat-prev:hover {
    background: var(--accent);
    color: #fff;
}

/* Карточка */
.cat-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    /* Скругленный квадрат */
    overflow: hidden;
    margin-bottom: 10px;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.cat-title {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- TESTIMONIALS (Nov-Minicom Copy) --- */

.testimonial-section {
    background-color: #F8F8F8;
    /* Светло-серый фон секции */
    padding: 30px 0;
}

.testimonial-wrapper {
    position: relative;
    padding: 0 50px;
    /* Место для стрелок */
}

/* Карточка отзыва */
.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    height: 100%;
    /* Одинаковая высота */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Делаем все слайды одной высоты */
.testimonial-swiper .swiper-slide {
    height: auto;
    /* Позволяет Flexbox растянуть их */
    display: flex;
    /* Чтобы карточка внутри растянулась */
}

.testimonial-card {
    /* ... старые стили ... */
    height: 100%;
    /* Занимает всю высоту слайда */
    width: 100%;

    /* Ограничиваем высоту текста, если он слишком длинный */
    display: flex;
    flex-direction: column;
}

.t-text {
    /* ... */
    flex-grow: 1;
    /* Текст занимает всё свободное место */

    /* Ограничение строк (Line Clamp) */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Максимум 4 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Элементы */
.t-stars {
    color: #ffc107;
    /* Золотой */
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.t-product a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-main);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: 0.3s;
}

.t-product a:hover {
    text-decoration-color: var(--accent);
}

.t-text {
    font-family: var(--font-body);
    font-style: italic;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Растягивает блок, прижимая автора вниз */
}

/* Автор */
.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-author img,
.t-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.t-avatar-placeholder {
    background: #2C2622;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.t-info {
    text-align: left;
}

.t-info strong {
    display: block;
    font-size: 14px;
    color: #000;
}

.t-info span {
    font-size: 12px;
    color: #999;
}

/* Декоративная кавычка */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: serif;
    font-size: 80px;
    color: #f0f0f0;
    line-height: 0;
    pointer-events: none;
}

/* Навигация */
.t-prev,
.t-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.t-prev {
    left: 0;
}

.t-next {
    right: 0;
}

.t-prev:after,
.t-next:after {
    font-size: 14px;
    font-weight: bold;
}

.t-prev:hover,
.t-next:hover {
    background: var(--accent);
    color: #fff;
}

.t-pagination {
    bottom: -40px !important;
    /* Опускаем точки ниже */
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

/* АДАПТИВ */
@media (max-width: 768px) {
    .testimonial-wrapper {
        padding: 0;
    }

    .t-prev,
    .t-next {
        display: none;
    }

    /* Скрываем стрелки, оставляем свайп */
}

/* Навигация слайдера товаров (Сверху справа) */
.slider-nav-top {
    display: flex;
    gap: 10px;
}


.prod-prev,
.prod-next {
    position: static;
    /* Убираем absolute, чтобы они стояли рядом с заголовком */
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
    /* На всякий случай */
}

.prod-prev:after,
.prod-next:after {
    font-size: 14px;
    font-weight: bold;
}

.prod-prev:hover,
.prod-next:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.product-card {
    width: 100%;
    /* Добавь это, если нет */
}

/* Принудительная ширина слайдов */
.product-swiper .swiper-slide {
    width: 25%;
    /* 4 товара = 25% каждому (как fallback) */
    box-sizing: border-box;
}

/* На мобильном */
@media (max-width: 768px) {
    .product-swiper .swiper-slide {
        width: 50%;
    }
}


/* --- BLOG HOME (Nov-Minicom Style) --- */

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

.blog-card-home {
    group: 1;
    /* Для ховера */
}

.blog-img {
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Зум при наведении */
.blog-card-home:hover .blog-img img {
    transform: scale(1.1);
}

/* Бейджик с датой */
.blog-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.blog-date-badge .day {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.blog-date-badge .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
}

/* Текст */
.blog-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: #000;
    font-weight: 600;
}

.blog-title a:hover {
    color: var(--accent);
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.btn-read {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

.btn-read:hover {
    color: #000;
    border-color: #000;
}

/* АДАПТИВ */
@media (max-width: 900px) {
    .blog-grid-home {
        grid-template-columns: 1fr;
        /* Одна колонка на мобильном */
    }
}

/* --- BLOG PAGE (Column Layout) --- */

.blog-layout {
    display: grid;
    /* Сайдбар (300px) | Контент (все остальное) */
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}


/* Статья */
.blog-post-large {
    margin-bottom: 60px;
}

.post-img-wrapper {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-large:hover .post-img-wrapper img {
    transform: scale(1.05);
}

.post-date-box {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-date-box .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.post-date-box .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
}

.post-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-meta .sep {
    margin: 0 10px;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.post-title a {
    color: #000;
}

.post-title a:hover {
    color: var(--accent);
}

.post-excerpt {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Сайдбар блога */
.search-form-blog {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
}

.search-form-blog input {
    border: none;
    padding: 10px 15px;
    width: 100%;
    outline: none;
}

.search-form-blog button {
    border: none;
    background: none;
    padding: 0 15px;
    cursor: pointer;
}

.recent-posts-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-info a {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    display: block;
    margin-bottom: 5px;
}

.recent-info .date {
    font-size: 12px;
    color: #999;
}

.tags-cloud a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    margin: 0 5px 5px 0;
    transition: 0.2s;
}

.tags-cloud a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* АДАПТИВ */
@media (max-width: 900px) {
    .blog-sidebar {
        margin-top: 60px;
    }

    .post-img-wrapper {
        height: 250px;
    }
}

/* На мобильном сайдбар уходит вниз */
@media (max-width: 900px) {
    .blog-layout {
        grid:
    }
}

/* ПАГИНАЦИЯ (PREMIUM) */
.pagination-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 50px;
    justify-content: flex-start;
    /* Выравнивание влево (как и контент блога) */
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e1e1;
    border-radius: 50%;
    /* Круглые кнопки */
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #fff;
}

.page-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    cursor: default;
    pointer-events: none;
}

.page-btn.prev,
.page-btn.next {
    font-size: 18px;
    /* Стрелки чуть крупнее */
}

/* --- BLOG DETAIL --- */

.post-detail-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 500px;
}

.post-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-detail-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.post-meta-detail {
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.post-meta-detail .sep {
    margin: 0 10px;
}

/* Типографика статьи */
.post-body {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-body h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.post-body blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    font-style: italic;
    color: #555;
    margin: 30px 0;
}

/* --- СТИЛИ КОНТЕНТА (Умные картинки) --- */

/* 1. Общие настройки для картинок */
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.post-tags span,
.post-share span {
    font-weight: 600;
    margin-right: 10px;
}

.post-tags a {
    color: #666;
}

.post-tags a:hover {
    color: var(--accent);
}

.post-share a {
    margin-left: 10px;
    font-weight: 600;
}

/* ПОХОЖИЕ СТАТЬИ */
.similar-posts-section {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.similar-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 колонки */
    gap: 30px;
}

.similar-card {
    display: block;
    group: 1;
}

.similar-img {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.similar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.similar-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #000;
    font-weight: 600;
}

.similar-card:hover .similar-name {
    color: var(--accent);
}

.similar-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .similar-grid {
        grid-template-columns: 1fr;
    }
}

/*СТИЛИ ДЛЯ КОММЕНТАРИЕВ*/
.comment-item {
    margin-bottom: 30px;
}

.comment-content {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.reply-item {
    margin-left: 50px;
    margin-top: 15px;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

/* Линия связи */
.reply-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -25px;
    width: 25px;
    height: 30px;
    border-left: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-radius: 0 0 0 10px;
}

.c-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.c-header strong {
    color: #2C2622;
}

.c-header span {
    color: #999;
    font-size: 12px;
}

.btn-reply {
    background: none;
    border: none;
    color: #2C2622;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-reply:hover {
    text-decoration: underline;
}

.comment-form-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-top: 40px;
}

/* ФОРМА КОММЕНТАРИЕВ */
.comment-form-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.comment-form-box h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.comment-form-box input,
.comment-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
    background: #f9f9f9;
}

.comment-form-box input:focus,
.comment-form-box textarea:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(44, 38, 34, 0.1);
}

.comment-form-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #555;
}

/* Ошибки */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Кнопка отмены */
#cancelReplyBtn {
    margin-left: 10px;
}

/* Вложенные комментарии */
.reply-item {
    margin-left: 50px;
    /* Отступ слева */
    margin-top: 15px;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

/* Линия-связка (дерево) */
.reply-item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -25px;
    width: 25px;
    height: 40px;
    border-left: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-radius: 0 0 0 10px;
}

/* Кнопка "Ответить" */
.btn-reply {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-reply:hover {
    text-decoration: underline;
}

.share-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: 0.3s;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    margin-left: 10px;
}

.share-link:hover {
    background: var(--accent);
    color: #fff;
}

/* --- NEWSLETTER FORM (PREMIUM) --- */

.newsletter-col {
    max-width: 350px;
    /* Ограничиваем ширину */
}

.newsletter-form .input-group {
    display: flex;
    position: relative;
    border-bottom: 1px solid #555;
    /* Тонкая линия снизу */
    transition: 0.3s;
}

.newsletter-form .input-group:focus-within {
    border-color: #090909;
    /* При фокусе белая */
}

.newsletter-form input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: #1d1d1d;
    font-size: 14px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #777;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #4a4949;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    transition: 0.3s;
}

.newsletter-form button:hover {
    color: #151414;
    transform: translateX(5px);
}

.sub-message {
    margin-top: 10px;
    font-size: 12px;
    height: 20px;
    /* Фикс высота, чтобы не прыгало */
    transition: 0.3s;
}

/* === CRITICAL FIXES (HEADER & CATEGORIES) === */

/* 1. HEADER (Меню в одну строку) */
.header-main .main-header-content {
    display: flex !important;
    /* Убеждаемся, что это Flex */
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.search-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 20px;
}

.btn-catalog {
    background: #2C2622;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-catalog a {
    color: #fff;
    text-decoration: none;
}

/* Ссылка внутри кнопки */

.header-nav-bar .menu-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 2. CATEGORY CAROUSEL (Исправляем наезд на слайдер) */
.category-carousel-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    /* Тянем вверх */
    background: transparent;
    padding: 0;
}

.carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    /* Место для стрелок */
    position: relative;
}

/* Карточки категорий */
.cat-circle-card {
    display: block;
    text-align: center;
    text-decoration: none;
}

.cat-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    /* Квадрат */
    border-radius: 16px;
    /* Скругление */
    overflow: hidden;
    margin-bottom: 10px;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #1A1A1A;
    background: #fff;
    /* Фон для текста */
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Стрелки категорий (видимые!) */
.cat-next,
.cat-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #000;
    z-index: 20;
    position: absolute;
    top: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-next:after,
.cat-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.cat-prev {
    left: 5px;
}

.cat-next {
    right: 5px;
}

/* 3. HERO SLIDER (Фикс высоты) */
.hero-slider-section {
    height: 350px;
    position: relative;
    z-index: 1;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* --- BLOG + PROMO SPLIT --- */

.blog-promo-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Левая шире */
    gap: 40px;
    align-items: stretch;
}

/* Блог (Горизонтальные карточки) */
.blog-card-horizontal {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.blog-img-h {
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-img-h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card-horizontal:hover .blog-img-h img {
    transform: scale(1.05);
}

.blog-info-h .date {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}

.blog-info-h h4 {
    font-size: 1.1rem;
    margin: 5px 0;
    line-height: 1.3;
}

.blog-info-h h4 a {
    color: #000;
}

.blog-info-h p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.read-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

/* Баннер (Карточка) */

.promo-card {
    height: 100%;
    min-height: 350px;
    /* Увеличили высоту */
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Убрали color: #fff отсюда, задали явно в HTML */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Затемнение через псевдоэлемент, а не фильтр (надежнее) */
}

.promo-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* 40% черного */
}

.promo-content-inner {
    position: relative;
    z-index: 2;
    /* Чтобы быть над затемнением */
    padding: 40px;
    width: 100%;
}

.promo-card:hover .promo-bg {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.promo-content-inner {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.promo-content-inner h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.promo-content-inner p {
    opacity: 0.9;
    margin-bottom: 25px;
}

/* АДАПТИВ */
@media (max-width: 900px) {
    .blog-promo-grid {
        grid-template-columns: 1fr;
        /* Одна колонка */
    }

    .promo-card {
        margin-top: 30px !important;
        /* Уменьшаем отступ на мобильном */
        min-height: 250px;
    }
}

/* Видео фон */
.promo-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* --- LAYOUT FIX (Исправление разъезжания) --- */
.blog-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    /* Сайдбар фикс, контент резиновый */
    gap: 40px;
    align-items: start;
}

/* На мобильных - в одну колонку */
@media (max-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: 2;
    }

    /* Сайдбар вниз */
}

/* --- MAIN CONTENT --- */
.blog-main {
    min-width: 0;
    /* ВАЖНО: позволяет Grid сжимать контент */
    width: 100%;
}

/* --- ОБЛОЖКА --- */
.post-detail-img {
    width: 100%;
    height: 400px;
    /* Фиксируем высоту */
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #f5f5f5;
    /* Фон, если картинка не прогрузилась */
}

.post-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Заполнить блок, обрезав лишнее */
    display: block;
}

/* --- ГАЛЕРЕЯ --- */
.blog-gallery-slider {
    width: 100%;
    height: 400px;
    /* Фиксируем высоту */
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
    background-color: #f5f5f5;
    position: relative;
    /* Для позиционирования стрелок */
}

.gallery-slide {
    width: 100%;
    height: 100%;
}

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

/* --- ТЕКСТ (Картинки не должны ломать верстку) --- */
.post-body img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    display: block !important;
    margin: 20px auto !important;
}

.note-editable img {
    height: auto !important;
    /* Автоматическая высота */
    max-width: 100%;
    /* Чтобы не вылезали */
    display: block;
    /* Убираем нижние отступы инлайновых элементов */
}

/* Стили для редактора */
.note-editable img {
    height: auto !important;
    /* Сохраняем пропорции */
    max-width: 100%;
}

/* Стили обтекания в редакторе */
.note-float-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

.note-float-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Стили кнопок выбора вариантов */
.btn-var {
    padding: 8px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
}

.btn-var:hover {
    border-color: #94a3b8;
}

.btn-var.active {
    border-color: #005bff;
    background: #f0f9ff;
    color: #005bff;
    font-weight: 600;
}

.btn-var:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.sticky-info {
    margin-top: -100px;
}