/* Main Design System */
:root {
    --primary-color: #000;
    --accent-color: #00C853;
    /* Success/Green */
    --text-color: #333;
    --text-muted: #888;
    --bg-white: #ffffff;
    --bg-light: #f5f5f7;
    --border-color: #eee;
    --container-width: 1200px;
    --font-arial: 'Arial', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

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

body {
    font-family: var(--font-arial);
    /* Default to Arial */
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.4;
}

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

.flex {
    display: flex;
    align-items: center;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.header__top {
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.header__top .container {
    justify-content: flex-end;
    gap: 0 30px;
}

.header__top-nav {
    display: flex;
    gap: 15px;
    list-style: none;
}

.header__top-nav ul,
.header__top-nav ul.menu {
    display: flex;
    gap: 15px;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.header__top-nav ul li,
.header__top-nav ul li.menu-item {
    list-style: none !important;
    list-style-type: none !important;
}

.header__top-nav a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.header__lang {
    position: relative;
    cursor: pointer;
}

.header__lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}

.header__lang-toggle svg {
    transition: transform 0.3s;
}

.header__lang-toggle.active svg {
    transform: rotate(180deg);
}

.header__lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    gap: 12px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-item {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.lang-item:hover {
    color: var(--accent-color);
}

.lang-item.active {
    color: var(--accent-color);
    font-weight: 700;
}

.header__main {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header__main .container {
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-width: 150px;
    min-height: 50px;
    justify-content: center;
}

.logo img {
    height: 35px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 8px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
    font-weight: 700;
}

.header__mid-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header__mid-nav ul,
.header__mid-nav ul.menu {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.header__mid-nav ul li,
.header__mid-nav ul li.menu-item {
    list-style: none !important;
    list-style-type: none !important;
}

.header__mid-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-arial);
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-arial);
}

.nav-link--green,
li.nav-link--green > a {
    color: var(--accent-color);
}

.nav-link--icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.action-item {
    cursor: pointer;
    color: #444;
}

.header__phones {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.header__phones a {
    text-decoration: none;
    color: #000;
}

.callback-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 10px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 2px;
}

/* Catalog level */
.header__catalog {
    padding: 10px 0;
    background: #fff;
    z-index: 500;
}

/* Sticky state toggled by JS */
.header__catalog--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 500;
}

/* Offset for WordPress admin bar */
body.admin-bar .header__catalog--sticky {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header__catalog--sticky {
        top: 46px;
    }
}

.header__catalog .container {
    gap: 20px;
}

.catalog-wrapper {
    position: relative;
}

.catalog-btn {
    background: transparent;
    border: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-arial);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.catalog-btn.active {
    color: var(--accent-color);
}

.catalog-btn.active .chevron-down {
    transform: rotate(180deg);
}

.catalog-btn.active .hamburger-icon span {
    background: var(--accent-color);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.hamburger-icon span {
    height: 3px;
    background: #999;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s;
}

.catalog-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, width 0.2s;
    padding: 10px 0;
    border-top: 2px solid var(--accent-color);
    overflow: hidden;
}

.catalog-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.catalog-dropdown.has-submenu {
    width: 660px;
}

.catalog-layout {
    display: flex;
    align-items: flex-start;
}

.catalog-layout .catalog-menu {
    width: 320px;
    flex-shrink: 0;
}

.catalog-submenu {
    display: none;
    width: 340px;
    flex-shrink: 0;
    border-left: 1px solid #f0f0f0;
    padding: 6px 0;
    background: #fff;
    overflow-y: auto;
    max-height: 480px;
}

.catalog-submenu.visible {
    display: block;
}

.catalog-submenu__panel {
    display: none;
}

.catalog-submenu__panel.active {
    display: block;
}

.catalog-subitem {
    display: block;
    padding: 7px 18px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-subitem:hover {
    color: var(--accent-color);
    background: #f0f0f0;
}

.catalog-item--has-children.catalog-item--active {
    background: #f0f8f0;
    color: var(--accent-color);
}

.user-action-wrapper {
    position: relative;
}

.account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    margin-top: 10px;
}

.account-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-links {
    padding: 0 20px;
}

.account-links a {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: opacity 0.2s;
}

.account-links a:hover {
    opacity: 0.7;
}

.order-tracking {
    background: #f7f7f7;
    padding: 20px;
    margin: 15px 0;
}

.order-tracking__title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.order-tracking__form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
}

.cart-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-empty {
    padding: 60px 20px;
    text-align: center;
    color: #ccc;
    font-size: 18px;
    font-weight: 500;
}

.cart-items {
    max-height: 280px;
    overflow-y: auto;
    padding: 0 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item__img {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: block;
}

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

.cart-item__info {
    flex: 1;
    min-width: 0;
}

.cart-item__name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item__price {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

.cart-item__remove {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    padding: 4px;
    transition: color 0.2s;
}

.cart-item__remove:hover {
    color: #e53935;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 15px;
    border-top: 1px solid #f0f0f0;
}

.cart-footer {
    background: #fdfdfd;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
}

.add-to-cart-btn-round.adding {
    transform: scale(0.9);
    opacity: 0.7;
}

.btn--outline {
    background: #fff;
    border: 2px solid #555 !important;
    color: #000;
}

.btn--checkout {
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 18px;
}

.btn--checkout svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.user-action--cart.active {
    color: var(--accent-color);
}

.user-action--cart.active svg path {
    fill: var(--accent-color) !important;
}

.user-action--cart.active .chevron-down {
    transform: rotate(180deg);
}

.order-tracking__form input {
    border: none;
    padding: 12px 15px;
    flex: 1;
    font-size: 14px;
    outline: none;
}

.order-tracking__submit {
    background: #eee;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    color: #666;
    transition: background 0.2s;
}

.order-tracking__submit:hover {
    background: #e0e0e0;
}

.account-buttons {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.btn {
    flex: 1;
    border: none;
    padding: 10px 8px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn--black {
    background: #444;
    color: #fff;
}

.btn--green {
    background: var(--accent-color);
    color: #fff;
}

.catalog-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 15px;
    gap: 15px;
    transition: all 0.2s;
}

.catalog-item:hover {
    background: #f9f9f9;
    color: var(--accent-color);
}

.catalog-item__icon {
    width: 28px;
    display: flex;
    justify-content: center;
    color: var(--accent-color);
}

.catalog-item--promo {
    padding: 15px 20px;
    background: #fff;
}

.catalog-item__content {
    display: flex;
    flex-direction: column;
}

.catalog-item__title {
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-item__subtitle {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.badge {
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.badge--popular {
    background: #000;
    color: #fff;
}

.chevron-right {
    margin-left: auto;
    opacity: 0.3;
}

.catalog-item:hover .chevron-right {
    opacity: 1;
    color: var(--accent-color);
}

.header__search {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 40px;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.header__search input {
    width: 100%;
    background: #f1f1f1;
    border: 2px solid transparent;
    padding: 13px 44px 13px 25px;
    border-radius: 50px;
    font-size: 15px;
    color: #333;
    transition: border-color .2s;
    box-sizing: border-box;
}

.header__search input:focus {
    outline: none;
    border-color: #2463EB;
    background: #fff;
}

.header__search input::placeholder {
    color: #999;
}

.search-submit-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #666;
    display: flex;
    align-items: center;
}
.search-submit-btn:hover { color: #2463EB; }

/* Suggestions dropdown */
.search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 9999;
    display: none;
    overflow: hidden;
}
.search-suggestions.active { display: block; }

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    transition: background .15s;
}
.search-suggestion-item:hover,
.search-suggestion-item.focused { background: #f5f5f5; }

.search-suggestion-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}
.ssi-title { flex: 1; line-height: 1.3; }
.ssi-title mark { background: none; color: #2463EB; font-weight: 600; }
.ssi-price { font-weight: 600; color: #e53935; white-space: nowrap; font-size: 13px; }

.search-suggestion-all {
    border-top: 1px solid #f0f0f0;
    padding: 9px 14px;
    text-align: center;
}
.search-suggestion-all a {
    font-size: 13px;
    color: #2463EB;
    text-decoration: none;
}
.search-suggestion-all a:hover { text-decoration: underline; }

/* Search loading indicator */
.search-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #888;
}

.search-loading__spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-top-color: #2463EB;
    border-radius: 50%;
    animation: search-spin 0.6s linear infinite;
}

@keyframes search-spin {
    to { transform: rotate(360deg); }
}

/* Mobile suggestions — inside the overlay */
.search-suggestions--mobile {
    position: relative;
    top: 0;
    border-radius: 0 0 12px 12px;
    border-top: none;
    box-shadow: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    background: #fff;
}

.header__user-actions {
    display: flex;
    gap: 30px;
}

.user-action {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: #000;
}

.user-action__icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #eee;
    color: #666;
    font-size: 9px;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid #fff;
}

.chevron-down {
    margin-left: 2px;
    opacity: 0.8;
}

.header__catalog .container {
    justify-content: flex-start;
}

/* Hero Slider */
.hero {
    margin-top: 20px;
}

.hero__slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
}

.hero__slides-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    padding: 0;
    position: relative;
    display: block;
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow--prev {
    left: 20px;
}

.slider-arrow--next {
    right: 20px;
}

.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Mobile */
.header__mobile {
    display: none;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {

    .header__top,
    .header__main,
    .header__catalog {
        display: none;
    }

    .header__mobile {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    body {
        padding-top: 56px;
    }

    body.admin-bar .header__mobile {
        top: 46px;
    }

    body.admin-bar {
        padding-top: 102px;
    }

    .header__mobile-actions {
        display: flex;
        align-items: center;
    }
    .logo img{
        width: 120px;
    }

    .hamburger--large span {
        height: 3px;
        width: 30px;
        background: #000;
        display: block;
        margin: 5px 0;
    }

    .hero__slider {
        height: 500px;
    }

    .hero__slide {
        flex-direction: column-reverse;
        padding: 40px 20px;
        text-align: center;
    }

    .hero__content h1 {
        font-size: 32px;
    }

    .hero__image img {
        max-height: 250px;
    }

    .hero__brand {
        justify-content: center;
        font-size: 24px;
    }
}

/* Global Transitions */
a,
button,
.action-item,
.user-action,
.catalog-btn,
.nav-link,
.dot,
.slider-arrow {
    transition: all 0.2s ease-in-out !important;
}

/* Hover States */
.header__top-nav a:hover {
    opacity: 0.7;
}

.header__lang:hover {
    color: var(--accent-color);
}

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

.action-item:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

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

.callback-btn:hover {
    opacity: 0.8;
}

.catalog-btn:hover {
    color: var(--accent-color);
}

.catalog-btn:hover .chevron-down path {
    fill: var(--accent-color);
}

.user-action:hover {
    color: var(--accent-color);
}

.user-action:hover svg path {
    fill: var(--accent-color) !important;
}

.user-action--cart:hover .cart-badge {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Hero Slider Hovers */
.hero__slide:hover {
    opacity: 0.95;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Products Section */
.section {
    padding: 60px 0;
}

.section-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #000;
}

.section-tabs {
    display: flex;
    gap: 10px;
}

.tab-btn,
.home-tab-btn {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover,
.home-tab-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.tab-btn.active,
.home-tab-btn.active {
    background: #fff;
    color: var(--accent-color);
}

/* Product Card */
.products-slider__body {
    position: relative;
    padding: 0 40px;
    /* Space for arrows */
}

.productsSwiper {
    padding: 20px 0;
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.product-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px;
    position: relative;
}

.swiper-slide:last-child {
    border-right: none;
}

.product-card__image {
    width: 100%;
    margin-bottom: 8px;
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-card__image a {
    display: block;
}

.product-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.product-card__rating {
    color: #eee;
    font-size: 16px;
    margin-bottom: 2px;
    line-height: 1;
}

.product-card__rating .star {
    margin-right: 1px;
}

.product-card__rating .star--filled {
    color: #f5a623;
}

.product-card__rating .star--empty {
    color: #ddd;
}

.product-card__code {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    opacity: 0.8;
}

.product-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    height: 40px;
    margin: 2px 0 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: height 0.3s;
}

.product-card:hover .product-card__title {
    height: auto;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.product-card .product-card__title a,
.product-card .product-card__title a:visited {
    text-decoration: none;
    color: #000;
    transition: color 0.2s;
}

.product-card .product-card__title a:hover {
    color: var(--accent-color);
}

.product-card__status {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.product-card__status svg {
    margin-top: -1px;
}

.product-card__bottom {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.product-card__prices {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

/* Specific promo styling */
.product-card__prices--promo .price-current {
    color: var(--accent-color);
}

.product-card__savings {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

/* Swiper Customization */
.products-next,
.products-prev,
.popular-next,
.popular-prev {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
    border: 1px solid #eee;
    z-index: 10;
    transition: all 0.2s;
}

.products-next:hover,
.products-prev:hover,
.popular-next:hover,
.popular-prev:hover {
    background: #fdfdfd;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.products-next::after,
.products-prev::after,
.popular-next::after,
.popular-prev::after {
    font-size: 14px;
    color: #666;
    font-weight: 900;
}

.products-prev,
.popular-prev {
    left: 0;
}

/* Banners section */
.banners {
    padding-top: 0;
}

.banners-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.banner-item {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.banner-item--central {
    grid-row: span 2;
}

@media (max-width: 992px) {
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-item--central {
        grid-column: span 1;
        grid-row: auto;
    }

    .newsletter-form {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .banner-item--central {
        grid-column: auto;
    }
}

.products-next {
    right: 0;
}

@media (max-width: 1200px) {
    .products-slider__body {
        padding: 0 20px;
    }
}

/* Sales Section */
.sales {
    background-color: #f60;
    padding: 60px 0;
    color: #fff;
    margin-bottom: 40px;
}

.section-top--white {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: row;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    text-align: left;
}

.section-top--white .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.sales-navigation {
    display: flex;
    gap: 8px;
}

.sales-next,
.sales-prev {
    position: static;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.2s;
}

.sales-next:hover,
.sales-prev:hover {
    background: #f8f8f8;
}

.sales-next::after,
.sales-prev::after {
    font-size: 13px;
    color: #000;
    font-weight: 900;
}

.sale-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s;
}

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

.sales-slider__body .swiper-wrapper {
    padding-top: 30px;
}

.sales-slider__body .swiper-slide {
    border: none;
}

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

.sale-card__content {
    padding: 15px 20px;
    text-align: left;
}

.sale-card__name {
    color: #000;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.section-bottom {
    margin-top: 40px;
    text-align: left;
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #4cd964;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-green:hover {
    background-color: #3ec154;
}

.btn-green:focus {
    outline: none;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #fff;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.spotlight-item {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 4px;
    text-align: center;
}

.spotlight-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.spotlight-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.spotlight-subtitle {
    font-size: 13px;
    max-width: 320px;
    margin: 0 auto 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    outline: none;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.newsletter-form .btn-green {
    border-radius: 30px;
    padding: 12px 35px;
    border: none;
    cursor: pointer;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #555;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 18px;
}

.social-icon:hover {
    background: #333;
}

/* Footer Section */
.footer {
    border-top: 1px solid #eee;
    padding: 60px 0 30px;
    background-color: #fff;
}

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

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--accent-color);
    font-size: 13px;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-column p {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.footer-phones a {
    text-decoration: none;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
}

.footer-phones a:hover {
    opacity: 0.8;
}

.footer-email {
    display: block;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 13px;
    margin-bottom: 5px;
}

.footer-map-link {
    text-decoration: underline;
    color: var(--accent-color);
    font-size: 13px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
}

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 5px;
    transition: color 0.2s;
    z-index: 10;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    padding: 25px 30px;
    background: #fbfbfb;
    border-bottom: 1px solid #eee;
    margin: 0;
}

.callback-phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 30px 0;
}
.callback-phone-item {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: color .2s;
}
.callback-phone-item:hover {
    color: #4CAF50;
}

.modal-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--accent-color);
}

.time-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-input {
    width: 80px;
    text-align: center;
}

.time-separator {
    color: #999;
}

.form-actions {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 25px;
    display: flex;
    justify-content: flex-start;
}

.form-actions .btn-green {
    margin: 0;
    padding: 12px 40px;
}

.callback-success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    gap: 20px;
}

.callback-success p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

/* Thank You Modal (Newsletter Success) */
#thankYouModal .modal-content {
    border-radius: 16px;
    padding: 40px 35px;
    max-width: 420px;
    overflow: visible;
}

#thankYouModal .modal-close {
    top: 20px;
    right: 20px;
    color: #bbb;
}

#thankYouModal .modal-close:hover {
    color: #666;
}

#thankYouModal .modal-title {
    background: none;
    border-bottom: none;
    padding: 0;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

#thankYouModal .modal-content p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

#thankYouModal .modal-content svg {
    margin-bottom: 20px;
}

#thankYouModal .btn-green {
    padding: 14px 50px;
    font-size: 16px;
    border-radius: 30px;
    background-color: #00B140;
}

#thankYouModal .btn-green:hover {
    background-color: #009a38;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

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

.breadcrumbs .separator {
    margin: 0 5px;
}

.breadcrumbs .active {
    color: #333;
}

/* Product Info Section */
.product-info {
    padding-bottom: 60px;
}

.product-info__top {
    margin-bottom: 30px;
}

.product-info__title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 0;
}

.share-btn:hover {
    color: var(--accent-color);
}

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

/* Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    min-width: 0;
}

.product-main-slider {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.product-main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-slider .product-gallery__main {
    padding: 20px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-main-slider img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
}

.product-gallery__thumbs-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    position: relative;
    padding: 0 10px;
}

.product-thumbs-slider {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: 5px 0;
}

.product-thumbs-slider .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s, border-color 0.3s;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--accent-color);
}

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

.product-main-slider .swiper-button-next,
.product-main-slider .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.product-main-slider .swiper-button-next:after,
.product-main-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Thumb Arrows - Circular Design */
.thumb-next,
.thumb-prev {
    position: static;
    margin-top: 0;
    width: 44px !important;
    height: 44px !important;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #333;
    transition: all 0.3s ease;
}

.thumb-next:after,
.thumb-prev:after {
    font-size: 14px !important;
    font-weight: 800;
}

.thumb-next:hover,
.thumb-prev:hover {
    background: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.thumb-next.swiper-button-disabled,
.thumb-prev.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

.thumb-arrow:hover {
    background: #f5f5f5;
    color: #666;
}

/* Details Card */
.product-details__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-details__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 13px;
}

.rating-stars {
    color: #ddd;
    font-size: 20px;
}

.write-review {
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 14px;
}

.product-code {
    margin-left: auto;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.code-value {
    color: #333;
    font-weight: 700;
}

.product-details__price-block {
    margin-bottom: 25px;
}

.product-details__price-block .price {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.stock-status {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-status svg {
    flex-shrink: 0;
}

.stock-status.out-of-stock {
    color: #ff5252;
}

.product-warranty {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.product-buy-btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.warranty-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 14px;
}

.warranty-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.warranty-option input {
    display: none;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    position: relative;
    background: #fff;
    flex-shrink: 0;
}

.radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    transition: transform 0.2s;
}

.warranty-option input:checked+.radio-mark {
    border-color: var(--accent-color);
}

.warranty-option input:checked+.radio-mark::after {
    transform: translate(-50%, -50%) scale(1);
}

.details-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.details-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 0;
    width: fit-content;
    font-family: var(--font-arial);
}

.details-actions .action-btn:hover {
    text-decoration: underline;
}

/* Accordions */
.product-accordions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-item.open {
    background: #f9f9f9;
}

.accordion-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header .header-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.accordion-indicator {
    position: relative;
    width: 16px;
    height: 16px;
}

.accordion-indicator::before,
.accordion-indicator::after {
    content: '';
    position: absolute;
    background: #000;
    transition: transform 0.3s;
}

/* Horizontal line */
.accordion-indicator::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.accordion-indicator::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.accordion-item.open .accordion-indicator::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-content {
    padding: 0 20px 20px;
    display: none;
}

.accordion-item.open .accordion-content {
    display: block;
}

.accordion-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.accordion-text ul,
.accordion-text ol {
    padding-left: 20px;
    margin: 8px 0;
}

.accordion-text li {
    margin-bottom: 6px;
}

.accordion-text p {
    margin: 0 0 10px;
}

.delivery-info .delivery-time {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.delivery-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
}

.delivery-row a {
    color: var(--accent-color);
    text-decoration: underline;
}

.delivery-row span {
    font-weight: 700;
}

/* Specs Table */
.product-specs {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: flex;
    align-items: baseline;
    font-size: 14px;
}

.spec-label {
    color: #333;
    white-space: nowrap;
}

.spec-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 5px;
}

.spec-value {
    color: #000;
    font-weight: 500;
}

.spec-value.brand-link {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

@media (max-width: 991px) {
    .product-info__grid {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 24px;
    }
}

/* Product Tabs Section */
.product-tabs-wrapper {
    background: #fff;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-tabs-nav {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.product-tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 5px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    flex-shrink: 0;
}

.tab-btn:hover {
    color: var(--accent-color);
}

.tab-btn.active {
    color: var(--accent-color);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    padding-bottom: 60px;
}

.tab-content.active {
    display: block;
}

.tab-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.tab-title span {
    color: #999;
    font-weight: 400;
}

/* Detailed Specs */
.specs-detailed {
    position: relative;
}

.specs-group-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 40px 0 20px;
}

.specs-detailed .spec-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    font-size: 15px;
}

.specs-detailed .spec-label {
    white-space: nowrap;
    color: #333;
}

.specs-detailed .spec-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
    height: 14px;
}

.specs-detailed .spec-value {
    color: #000;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

.specs-detailed .spec-row.muted {
    opacity: 0.5;
}

.show-more-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    margin-top: 20px;
}

.show-more-link svg {
    transition: transform 0.3s;
}

.show-more-link.open svg {
    transform: rotate(180deg);
}

/* Floating Chat Icon */
.floating-chat-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s, background 0.3s;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    background: #00B248;
}

.floating-chat-btn svg {
    width: 32px;
    height: 32px;
}

/* Sale Products Section */
.sale-products {
    padding: 60px 45px;
    background: #fdfdfd;
}

.sale-products .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.sale-products .section-nav {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.sale-products .nav-item {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    color: #333;
}

.sale-products .nav-item.active {
    color: var(--accent-color);
}

.sale-products .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

/* Product Card (Item) */
.product-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.product-item__badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.badge--discount {
    background: #FF3B30;
}

.badge--hit {
    background: #000;
    color: #fff;
    text-transform: uppercase;
}

.product-item__actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.action-btn {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
}

.action-btn:hover {
    color: var(--accent-color);
}

.product-item__image {
    aspect-ratio: 1/1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-item__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-item:hover .product-item__title {
    height: auto;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.product-item__title a{
    text-decoration: none;
    color: #000;
}

.product-item__meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.product-item__meta .code {
    color: #666;
}

.product-item__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.product-item__rating .rating-value {
    font-size: 13px;
    color: #999;
}

.product-item__availability {
    font-size: 13px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 0;
}

.product-item__availability svg {
    flex-shrink: 0;
}

.product-item__bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-box .current-price {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-box .current-price span {
    font-size: 32px;
}

.price-box .old-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-box .old-price {
    font-size: 16px;
    color: #FF5A5A;
    text-decoration: line-through;
    margin: 0;
}

.price-box .discount-label {
    font-size: 16px;
    background: #E85A4F;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.add-to-cart-btn-round {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    position: relative;
}

.add-to-cart-btn-round:hover {
    background: #4caf50;
    transform: scale(1.05);
}

.cart-gear-icon {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Nav arrows for salesSwiper */
.sales-slider-container {
    position: relative;
    overflow: visible;
}

.sales-slider-container .swiper-button-next,
.sales-slider-container .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: 0;
}

.sales-slider-container .swiper-button-next {
    right: -45px;
}

.sales-slider-container .swiper-button-prev {
    left: -45px;
}

.sales-slider-container .swiper-button-next:after,
.sales-slider-container .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.salesSwiper {
    position: relative;
    overflow: hidden;
}

/* Viewed Products Section */
.viewed-products {
    padding: 60px 45px;
}

.viewed-products__slider-box {
    background: #f5f5f7;
    border-radius: 20px;
    padding: 30px;
}

.viewed-slider-container {
    position: relative;
    overflow: visible;
}

.viewed-slider-container .swiper-button-next,
.viewed-slider-container .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: 0;
}

.viewed-slider-container .swiper-button-next {
    right: -45px;
}

.viewed-slider-container .swiper-button-prev {
    left: -45px;
}

.viewed-slider-container .swiper-button-next:after,
.viewed-slider-container .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.viewedSwiper {
    position: relative;
    overflow: hidden;
}

/* Advantages Section */
.advantages {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.advantages-grid {
    display: flex;
    justify-content: space-between;
}

.advantage-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.advantage-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #eee;
}

.advantage-icon {
    width: 120px;
    height: 120px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #000;
}

.advantage-text {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    max-width: 280px;
}

/* Responsive */
@media (max-width: 768px) {
    .advantages-grid {
        flex-direction: column;
        gap: 40px;
    }

    .advantage-item:not(:last-child)::after {
        display: none;
    }

    .sale-products,
    .viewed-products {
        padding: 0;
    }
}

/* Copy Code Button */
.product-code {
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-code-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.1s;
}

.copy-code-btn:hover {
    color: var(--accent-color);
}

.copy-code-btn:active {
    transform: scale(0.9);
}

.copy-code-btn.success {
    color: #28a745;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-icon {
    color: var(--accent-color);
}

/* WYSIWYG Content Body styles */
.content_body {
    padding: 20px 0 60px;
    line-height: 1.4;
    color: #333;
}

.content_body h1,
.content_body h2,
.content_body h3,
.content_body h4,
.content_body h5,
.content_body h6 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.content_body h1 {
    font-size: 32px;
}

.content_body h2 {
    font-size: 24px;
}

.content_body h3 {
    font-size: 20px;
}

.content_body p {
    margin-bottom: 1.2em;
}

.content_body ul,
.content_body ol {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.content_body ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}

.content_body ol li {
    list-style-type: decimal;
    margin-bottom: 0.5em;
}

.content_body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.content_body table th,
.content_body table td {
    border: 1px solid #eee;
    padding: 12px 15px;
    text-align: left;
    min-width: 120px;
    /* Ensure cells don't get too cramped */
}

.content_body table th {
    background-color: #f9f9f9;
    font-weight: 700;
    color: #000;
}

.content_body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.content_body a {
    color: var(--accent-color);
    text-decoration: underline;
}

.content_body a:hover {
    text-decoration: none;
}

.content_body strong,
.content_body b {
    font-weight: 700;
    color: #000;
}

@media (max-width: 768px) {
    .content_body h1 {
        font-size: 24px;
    }

    .content_body h2 {
        font-size: 18px;
    }
}

/* Contacts Page */
.contacts-page {
    padding: 20px 0 60px;
}

.contacts-page h1 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #000;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contacts-map {
    min-height: 450px;
    position: relative;
}

.contacts-grid .contacts-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    border-radius: 4px;
    display: block;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-label {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    line-height: 1.2;
}

.info-label--main {
    font-weight: 700;
    color: #000;
    font-size: 16px;
    margin-bottom: 5px;
}

.info-label--bold {
    font-weight: 700;
    color: #000;
    font-size: 18px;
}

.info-value {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.green-link {
    color: #00C853;
    text-decoration: none;
}

.green-link:hover {
    text-decoration: underline;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-item {
    font-size: 16px;
    color: #00C853;
    text-decoration: none;
    font-weight: 400;
}

.social-list {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

.social-item a {
    color: #00C853;
    text-decoration: none;
    font-weight: 400;
    text-transform: none;
}

.callback-link-wrapper {
    margin-top: 5px;
}

.click-to-call {
    margin-top: 10px;
}

.map-placeholder {
    background: #e0e0e0;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder__inner {
    text-align: center;
    color: #999;
}

.map-placeholder__inner p {
    margin-top: 10px;
    font-size: 16px;
}

.working-hours {
    margin-bottom: 50px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
}

.directions h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}

.directions p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-weight: 700;
}

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

    .contacts-map {
        min-height: 300px;
        order: -1;
    }
}

/* Sales Page */
.promo-page {
    padding: 20px 0 60px;
}

.promo-page h1 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.promo-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    text-decoration: none;
}

.promo-card__image {
    height: 200px;
    background: #fff;
    overflow: hidden;
}

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

.promo-card__content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-badge {
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    max-width: 80px;
}

.promo-badge--pink {
    background: #FFF0F4;
    color: #FF2D55;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.promo-badge--grey {
    background: #F2F2F2;
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.promo-badge .label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
}

.promo-badge .value {
    font-size: 20px;
    font-weight: 700;
}

.promo-badge .unit {
    font-size: 12px;
}

.promo-card__info {
    flex: 1;
}

.promo-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.promo-card__date {
    font-size: 14px;
    color: #999;
}

.sales-section {
    margin-bottom: 60px;
}

.sales-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.promo-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .promo-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .promo-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card Styling */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    transition: box-shadow 0.3s;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card__image {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: auto;
}

.product-card__labels {
    position: absolute;
    top: 0;
    left: 0;
}

.label-badge {
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    color: #333;
}


.product-card__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #ccc;
    letter-spacing: 2px;
}

.rating-value {
    font-size: 12px;
    color: #999;
}

.product-card__stock {
    font-size: 12px;
    color: #00C853;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.stock-dot {
    width: 6px;
    height: 6px;
    background: #00C853;
    border-radius: 50%;
}

.product-card__price-block {
    margin-top: auto;
}

.price-current {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-current .price-value {
    font-size: 32px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old {
    font-size: 18px;
    color: #FF5A5A;
    text-decoration: line-through;
    margin: 0;
}

.discount-badge {
    background: #E85A4F;
    color: #fff;
    font-size: 16px;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: #00C853;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: #00a846;
}

/* Swiper overrides for sales */
.sales-slider {
    padding: 20px 20px;
}

.swiper-button-next,
.swiper-button-prev {
    background: #fff !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    color: #000 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 700 !important;
}

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

    .promo-card__image-placeholder {
        height: 250px;
    }
}

.directions p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-weight: 700;
}

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

    .contacts-map {
        min-height: 300px;
        order: -1;
    }
}

/* Catalog Page Layout */
.catalog-layout {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    align-items: flex-start;
}

.catalog-sidebar {
    width: 260px;
    flex-shrink: 0;
}

.catalog-main {
    flex-grow: 1;
    min-width: 0;
}

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

.filter-apply-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #00C853;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-apply-btn:hover {
    background: #00a844;
}

.no-products-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 18px;
}

.catalog-grid .price-box .current-price,
.catalog-grid .price-box .current-price span {
    font-size: 20px;
}

/* Sidebar Styles */
.sidebar-block {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 5px;
}

.category-list li a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
}

.category-list li.active a,
.category-list li a:hover {
    background-color: #f5f5f7;
    font-weight: bold;
}

/* Filters */
.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toggle-icon {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #fff;
    border-color: #ddd;
}

.custom-checkbox input:checked~.checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Price Filter */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-input-wrapper {
    position: relative;
    flex: 1;
}

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

.price-slider {
    position: relative;
    height: 4px;
    background: #eee;
    margin-bottom: 15px;
    border-radius: 2px;
}

.slider-range {
    position: absolute;
    height: 100%;
    background: #000;
}

.slider-thumb {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
}

/* Green text utility */
.text-green {
    color: #00C853;
}

/* Responsive */
@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .catalog-layout {
        flex-direction: column;
    }

    .catalog-sidebar {
        width: 100%;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

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

/* Interactive States */
.filter-group.collapsed .filter-content {
    display: none;
}

.filter-group.collapsed .toggle-icon {
    transform: rotate(-90deg);
    /* Pointing left/right? Or just rotate? */
}

/* If default is Down (border-top), rotate -90 makes it point right. */
/* Slider Z-Index Fix */
.slider-thumb {
    z-index: 10;
}

.slider-track,
.slider-range {
    z-index: 1;
}

/* Mobile Filter Controls */
.mobile-controls-container {
    display: none;
    margin-bottom: 20px;
}

.mobile-catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title-mobile {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.mobile-filter-btn .btn-text {
    margin-right: 5px;
}

.sidebar-header-mobile {
    display: none;
    /* Flex on mobile */
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
}

.sidebar-title-mobile {
    font-size: 20px;
    font-weight: bold;
}

.close-filter-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Responsive Sidebar */
@media (max-width: 992px) {
    .mobile-controls-container {
        display: block;
    }

    .catalog-layout {
        position: relative;
    }

    .catalog-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        /* Hidden by default */
        width: 100%;
        /* Full width or 300px? Ref image looks full width? Or panel. Let's do full width for mobile ease */
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .catalog-sidebar.active {
        left: 0;
    }

    .sidebar-header-mobile {
        display: flex;
        flex-shrink: 0;
    }

    .sidebar-scroll-content {
        flex-grow: 1;
        overflow-y: auto;
        padding: 20px;
    }

    /* Prevent body scroll when filter open */
    body.filter-open {
        overflow: hidden;
    }
}

/* Sale Products Page Styles */
.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.sale-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 40px;
}

.sale-product-content {
    padding: 20px;
}

.sale-product-item {
    background: #fff;
    border: 1px solid #eee;
    /* padding: 20px; */
    border-radius: 8px;
    /* Assuming rounded corners from modern design usually */
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.sale-product-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sale-product-image {
    width: 100%;
    height: 250px;
    /* Placeholder height */
    background: #fff;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.sale-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Or cover depending on asset */
    /* Simulating placeholder logic if no real image */
}

.sale-product-rating {
    color: #dcdcdc;
    /* Empty stars color */
    margin-bottom: 10px;
    font-size: 14px;
}

/* Active stars would need a specific class or unicode manipulation, keeping simple for now */

.sale-product-code {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
}

.sale-product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
    flex-grow: 1;
    /* Push bottom content down */
}

.sale-product-availability {
    font-size: 13px;
    color: #31BE4B;
    /* Green */
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.sale-product-availability svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.sale-product-prices {
    margin-top: auto;
}

.sale-product-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.sale-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #31BE4B;
    margin-bottom: 5px;
}

.sale-product-savings {
    font-size: 13px;
    color: #666;
}

/* Pagination Section */
.sale-pagination-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.show-more-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.show-more-btn:hover {
    background: #333;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
}

.pagination-btn:hover {
    border-color: #333;
}

.pagination-pages {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.page-link.active {
    border-color: #31BE4B;
    color: #31BE4B;
    border-width: 2px;
    font-weight: 700;
}

.page-link:hover:not(.active) {
    background: #f5f5f5;
}

.pagination-info {
    font-size: 13px;
    color: #999;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .sale-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sale-products-grid {
        grid-template-columns: 1fr;
    }

    .pagination-controls {
        gap: 5px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .page-link {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .pagination-info {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
}

/* Sitemap Page Styles */
.sitemap-section {
    padding-bottom: 60px;
}

.sitemap-block-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    margin-top: 40px;
}

.sitemap-block-title:first-child {
    margin-top: 0;
}

/* Catalog Grid */
.sitemap-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sitemap-group {
    margin-bottom: 30px;
}

.sitemap-group-title {
    font-size: 16px;
    font-weight: 700;
    color: #31BE4B;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
}

.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links li {
    margin-bottom: 10px;
}

.sitemap-links a {
    font-size: 14px;
    color: #31BE4B;
    text-decoration: none;
    transition: color 0.2s;
}

.sitemap-links a:hover {
    color: #269e3b;
    text-decoration: underline;
}

/* Brands List - Multi-column */
.sitemap-brands-list {
    column-count: 4;
    column-gap: 40px;
}

.sitemap-brands-list li {
    margin-bottom: 8px;
    break-inside: avoid;
    /* Prevent splitting items */
}

/* Info & Blog */
.sitemap-info-section,
.sitemap-blog-section {
    margin-bottom: 40px;
}


/* Responsive */
@media (max-width: 992px) {
    .sitemap-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sitemap-brands-list {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .sitemap-catalog-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-brands-list {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .sitemap-brands-list {
        column-count: 1;
    }
}

/* Reviews Page Styles */

/* Header controls */
.reviews-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.reviews-count {
    color: #31BE4B;
    font-size: 14px;
    font-weight: 500;
}

.reviews-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.reviews-sort select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    color: #333;
    outline: none;
}

/* Review Item */
.review-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-rating-col {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    justify-content: center;
}

.rating-circle {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 9px solid #31BE4B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #F5A623;
    /* Default Orange/Yellow for number */
}

/* Use specific colors if needed, but reference shows mostly orange numbers in green circles */

.review-content {
    flex-grow: 1;
}

.review-author-row {
    margin-bottom: 10px;
}

.review-author {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    margin-right: 10px;
}

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

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.review-likes {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

.review-likes svg,
.review-likes .like-icon {
    color: #31BE4B;
    font-weight: bold;
}

.review-like-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.review-like-btn:hover {
    border-color: #31BE4B;
}

.review-like-btn .like-icon {
    color: #31BE4B;
}

.review-like-btn.liked {
    border-color: #31BE4B;
    background: #f0faf2;
    cursor: default;
}

.review-like-btn.liked .like-icon {
    fill: #31BE4B;
}

/* Store Response */
.review-response {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-top: 15px;
}

.response-header {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
}

.response-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Write Review Button */
.write-review-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.write-review-btn {
    background-color: #31BE4B;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    /* Pill shape */
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-block;
}

.write-review-btn:hover {
    background-color: #269e3b;
}

/* WordPress Comment Form - Product Reviews */
.write-review-section .comment-respond {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.write-review-section .comment-reply-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
}

.write-review-section .logged-in-as {
    display: none;
}

.write-review-section .comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.review-form-field {
    width: 100%;
}

.review-form-field--half {
    width: calc(50% - 8px);
}

.review-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.review-form-field input[type="text"],
.review-form-field input[type="email"],
.review-form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.review-form-field input[type="text"]:focus,
.review-form-field input[type="email"]:focus,
.review-form-field textarea:focus {
    border-color: #31BE4B;
}

.review-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.write-review-section .form-submit {
    width: 100%;
    margin: 5px 0 0 0;
    padding: 0;
}

.write-review-section .comment-form-cookies-consent {
    display: none;
}

.no-reviews-text {
    color: #999;
    font-size: 14px;
    padding: 20px 0;
}

/* Q&A Section Styles */
.qa-list .qa-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.qa-list .qa-item:last-child {
    border-bottom: none;
}

.qa-question {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.qa-question svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.qa-answer {
    padding-left: 26px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Pagination Adjustments for Otzivi */
.otzivi-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination-text-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    text-transform: uppercase;
}

.pagination-text-btn:hover {
    background-color: #f5f5f5;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .review-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .review-rating-col {
        width: auto;
    }

    .rating-circle {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }

    .otzivi-pagination {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .section-tabs {
        flex-wrap: wrap;
    }
}

/* Pages List */
.pages-list {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px;
    background-color: #f5f5f5;
}

.pages-list .container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pages-list h1 {
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}

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

.pages-list li {
    margin-bottom: 12px;
}

.pages-list a {
    display: block;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #eee;
}

.pages-list a:hover {
    background-color: #e6f7eb;
    border-color: #31BE4B;
    color: #31BE4B;
    transform: translateY(-2px);
}

.pages-list .file-name {
    font-size: 14px;
    color: #888;
    float: right;
    margin-top: 2px;
}

/* Auth Required Modal */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px 35px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
    position: relative;
}

.auth-modal-overlay.active .auth-modal {
    transform: scale(1);
}

.auth-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 5px;
    transition: color 0.2s;
}

.auth-modal__close:hover {
    color: #333;
}

.auth-modal__icon {
    margin-bottom: 20px;
}

.auth-modal__icon svg {
    color: var(--accent-color);
}

.auth-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.auth-modal__text {
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
    line-height: 1.5;
}

.auth-modal__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.auth-modal__btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: background 0.3s, transform 0.2s;
}

.auth-modal__btn--login {
    background: var(--accent-color);
    color: #fff;
}

.auth-modal__btn--login:hover {
    background: #4caf50;
    transform: translateY(-1px);
}

.auth-modal__btn--register {
    background: #f5f5f5;
    color: #333;
}

.auth-modal__btn--register:hover {
    background: #eee;
    transform: translateY(-1px);
}

/* Phone Auth Modal */
.auth-modal--phone {
    text-align: left;
    max-width: 400px;
}

.auth-modal--phone .auth-modal__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
}

.phone-auth-form__group {
    margin-bottom: 16px;
}

.phone-auth-form__label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.phone-auth-form__label span {
    color: #e53935;
    margin-left: 2px;
}

.phone-auth-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.phone-auth-form__agree input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.phone-auth-form__agree a {
    color: #e53935;
    text-decoration: none;
}

.phone-auth-form__agree a:hover {
    text-decoration: underline;
}

.phone-auth-form__submit {
    border-radius: 25px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.phone-auth-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.phone-auth-sms-msg {
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.auth-modal__subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.4;
}

.auth-modal__subtitle strong {
    color: #333;
}

/* SMS Code Inputs */
.sms-code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sms-code-digit {
    width: 52px;
    height: 56px;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.sms-code-digit:focus {
    border-color: var(--accent-color);
}

.phone-auth-back {
    display: inline-block;
    margin-top: 16px;
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.phone-auth-back:hover {
    color: #333;
}

/* Mobile Components */
.mobile-action {
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
}

.mobile-action svg {
    color: #555;
    display: block;
}

.mobile-action svg path {
    fill: currentColor;
}

/* Mobile Search */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-bar {
    background: #fff;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-search-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
}

.mobile-search-input:focus {
    border-color: var(--accent-color);
}

.mobile-search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

/* Mobile Panel (Cart & Nav) */
.mobile-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.mobile-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-panel__header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.mobile-panel__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 5px;
}

.mobile-panel__close:hover {
    color: #333;
}

.mobile-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-panel__footer {
    padding: 15px 10px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mobile-panel__footer .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
}

/* Mobile Catalog Nav */
.mobile-catalog {
    display: flex;
    flex-direction: column;
}

.mobile-catalog__item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-catalog__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-catalog__link {
    flex: 1;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-catalog__link:hover {
    color: var(--accent-color);
}

.mobile-catalog__toggle {
    background: none;
    border: none;
    padding: 15px 20px 15px 10px;
    cursor: pointer;
    color: #999;
    transition: transform 0.25s, color 0.2s;
    display: flex;
    align-items: center;
}

.mobile-catalog__toggle:hover {
    color: #333;
}

.mobile-catalog__item.open .mobile-catalog__toggle {
    transform: rotate(180deg);
}

.mobile-catalog__sub {
    display: none;
    padding: 0 20px 12px 30px;
    flex-direction: column;
}

.mobile-catalog__item.open .mobile-catalog__sub {
    display: flex;
}

.mobile-catalog__sublink {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #f8f8f8;
    transition: color 0.2s;
}

.mobile-catalog__sublink:last-child {
    border-bottom: none;
}

.mobile-catalog__sublink:hover {
    color: var(--accent-color);
}

/* Mobile Nav Extras (Account & Language) */
.mobile-nav-extras {
    padding: 20px;
    border-top: 2px solid #f0f0f0;
}

.mobile-nav-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-nav-lang__label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.mobile-nav-lang__list {
    display: flex;
    gap: 8px;
}

.mobile-nav-lang__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 34px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-nav-lang__item.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(49, 190, 75, 0.06);
}

.mobile-nav-lang__item:hover:not(.active) {
    border-color: #999;
    color: #333;
}

.mobile-nav-account {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

.mobile-nav-account__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s;
}

.mobile-nav-account__link:last-child {
    border-bottom: none;
}

.mobile-nav-account__link svg {
    color: #999;
    flex-shrink: 0;
}

.mobile-nav-account__link:hover {
    color: var(--accent-color);
}

.mobile-nav-account__link:hover svg {
    color: var(--accent-color);
}

.mobile-nav-auth {
    display: flex;
    gap: 10px;
}

.mobile-nav-auth .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 80px 20px;
}

.error-404__code {
    font-size: 120px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.error-404__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.error-404__text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-404__actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

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

/* Unified Pagination */
.yabloko-pagination {
    padding: 30px 0 40px;
}

.pagination-btn--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.page-link--dots {
    border: none !important;
    cursor: default;
}

.page-link--dots:hover {
    background: transparent !important;
}

.advantages-section{
    padding-bottom: 80px;
}

/* ============================================================
   Related Products Section
   ============================================================ */
.related-products-section {
    padding: 40px 0 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.related-products-section .section-title {
    margin-bottom: 20px;
}

.related-products-slider-wrap {
    position: relative;
    padding: 0 40px;
}

.related-products-slider-wrap .swiper-button-prev,
.related-products-slider-wrap .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
}

.related-products-slider-wrap .swiper-button-prev { left: 0; }
.related-products-slider-wrap .swiper-button-next { right: 0; }

/* ============================================================
   Viewed Products Section
   ============================================================ */
.viewed-products-section {
    padding: 40px 0 60px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.viewed-products-section .section-title {
    margin-bottom: 20px;
}

.viewed-products-slider-wrap {
    position: relative;
    padding: 0 40px;
}

.viewed-products-slider-wrap .swiper-button-prev,
.viewed-products-slider-wrap .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
}

.viewed-products-slider-wrap .swiper-button-prev { left: 0; }
.viewed-products-slider-wrap .swiper-button-next { right: 0; }

@media (max-width: 576px){
    .products-slider__body{
        padding: 0;
    }

    .hero{
        margin-top: 40px;
    }
    .hero__slider{
        height: auto;
    }
    .hero__slide{
        padding: 0;
    }
    .hero__slide img{
        object-fit: contain;
    }

    .product-info__title-wrap{
        flex-direction: column-reverse;
        align-items: flex-end;
    }
}
