/* ========================================
   COLOR PALETTE & VARIABLES
   ======================================== */
:root {
    --color-green: #0f3d2e;
    --color-beige: #E8E6E2;
    --color-gold: #0f3d2e;
    --color-gold-hover: #145744;
    --color-antracite: #2b2b2b;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ======================
   RESET & BASE
   ====================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #2e2e2e;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h2 {
    line-height: 1.3;
}

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

a:hover {
    opacity: 0.7;
}

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

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

/* ======================
   BUTTONS
   ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 2px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--color-gold);
    color: #f9f9f9;
}

.btn--primary:hover {
    background: var(--color-gold-hover);
    opacity: 1;
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

.btn--outline-dark {
    background: transparent;
    color: #2e2e2e;
    border: 2px solid #e9e9e9;
}

.btn--outline-dark:hover {
    border-color: #2e2e2e;
    opacity: 1;
}

.btn--outline {
    background: transparent;
    color: var(--color-antracite);
    border: 2px solid #e9e9e9;
}

.btn--outline:hover {
    border-color: var(--color-antracite);
    opacity: 1;
}

.btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ======================
   HEADER
   ====================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: var(--transition);
}

.header__logo {
    height: 45px;
    transition: var(--transition);
}

.header.scrolled .header__search {
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled .header__logo {
    height: 80px;
    padding: 20px 0;
}

.header.scrolled .header__icons {
    top: 30px;
}

.header__top {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    position: fixed;
    width: 100%;
    top: 0;
    background: #fff;
    z-index: 1001;
}

.header__logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.header__logo img {
    height: 100%;
    width: auto;
    transition: var(--transition);
}

.header__search {
    display: none;
    position: relative;
}

.header__search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 0 0 2px 2px;
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
}

.header__search-results.active {
    display: block;
}

.search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.search-result:hover {
    background: #f9f9f9;
    opacity: 1;
}

.search-result__img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 2px;
}

.search-result__name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2e2e2e;
}

.search-result__price {
    display: block;
    font-size: 13px;
    color: #a4a4a4;
    margin-top: 2px;
}

.search-result__empty {
    padding: 16px;
    font-size: 14px;
    color: #a4a4a4;
    text-align: center;
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    transition: var(--transition);
}

.header__icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__icon-link img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1 / 1;
    max-width: unset;
}

.header__icon-link--cart {
    position: relative;
}

.header__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: 12px;
}

.header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2e2e2e;
    border-radius: 1px;
    transition: all 0.3s;
}

.header__nav {
    display: none;
    background: #fff;
    padding: 69px 20px 16px 20px;
}

.header__nav.active {
    display: block;
}

/* WordPress-compatible menu */
.menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item > a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    letter-spacing: 0.3px;
    font-weight: 400;
    text-transform: uppercase;
    color: #2e2e2e;
    border-bottom: 1px solid #f0f0f0;
}

.current-menu-item > a {
    font-weight: 600;
    color: #bfa380;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    margin-bottom: 2px;
}

.sub-menu {
    display: none;
    background: #fff;
    padding: 0;
    list-style: none;
}

.sub-menu .menu-item a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    color: #2e2e2e;
    border-bottom: none;
}

.sub-menu .menu-item a:hover {
    opacity: 1;
}

.menu-item-has-children.open > .sub-menu {
    display: block;
}

/* ======================
   TOP BAR
   ====================== */
.topbar {
    background: var(--color-green);
    padding: 13px 0;
    overflow: hidden;
    margin-top: 69px;
}

.topbar__inner {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.topbar__item {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.4px;
    white-space: nowrap;
}

.topbar__item:nth-child(2),
.topbar__item:nth-child(3) {
    display: none;
}

/* ======================
   HERO
   ====================== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero__carousel .owl-stage-outer,
.hero__carousel .owl-stage,
.hero__carousel .owl-item {
    height: 100%;
}

.hero__carousel {
    height: 500px;
}

.hero__carousel .hero__slide {
    position: relative;
    height: 100%;
}

.hero__carousel.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.owl-carousel .animated {
    animation-duration: 600ms;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fadeIn { animation-name: fadeIn; }
.fadeOut { animation-name: fadeOut; }

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__text p:first-child {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.9px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero__text h1 {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
}

.hero__text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    max-width: 389px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero__btn {
    font-size: 16px;
    padding: 18px 40px;
    width: fit-content;
}

.hero__arrow {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 40px;
    height: calc(100% + 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    background: #00000014;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-right: 1px solid #ffffff24;
    border-left: 1px solid #ffffff24;
    margin-top: -2px;
}

.hero__arrow:hover {
    background: #00000000;
}

.hero__arrow img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.hero__arrow--left { left: 0; }
.hero__arrow--right { right: 0; }

.hero .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero .owl-dot span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.hero .owl-dot.active span {
    width: 24px;
    background: #fff;
}

/* ======================
   SECTION HEADER
   ====================== */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.section-header--center {
    text-align: center !important;
    display: flex;
    margin-bottom: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
}

.section-header--center h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 12px;
}

.section-header--center p {
    font-size: 16px;
    color: #a4a4a4;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-header__text h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #2e2e2e;
}

.section-header__text p {
    font-size: 15px;
    color: var(--color-antracite);
    line-height: 1.5;
    letter-spacing: 0.2px;
    opacity: 0.5;
    margin-top: 5px;
}

.section-header__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2e2e2e;
    letter-spacing: 0.7px;
}

.section-header__link img {
    width: 16px;
    height: 16px;
}

/* ======================
   PRODUCTS SECTION
   ====================== */
.products-section {
    padding: 60px 0;
}

.products-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.products-grid .product-card {
    flex-shrink: 0;
    scroll-snap-align: start;
}

@media (max-width: 991px) {
    .products-grid .product-card {
        width: calc((100vw - 40px) * 0.66 - 8px);
        min-width: calc((100vw - 40px) * 0.66 - 8px);
    }
}

/* ======================
   PRODUCT CARD
   ====================== */
.product-card__image {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 306 / 371;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.product-card:hover .product-card__image {
    border-color: #1F7A5C;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform: scale(1.01);
}

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

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f9f9f9;
    color: #2e2e2e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 2px;
}

.product-card__badge--promo {
    background: #d9cbbf;
}

.product-card__cart-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--color-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-align: center;
    padding: 14px;
    border-radius: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: var(--transition);
}

.product-card__cart-btn:hover {
    background: var(--color-gold-hover);
    opacity: 1;
}

.product-card:hover .product-card__cart-btn {
    opacity: 1;
}

.product-card__info {
    padding: 12px 0;
}

.product-card__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-antracite);
    line-height: 1.4;
}

.product-card__variant {
    font-size: 13px;
    color: #a4a4a4;
    margin-top: 2px;
}

.product-card__price {
    font-size: 14px;
    font-weight: 700;
    color: #2e2e2e;
    margin-top: 8px;
}

.product-card__price del {
    font-weight: 400;
    color: #a4a4a4;
    margin-right: 4px;
}

.product-card__price ins {
    text-decoration: none;
}

.product-card__price-old {
    font-weight: 400;
    color: #a4a4a4;
    text-decoration: line-through;
    margin-right: 4px;
}

.product-card__lowest {
    font-size: 11px;
    color: #a4a4a4;
    margin-top: 4px;
}

/* ======================
   CATEGORIES
   ====================== */
.categories {
    padding: 60px 0;
    background: #f9f9f9;
}

.categories__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #2e2e2e;
    margin-bottom: 32px;
}

.categories__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 425px) {
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    height: 280px;
    display: block;
}

.category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform: scale(1.01);
}

.category-card:hover .category-card__img {
    transform: scale(1.05);
}

.category-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.category-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px;
}

.category-card__name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.category-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    line-height: 24px;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 12px;
}

.category-card__link img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* ======================
   PROMO BANNER
   ====================== */
.promo-banner {
    padding: 40px 0;
    background: #DDE3DF;
}

.promo-banner__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 425px) {
    .promo-banner__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.promo-banner__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.promo-banner__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgb(255 255 255);
    border-radius: 50%;
}

.promo-banner__icon img {
    width: 28px;
    height: 28px;
    opacity: 0.5;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(1037%) hue-rotate(109deg) brightness(89%) contrast(97%);
}

.promo-banner__text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #2e2e2e;
    line-height: 24px;
}

.promo-banner__text p {
    font-size: 13px;
    color: rgba(46, 46, 46, 0.5);
    line-height: 20px;
}

/* ======================
   REVIEWS
   ====================== */
.reviews {
    padding: 60px 0;
    background: #fff;
}

.reviews__header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews__header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 12px;
}

.reviews__header p {
    font-size: 16px;
    color: #a4a4a4;
}

.reviews__grid {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #f9f9f9;
    border-radius: 2px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.review-card__stars {
    margin-bottom: 16px;
}

.review-card__stars img {
    width: 40px;
    height: 40px;
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(96%) sepia(9%) saturate(75%) hue-rotate(1deg) brightness(95%) contrast(93%);
}

.review-card__quote {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.review-card__quote img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(1037%) hue-rotate(109deg) brightness(199%) contrast(87%);
}

.review-card__text {
    font-size: 14px;
    line-height: 24px;
    color: rgba(46, 46, 46, 0.7);
    margin-bottom: 24px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #d9cbbf;
    flex-shrink: 0;
}

.review-card__avatar img {
    border-radius: 2px;
}

.review-card__name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2e2e2e;
}

.review-card__location {
    display: block;
    font-size: 12px;
    color: #a4a4a4;
    margin-top: 2px;
}

.review-card__product {
    font-size: 12px;
    color: #a4a4a4;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* New review-card bottom layout (plugin reviews) */
.review-card__bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.review-card__product-thumb {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card__product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.review-card__product-link {
    font-size: 12px;
    color: #a4a4a4;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.review-card__product-link:hover {
    color: var(--color-gold);
    opacity: 1;
}

.reviews__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 0;
}

.reviews__rating { text-align: center; }

.reviews__rating-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #2e2e2e;
    line-height: 56px;
}

.reviews__rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.reviews__rating-stars img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(1037%) hue-rotate(109deg) brightness(199%) contrast(87%);
}
.reviews__rating-label { font-size: 14px; color: #a4a4a4; }

.reviews__divider {
    width: 1px;
    height: 80px;
    background: rgba(0,0,0,0.1);
}

.reviews__count { text-align: center; }

.reviews__count-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #2e2e2e;
    line-height: 56px;
}

.reviews__count-label { font-size: 14px; color: #a4a4a4; }

/* ======================
   CTA
   ====================== */
.cta {
    position: relative;
    overflow: hidden;
}

.cta__image {
    position: relative;
    height: 711px;
}

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

.cta__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(46, 46, 46, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.cta__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.cta__text p:first-child {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta__text h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
}

.cta__text p {
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 390px;
    margin-bottom: 32px;
}

.cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.cta__btn {
    font-size: 16px;
    padding: 18px 32px;
    width: fit-content;
}

.cta__stats {
    display: flex;
    gap: 48px;
}

.cta__stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 40px;
}

.cta__stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 20px;
    margin-top: 4px;
}

/* CTA FULL WIDTH */
.cta--full {
    position: relative;
    overflow: hidden;
}

.cta--full .cta__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta--full .cta__content {
    position: relative;
    height: auto;
    min-height: 500px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ======================
   NEWSLETTER
   ====================== */
.newsletter {
    background: var(--color-beige);
    position: relative;
    overflow: hidden;
}

.newsletter__content {
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.newsletter__text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #2e2e2e;
    margin-bottom: 16px;
}

.newsletter__text p {
    font-size: 16px;
    line-height: 24px;
    color: rgba(46, 46, 46, 0.7);
    margin-bottom: 24px;
    max-width: 320px;
}

.newsletter__text span {
    color: var(--color-green);
    font-weight: 600;
}

.newsletter__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #2e2e2e;
    margin-bottom: 12px;
}

.newsletter__input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter__input {
    flex: 1;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(46, 46, 46, 0.1);
    border-radius: 2px;
    font-size: 14px;
    color: #2e2e2e;
    min-width: 0;
}

.newsletter__input::placeholder {
    color: rgba(46, 46, 46, 0.4);
}

.newsletter__submit {
    padding: 14px 24px;
    white-space: nowrap;
    font-size: 13px;
}

.newsletter__consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(46, 46, 46, 0.6);
    line-height: 18px;
    cursor: pointer;
}

.newsletter__consent a {
    color: #bfa380;
    text-decoration: underline;
}

.newsletter__checkbox {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: #bfa380;
}

.newsletter__image {
    height: 280px;
}

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

/* ======================
   FAQ
   ====================== */
.faq {
    padding: 60px 0;
    background: #f9f9f9;
}

.faq__header {
    text-align: center;
    margin-bottom: 40px;
}

.faq__header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 12px;
}

.faq__header p {
    font-size: 16px;
    color: #a4a4a4;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 864px;
    margin: 0 auto 40px;
}

.faq__item {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
}

.faq__item--active {
    background: var(--color-beige);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #2e2e2e;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
}

.faq__question:hover {
    background: var(--color-beige);
}

.faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(1037%) hue-rotate(109deg) brightness(89%) contrast(97%);
}

.faq__item--active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px 0;
}

.faq__item--active .faq__answer {
    max-height: 200px;
    padding: 0 24px 24px;
}

.faq__answer p {
    font-size: 14px;
    line-height: 22px;
    color: rgba(46, 46, 46, 0.7);
}

.faq__contact {
    background: #fff;
    border-radius: 2px;
    padding: 32px;
    text-align: center;
    max-width: 864px;
    margin: 0 auto;
}

.faq__contact p {
    font-size: 16px;
    color: #2e2e2e;
    margin-bottom: 16px;
}

/* ======================
   FOOTER
   ====================== */
.footer {
    background: var(--color-green);
    color: #fff;
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__heading {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 25px !important;
    color: #fff !important;
}

.footer__text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    max-width: 280px;
    letter-spacing: 0.3px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

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

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

.footer__list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 22px;
    transition: var(--transition);
    text-decoration: none;
    display: inline;
    padding: 0;
    background: none;
    text-transform: unset;
    border-bottom: 0 !important;
}

.footer__list a:hover {
    color: #fff;
    opacity: 1;
    background: none;
}

footer .current-menu-item {
    background: unset;
}

/* Override WordPress menu classes in footer */
.footer__list .menu-item a, .footer__list .current-menu-item a, .footer__list .current_page_item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    padding: 0;
    border-radius: 0;
    transition: var(--transition);
}

.footer__list .menu-item a:hover,
.footer__list .current-menu-item a:hover,
.footer__list .current_page_item a:hover {
    color: #fff;
    background: none;
}

.footer__list .current-menu-item a,
.footer__list .current_page_item a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__contact-list img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer__contact-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 22px;
}

.footer__contact-list div {
    display: flex;
    flex-direction: column;
}

.footer__contact-list div span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 22px;
}

.footer__contact-list div span:first-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__contact-list li:first-child div span:first-child {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__contact-list li:first-child div span:last-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer__links a:hover {
    color: #fff;
    opacity: 1;
}

.footer__credits {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__credits a {
    color: rgba(255, 255, 255, 0.6);
}

/* ======================
   PAGE HERO
   ====================== */
.page-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(46,46,46,0.85), rgba(46,46,46,0.75));
}

.page-hero__content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.page-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.page-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* BREADCRUMBS */
.breadcrumbs {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: #fff; opacity: 1; }
.breadcrumbs span { margin: 0 4px; }
.breadcrumbs__current { color: #fff; }

.breadcrumbs-bar {
    padding: 20px 0;
    background: #fff;
}

.breadcrumbs-bar .breadcrumbs { color: #a4a4a4; margin-bottom: 0; }
.breadcrumbs-bar .breadcrumbs a { color: #a4a4a4; }
.breadcrumbs-bar .breadcrumbs a:hover { color: #2e2e2e; }
.breadcrumbs-bar .breadcrumbs__current { color: #2e2e2e; }

/* ======================
   ARCHIVE PAGE
   ====================== */
.archive {
    padding: 40px 0 60px;
}

.archive__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.archive__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.archive__results { font-size: 14px; color: #a4a4a4; }
.archive__results strong {
    color: #2e2e2e9e;
    font-weight: 600;
}

.archive__select {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    background: #fff;
    color: #2e2e2e;
    cursor: pointer;
}

.archive__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.archive__page {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #2e2e2e;
    transition: all 0.3s;
}

.archive__page:hover { border-color: var(--color-gold); color: var(--color-gold); opacity: 1; }
.archive__page--active { background: var(--color-gold); border-color: var(--color-gold); color: #fff; }
.archive__page--active:hover { color: #fff; }
.archive__no-results { font-size: 16px; color: #a4a4a4; text-align: center; padding: 60px 0; grid-column: 1 / -1; }

/* ARCHIVE FILTERS */
.archive__filters {
    margin-bottom: 32px;
}

.archive__filter-cats {
    margin-bottom: 16px;
}

.archive__cats-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.archive__cats-list::-webkit-scrollbar { display: none; }

.archive__cats-list .archive__cat-btn { flex-shrink: 0; }

.archive__cat-btn {
    padding: 8px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-antracite);
    background: #f9f9f9;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.archive__cat-btn:hover { border-color: var(--color-gold); }
.archive__cat-btn--active { background: var(--color-gold); border-color: var(--color-gold); color: #fff; }
.archive__cat-btn--hidden { display: none; }

.archive__cat-count {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 4px;
}

.archive__cat-btn--active .archive__cat-count { opacity: 0.8; }

.archive__cats-more {
    padding: 8px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    background: none;
    border: 1px dashed var(--color-gold);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.archive__cats-more:hover { background: rgba(191,163,128,0.05); }

/* Mobile: hide "show more" button, show all categories */
.archive__cats-more { display: none; }
.archive__cat-btn--hidden { display: flex !important; }

/* Filter options row */
.archive__filter-options {
    display: none;
}

.archive__filter-group {
    position: relative;
}

.archive__filter-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-antracite);
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.archive__filter-toggle:hover { border-color: var(--color-gold); }
.archive__filter-toggle.active { border-color: var(--color-gold); background: rgba(191,163,128,0.05); }
.archive__filter-toggle.has-filter { background: var(--color-gold); color: #fff; border-color: var(--color-gold); }
.archive__filter-toggle.has-filter .archive__filter-arrow { filter: brightness(0) invert(1); }

.archive__filter-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
    rotate: -90deg;
}

.archive__filter-toggle.active .archive__filter-arrow { transform: rotate(180deg); }

.archive__filter-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 50;
    padding: 16px;
}

.archive__filter-dropdown.active { display: block; }

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

.archive__price-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.archive__filter-apply {
    margin-top: 12px;
    width: 100%;
    padding: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-gold);
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.archive__filter-apply:hover { background: var(--color-gold-hover); }

.archive__filter-clear {
    margin-top: 8px;
    width: 100%;
    padding: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    color: #a4a4a4;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.archive__filter-clear:hover { color: var(--color-antracite); border-color: var(--color-antracite); }

.archive__filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-antracite);
    cursor: pointer;
}

.archive__filter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.archive__filter-group--sort {
    margin-left: auto;
}

/* Mobile filter button */
.archive__mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-antracite);
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 12px;
    transition: border-color 0.3s;
}

.archive__mobile-filter-btn:hover { border-color: var(--color-gold); }
.archive__mobile-filter-btn img { width: 16px; height: 16px; }

/* Mobile filter popup */
.archive__mobile-filters {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.archive__mobile-filters.active { right: 0; }

.archive__mobile-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e9e9e9;
}

.archive__mobile-filters-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-antracite);
}

.archive__mobile-filters-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-antracite);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive__mobile-filters-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.archive__mobile-filter-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

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

.archive__mobile-filter-section h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-antracite);
    margin-bottom: 12px;
}

.archive__mobile-filters-footer {
    padding: 20px 24px;
    border-top: 1px solid #e9e9e9;
    display: flex;
    gap: 12px;
}

.archive__mobile-filters-footer .btn { flex: 1; text-align: center; font-size: 13px; padding: 12px; }

.archive__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* ======================
   PRODUCT SINGLE
   ====================== */
.product-single {
    padding: 32px 0 60px;
}

.product-single__layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-single__main-image {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #1F7A5C;
    aspect-ratio: 630 / 651;
    background: #f5f5f5;
}

.product-single__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-single__thumbs {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.product-single__thumb {
    width: calc(33.333% - 11px);
    aspect-ratio: 198 / 175;
    border: 2px solid #e9e9e9;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    padding: 2px;
    background: none;
}

.product-single__thumb--active { border-color: #bfa380; }

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

.product-single__title {
    font-size: 28px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-single__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-antracite);
    margin-bottom: 16px;
}

.product-single__price del { color: #a4a4a4; font-size: 18px; margin-right: 8px; }
.product-single__price ins { text-decoration: none; }

.product-single__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-single__stars { display: flex; gap: 2px; }
.product-single__stars img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(1037%) hue-rotate(109deg) brightness(199%) contrast(87%);
}
.product-single__reviews-count { font-size: 14px; color: #a4a4a4; }

.product-single__desc {
    font-size: 15px;
    line-height: 24px;
    color: rgba(46,46,46,0.7);
    margin-bottom: 24px;
}

.product-single__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.product-single__colors {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.product-single__color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s;
}

.product-single__color--active,
.product-single__color:hover { border-color: #bfa380; }

.product-single__select {
    min-width: 40%;
    padding: 12px 16px;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #2e2e2e;
    background: #fff;
    margin-bottom: 24px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%232e2e2e'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.product-single__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.product-single__quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
}

.product-single__qty-btn {
    width: 20px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #2e2e2e;
}

.product-single__qty-input {
    width: 48px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
}

.product-single__qty-input::-webkit-inner-spin-button,
.product-single__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.product-single__add-to-cart {
    flex: 1;
    text-align: center;
    min-width: 160px;
}

.product-single__wishlist {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

.product-single__wishlist:hover { border-color: var(--color-gold); }
.product-single__wishlist img { width: 20px; height: 20px; }

/* Swiper Gallery */
.product-gallery-main { border-radius: 2px; overflow: hidden; }
.product-gallery-main .swiper-slide img { width: 100%; height: auto; display: block; cursor: zoom-in; }
.product-gallery-main .swiper-button-next,
.product-gallery-main .swiper-button-prev {
    width: 40px; height: 40px; background: rgba(255,255,255,0.9); border-radius: 50%;
    color: var(--color-antracite); transition: all 0.3s;
}
.product-gallery-main .swiper-button-next::after,
.product-gallery-main .swiper-button-prev::after { font-size: 14px; font-weight: 700; }
.product-gallery-main .swiper-button-next:hover,
.product-gallery-main .swiper-button-prev:hover { background: #fff; }

.product-gallery-thumbs { margin-top: 12px; }
.product-gallery-thumbs .swiper-slide {
    width: 80px !important; height: 80px; border-radius: 2px; overflow: hidden;
    border: 2px solid transparent; cursor: pointer; transition: border-color 0.3s; opacity: 0.6;
}
.product-gallery-thumbs .swiper-slide-thumb-active { border-color: var(--color-gold); opacity: 1; }
.product-gallery-thumbs .swiper-slide:hover { opacity: 1; }
.product-gallery-thumbs .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.product-lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.92); z-index: 10000;
    display: none; align-items: center; justify-content: center;
}
.product-lightbox.active { display: flex; }
.product-lightbox__close {
    position: absolute; top: 20px; right: 20px; z-index: 10001;
    font-size: 36px; color: #fff; background: none; border: none; cursor: pointer;
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s;
}
.product-lightbox__close:hover { opacity: 0.7; }
.product-lightbox__swiper { width: 90%; max-width: 900px; max-height: 90vh; }
.product-lightbox__swiper .swiper-slide { display: flex; align-items: center; justify-content: center; }
.product-lightbox__swiper .swiper-slide img { max-width: 100%; max-height: 85vh; object-fit: contain; }
.product-lightbox__swiper .swiper-button-next,
.product-lightbox__swiper .swiper-button-prev { color: #fff; }
.product-lightbox__swiper .swiper-button-next::after,
.product-lightbox__swiper .swiper-button-prev::after { font-size: 24px; }

.product-single__out-of-stock {
    font-size: 16px;
    font-weight: 600;
    color: #c0392b;
    padding: 16px 0;
}

.product-single__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #e9e9e9;
}

.product-single__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(46,46,46,0.7);
}

.product-single__feature img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(1037%) hue-rotate(109deg) brightness(89%) contrast(97%);
}

/* ======================
   PRODUCT DESCRIPTION
   ====================== */
.product-desc {
    padding: 60px 0;
    background: #f9f9f9;
}

/* Product Tabs */
.product-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e9e9e9;
    margin-bottom: 32px;
}

.product-tabs__btn {
    padding: 14px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #a4a4a4;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.product-tabs__btn:hover { color: var(--color-antracite); }
.product-tabs__btn--active { color: var(--color-antracite); border-bottom-color: var(--color-gold); }

.product-tabs__panel { display: none; }
.product-tabs__panel--active { display: block; }

/* Parameters Table */
.product-params {
    width: 100%;
    border-collapse: collapse;
}

.product-params tr { border-bottom: 1px solid #f0f0f0; }
.product-params tr:last-child { border-bottom: none; }

.product-params th {
    text-align: left;
    padding: 14px 16px 14px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-antracite);
    width: 180px;
    vertical-align: top;
}

.product-params td {
    padding: 14px 0;
    font-size: 14px;
    color: rgba(46,46,46,0.7);
}

.product-params__tag {
    display: inline-block;
    padding: 4px 12px;
    background: #fff;
    border-radius: 2px;
    font-size: 13px;
    color: var(--color-antracite);
    margin: 2px 4px 2px 0;
}

/* Product Reviews (in tab) */
.product-reviews__list { margin-bottom: 32px; }

.product-reviews__item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-reviews__item:last-child { border-bottom: none; }

.product-reviews__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.product-reviews__stars { display: flex; gap: 2px; }
.product-reviews__stars img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(1037%) hue-rotate(109deg) brightness(199%) contrast(87%);
}

.product-reviews__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-antracite);
}

.product-reviews__date {
    font-size: 13px;
    color: #a4a4a4;
}

.product-reviews__text {
    font-size: 15px;
    line-height: 24px;
    color: rgba(46,46,46,0.7);
}

.product-reviews__empty {
    font-size: 15px;
    color: #a4a4a4;
    padding: 24px 0;
}

.product-reviews__login {
    font-size: 15px;
    color: rgba(46,46,46,0.7);
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.product-reviews__login a {
    color: var(--color-gold);
    font-weight: 600;
}

.product-reviews__form {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e9e9e9;
}

.product-reviews__form h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-antracite);
    margin-bottom: 20px;
}

.product-reviews__rating-select {
    margin-bottom: 16px;
}

.product-reviews__rating-select label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-antracite);
    margin-bottom: 8px;
}

.product-reviews__stars-select { display: flex; gap: 4px; }
.product-reviews__stars-select img { width: 24px; height: 24px; transition: opacity 0.2s; }

.product-reviews__field {
    margin-bottom: 16px;
}

.product-reviews__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-antracite);
    margin-bottom: 8px;
}

.product-reviews__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--color-antracite);
    resize: vertical;
    transition: border-color 0.3s;
}

.product-reviews__field textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.product-desc__long-description h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 8px;
    text-align: center;
}

.product-desc__long-description h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 12px;
    margin-top: 24px;
}

.product-desc__long-description p {
    font-size: 15px;
    line-height: 24px;
    color: rgba(46,46,46,0.7);
    margin-bottom: 16px;
}

.product-desc__long-description p:last-child {
    margin-bottom: 0;
}

.product-desc__long-description ul {
    list-style: none;
    margin-bottom: 16px;
}

.product-desc__long-description ul li {
    font-size: 15px;
    line-height: 28px;
    color: rgba(46,46,46,0.7);
    padding-left: 16px;
    position: relative;
}

.product-desc__long-description ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #bfa380;
}

.product-desc__images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-desc__img {
    border-radius: 2px;
    overflow: hidden;
}

.product-desc__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-desc__img-caption { padding: 16px 0; }

.product-desc__img-caption h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 4px;
}

.product-desc__img-caption p {
    font-size: 14px;
    color: #a4a4a4;
}

/* ======================
   IMAGES TEXT BLOCK
   ====================== */
.images-text-block {
    padding: 60px 0;
    background: #f9f9f9;
}

.images-text-block__header {
    text-align: center;
    margin-bottom: 48px;
}

.images-text-block__header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 8px;
}

.images-text-block__header p {
    font-size: 16px;
    color: #a4a4a4;
}

.images-text-block__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.images-text-block__text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 12px;
    margin-top: 24px;
}

.images-text-block__text h3:first-child { margin-top: 0; }

.images-text-block__text p {
    font-size: 15px;
    line-height: 24px;
    color: rgba(46,46,46,0.7);
    margin-bottom: 16px;
}

.images-text-block__text ul {
    list-style: none;
    margin-bottom: 16px;
}

.images-text-block__text ul li {
    font-size: 15px;
    line-height: 28px;
    color: rgba(46,46,46,0.7);
    padding-left: 16px;
    position: relative;
}

.images-text-block__text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #bfa380;
}

/* ======================
   TEXT BLOCK
   ====================== */
.text-block {
    padding: 60px 0;
}

.text-block__content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 16px;
}

.text-block__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 12px;
}

.text-block__content p {
    font-size: 16px;
    line-height: 28px;
    color: rgba(46,46,46,0.7);
    margin-bottom: 16px;
}

/* ======================
   CONTACT INFO
   ====================== */
.contact-info {
    padding: 60px 0;
}

.contact-info__header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info__header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 12px;
}

.contact-info__header p {
    font-size: 18px;
    color: #a4a4a4;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-info__card {
    background: #DDE3DF;
    border-radius: 2px;
    padding: 32px;
    text-align: center;
}

.contact-info__icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info__icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(1037%) hue-rotate(109deg) brightness(89%) contrast(97%);
    opacity: 0.5;
}

.contact-info__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 8px;
}

.contact-info__card-value {
    font-size: 16px;
    color: #2e2e2e;
    margin-bottom: 4px;
}

.contact-info__card-note {
    font-size: 14px;
    color: #a4a4a4;
}

/* ======================
   CONTACT FORM
   ====================== */
.contact-form-section {
    padding: 0 0 60px;
}

.contact-form-section br {
    display: none;
}

.contact-form__layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-form__header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 8px;
}

.contact-form__header p {
    font-size: 16px;
    color: #a4a4a4;
    margin-bottom: 24px;
}

/* Contact form structure */
.contact-form__row {
    margin-bottom: 20px;
}

.contact-form__row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__group {
    margin-bottom: 20px;
}

.contact-form__row .contact-form__group {
    margin-bottom: 0;
}

.contact-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.contact-form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #2e2e2e;
    transition: border-color 0.3s;
}

.contact-form__input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.contact-form__input::placeholder {
    color: rgba(46,46,46,0.4);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
    height: 120px;
}

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%232e2e2e'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form__submit {
    width: 100%;
    padding: 16px;
}

/* Contact form title & subtitle */
.contact-form__title {
    font-size: 32px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 8px;
}

.contact-form__subtitle {
    font-size: 16px;
    color: #a4a4a4;
    margin-bottom: 24px;
}

/* Contact sidebar */
.contact-sidebar__box {
    border: 2px solid #f9f9f9;
    border-radius: 2px;
    padding: 32px;
    margin-bottom: 24px;
}

.contact-sidebar__box--dark {
    background: #2e2e2e;
    border-color: #2e2e2e;
}

.contact-sidebar__heading {
    font-size: 20px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 16px;
}

.contact-sidebar__heading--light {
    color: #fff;
}

.contact-sidebar__text {
    font-size: 14px;
    color: #a4a4a4;
    margin-bottom: 16px;
}

.contact-sidebar__hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-sidebar__row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #2e2e2e;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-sidebar__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-sidebar__faq-list {
    list-style: none;
}

.contact-sidebar__faq-list li {
    margin-bottom: 8px;
}

.contact-sidebar__faq-list a {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-sidebar__faq-list a:hover {
    opacity: 0.5;
}

.contact-sidebar__social {
    display: flex;
    gap: 12px;
}

.contact-sidebar__social-link {
    width: 48px;
    height: 48px;
    background: var(--color-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-sidebar__social-link img {
    width: 24px;
    height: 24px;
}

/* ======================
   VISIT US / MAP
   ====================== */
.visit-us {
    padding: 60px 0;
}

.visit-us__map {
    background: #f9f9f9;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 2px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visit-us__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.visit-us__placeholder { text-align: center; }

.visit-us__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.visit-us__name {
    font-size: 18px;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 4px;
}

.visit-us__address {
    font-size: 14px;
    color: #a4a4a4;
}

/* ======================
   MEDIA TEXT BLOCK
   ====================== */
.media_text {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.media_text.outside {
    padding: 0;
}

.media_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 0;
}

.media_text > .container {
    position: relative;
    z-index: 1;
}

.media_text .flex_content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.media_text .media_box {
    width: calc(100% + 40px);
    transform: translateX(-20px);
}

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

.media_text .media_box img,
.media_text .media_box video {
    margin-left: 20px;
    width: calc(100% - 40px);
}

.media_text .media_box video {
    width: 100%;
    border-radius: 10px;
}

.media_text .text_box {
    padding: 20px 0 0;
}

.media_text .text_box .btn {
    margin-bottom: 0 !important;
}

.media_text.outside .text_box {
    padding: 20px;
}

.media_text.outside > .container {
    max-width: none;
    padding: 0;
}

/* ======================
   DESKTOP (992px+)
   ====================== */
@media (min-width: 992px) {

    /* HEADER */
    .header {
        position: fixed;
        z-index: 100;
        width: 100%;
        top: 0;
        background: #fff;
        height: 120px;
    }

    .header.scrolled { height: 80px; }
    .topbar { margin-top: 120px; }

    .header__logo {
        position: absolute;
        top: 0;
        height: 120px;
        padding: 40px 0;
    }

    .header__icons {
        position: absolute;
        right: 20px;
        top: 50px;
        z-index: 99;
    }

    .header__top {
        max-width: 1280px;
        margin: 0 auto;
        gap: 0;
        position: relative;
    }

    .header__search {
        display: flex;
        align-items: center;
        flex: 1;
        max-width: 771px;
        margin: 0 auto;
        background: #f9f9f9;
        border-radius: 2px;
        padding: 0 16px;
        height: 40px;
        transition: var(--transition);
    }

    .header__search-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .header__search-input {
        width: 100%;
        background: transparent;
        font-size: 14px;
        color: #2e2e2e;
    }

    .header__search-input::placeholder { color: rgba(46, 46, 46, 0.5); }
    .header__hamburger { display: none; }
    .header__nav { display: block; padding: 0; padding-top: 0; }

    .menu {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        max-width: 1280px;
        margin: 0 auto;
    }

    .menu-item > a {
        padding: 20px 18px;
        border-bottom: none;
        font-size: 14px;
        line-height: 1;
        transition: background 0.3s;
    }

    .menu-item > a:hover { background: var(--color-beige); opacity: 1; }

    .current-menu-item {
        background: var(--color-beige);
        position: relative;
    }

    .current-menu-item > a {
        background: var(--color-beige);
        color: #2e2e2e;
        font-weight: 400;
    }

    .menu-item-has-children:hover > .sub-menu { display: block; }

    .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-radius: 0 0 2px 2px;
        z-index: 100;
        padding: 8px 0;
    }

    .sub-menu .menu-item a {
        padding: 10px 24px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* TOP BAR */
    .topbar__inner { justify-content: space-between; }
    .topbar__item { font-size: 13px; }
    .topbar__item:nth-child(2),
    .topbar__item:nth-child(3) { display: inline; }

    /* HERO */
    .hero__carousel { height: calc(100vh - 166px); }

    .hero {
        height: calc(100vh - 166px);
    }

    .hero__content {
        padding: 0;
        max-width: 1280px;
        margin: 0 auto;
        padding-left: 120px;
    }

    .hero__text p:first-child { font-size: 14px; }
    .hero__text h1 { font-size: 80px; line-height: 86px; }
    .hero__text p { font-size: 16px; }
    .hero__arrow {
        width: 100px;
    }

    /* SECTION HEADER */
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
    }

    .section-header__text h2 { font-size: 36px; }

    /* PRODUCTS */
    .products-section { padding: 80px 0; }

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

    .products-grid .product-card { min-width: 0; }
    .product-card__name { font-size: 15px; }
    .product-card__variant { font-size: 14px; }
    .product-card__price { font-size: 16px; }
    .product-card__info { padding: 16px 0; }

    /* CATEGORIES */
    .categories { padding: 80px 0; }
    .categories__title { font-size: 36px; margin-bottom: 48px; }
    .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .category-card { height: 400px; }
    .category-card__name { font-size: 28px; }

    /* PROMO BANNER */
    .promo-banner { padding: 60px 0; }
    .promo-banner__grid { grid-template-columns: repeat(4, 1fr); gap: 48px; }
    .promo-banner__text h3 { font-size: 16px; }

    /* REVIEWS */
    .reviews { padding: 80px 0; }
    .reviews__header h2 { font-size: 36px; }
    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
    }

    /* CTA */
    .cta { position: relative; padding: 84px 0; overflow: visible; }

    .cta__wrapper {
        position: relative;
        max-width: 1280px;
        margin: 0 auto;
        border-radius: 2px;
        overflow: hidden;
        min-height: 530px;
    }

    .cta__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .cta__gradient {
        background: linear-gradient(to right, rgba(46, 46, 46, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
    }

    .cta__content {
        position: relative;
        width: 100%;
        padding: 35px 64px;
        background: none;
    }

    .cta__text h2 { font-size: 48px; line-height: 56px; }
    .cta__text p { font-size: 18px; }
    .cta__buttons { flex-direction: row; }

    /* CTA FULL WIDTH desktop */
    .cta--full .cta__content { padding: 80px 0; }
    .cta--full .cta__buttons { flex-direction: row; }
    .cta--full .cta__text h2 { font-size: 48px; line-height: 56px; }

    /* NEWSLETTER */
    .newsletter { display: flex; min-height: 504px; }

    .newsletter__content {
        width: 53%;
        padding: 92px 40px 92px 0;
        margin-left: calc((100% - 1280px) / 2 + 0px);
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        max-width: 640px;
    }

    .newsletter__text h2 { font-size: 36px; }
    .newsletter__text p { max-width: 416px; }
    .newsletter__input-group { max-width: 418px; }
    .newsletter__image { width: 47%; height: auto; }

    /* FAQ */
    .faq { padding: 80px 0; }
    .faq__header h2 { font-size: 36px; }
    .faq__question { font-size: 18px; }

    /* FOOTER */
    .footer { padding: 80px 0 0; }

    .footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 48px;
        padding-bottom: 60px;
    }

    .footer__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .footer__copyright { margin-bottom: 0; }
    .footer__links { margin-bottom: 0; }
    .footer__credits { margin-bottom: 0; }

    /* PAGE HERO */
    .page-hero { height: 300px; }
    .page-hero__title { font-size: 56px; }
    .page-hero__desc { font-size: 18px; }

    /* ARCHIVE */
    .archive { padding: 48px 0 80px; }
    .archive__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }

    .archive__filter-options {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .archive__mobile-filter-btn { display: none; }
    .archive__mobile-filters { display: none; }
    .archive__mobile-overlay { display: none; }

    /* Desktop: categories wrap, show "more" button */
    .archive__cats-list {
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
    }
    .archive__cats-more { display: inline-flex; }
    .archive__cat-btn--hidden { display: none !important; }

    /* PRODUCT SINGLE */
    .product-single { padding: 40px 0 80px; }
    .product-single__layout { flex-direction: row; gap: 64px; }
    .product-single__gallery { width: 55%; flex-shrink: 0; }
    .product-single__info { flex: 1; }
    .product-single__title { font-size: 36px; }
    .product-single__price { font-size: 16px; }

    /* PRODUCT DESCRIPTION */
    .product-desc { padding: 80px 0; }
    .product-desc__long-description h2 { font-size: 36px; }

    .images-text-block { padding: 80px 0; }
    .images-text-block__content { flex-direction: row; gap: 64px; }
    .images-text-block__text { flex: 1; }
    .product-desc__images { width: 50%; grid-template-columns: 1fr 1fr; }
    .images-text-block__header h2 { font-size: 36px; }

    /* CONTACT */
    .contact-info__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .contact-form__layout { flex-direction: row; gap: 64px; }
    .contact-form__left { flex: 1; }
    .contact-form__right { width: 45%; flex-shrink: 0; }
    .contact-form__submit { width: auto; padding: 16px 48px; }

    /* MEDIA TEXT */
    .media_text .media_box img,
    .media_text .media_box video {
        margin-left: 0;
        width: 100%;
    }

    .media_text .flex_content {
        flex-direction: row;
        align-items: stretch;
        gap: 5%;
    }

    .media_text.left .text_box {
        padding-left: 20px;
    }

    .media_text .media_box,
    .media_text .text_box {
        flex: 1 1 50%;
        display: flex;
        align-items: center;
    }

    .media_text.left .flex_content {
        flex-direction: row;
    }

    .media_text.right .flex_content {
        flex-direction: row-reverse;
    }

    .media_text.outside .wrapper {
        max-width: calc((1280px / 2) - 40px);
    }

    .media_text.right.outside .wrapper {
        margin-left: 40px;
    }

    .media_text.outside .text_box {
        padding: 0;
    }

    .media_text.left.outside .wrapper {
        margin-left: 20px;
    }

    .media_text .media_box {
        width: 100%;
        transform: translateX(0);
    }
}

@media (min-width: 1280px) {
    .media_text.right.outside .wrapper {
        margin-left: calc((100vw - 1280px) / 2 + 20px);
    }
}


@media (min-width: 1440px) {
    .hero__arrow {
        width: 140px;
    }
    .hero__content {
        padding-left: 80px;
    }
}

@media (min-width: 1700px) {
    .hero__arrow {
        width: 160px;
    }
    .hero__content {
        padding-left: 0px;
    }
}