@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

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

body {
    font-family: "Inter", sans-serif;
}

header {
    background-color: #000000c4;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: background-color 0.25s ease;
}

header.is-scrolled {
    background-color: #000;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-buttons {
    display: flex;
    gap: 22px;
}
.logo img {
    width: 130px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu__list {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.menu-item {
    position: relative;
    list-style: none;
}

.menu-item__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 60px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.menu-item__link:hover,
.menu-item__link:active,
.menu-item__link:visited,
.menu-item__link:focus-visible {
    color: #fff;
}

.menu-item.has-dropdown:hover > .menu-item__link,
.menu-item.has-dropdown:focus-within > .menu-item__link {
    opacity: 0.78;
}

.menu-item__chevron {
    width: 10px;
    height: 7px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: transform 0.25s ease;
}

.menu-item.has-dropdown:hover .menu-item__chevron,
.menu-item.has-dropdown:focus-within .menu-item__chevron,
.menu-item.is-open .menu-item__chevron {
    transform: rotate(180deg);
}

/* Category dropdown */
.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
    z-index: 120;
}

.menu-dropdown__inner {
    background: #f8f6f3;
    color: #1a1a1a;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        0 2px 0 rgba(196, 165, 116, 0.55) inset;
    padding: 18px 0 14px;
}

.menu-dropdown__label {
    margin: 0 20px 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    text-transform: none;
}

.menu-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-dropdown__link {
    display: block;
    padding: 10px 12px;
    color: #3a3a3a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.35;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.menu-dropdown__link:hover,
.menu-dropdown__link:focus-visible {
    color: #111;
    background: rgba(26, 26, 26, 0.04);
    padding-left: 16px;
}

.menu-dropdown__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 20px 0;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    color: #1a1a1a;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease, gap 0.2s ease;
}

.menu-dropdown__all svg {
    width: 14px;
    height: 14px;
}

.menu-dropdown__all:hover,
.menu-dropdown__all:focus-visible {
    color: #8a6d3b;
    gap: 12px;
}

.menu-item.has-dropdown:hover > .menu-dropdown,
.menu-item.has-dropdown:focus-within > .menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: clamp(420px, 52vw, 680px);
    min-height: 90vh;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-swiper .swiper-slide > .container {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

/* CTA Button */
.hero-cta {
    position: absolute;
    left: 20px;
    bottom: 86px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #000000c4;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    border-radius: 999px;
    transition: background 0.25s ease;
    white-space: nowrap;
    width: max-content;
    max-width: calc(100% - 40px);
    pointer-events: auto;
    box-sizing: border-box;
}
.hero-cta svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.hero-cta:hover {
    background: rgba(20, 20, 20, 0.88);
}

.hero-cta img,
.hero-cta__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Pagination - horizontal dashes */
.hero-swiper .swiper-pagination {
    bottom: clamp(20px, 3vw, 32px) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 36px;
    height: 2px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    margin: 0 !important;
    transition:
        background 0.3s ease,
        width 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 36px;
}

/* Categories Section */
.categories-section {
    padding: clamp(48px, 6vw, 72px) 0;
    background: #fff;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 58px;
}

.categories-header__left {
    max-width: 520px;
}

.categories-header__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #030303;
    margin-bottom: 12px;
}

.categories-header__desc {
    font-size: 14px;
    line-height: 25px;
    color: #030303;
    font-weight: 400;
    max-width: 366px;
}

.categories-header__link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #040404;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}
.categories-header__link::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #030303;
    position: absolute;
    bottom: -7px;
    left: 0;
}

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

.category-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    text-decoration: none;
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card__image {
    transform: scale(1.04);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 35%,
        rgba(0, 0, 0, 0) 60%
    );
    pointer-events: none;
}

.category-card__label {
    position: absolute;
    left: 16px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.category-card__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Featured Products Section */
.featured-section {
    padding: 127px 0 150px 0;
    background: #462905;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: clamp(32px, 4vw, 48px);
}

.featured-header__label {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #f7f3ee;
    margin-bottom: 3px;
}

.featured-header__title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.featured-header__link {
    font-size: 14px;
    font-weight: 400;
    color: #fdfdfd;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    line-height: 17px;
    padding-bottom: 7px;
}
.featured-header__link::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fdfdfd;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
}

.product-card {
    display: block;
    text-decoration: none;
    color: #fff;
}

.product-card__image-wrap {
    overflow: hidden;
    margin-bottom: 14px;
}

.product-card__image {
    width: 100%;
    height: 280px;
}

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

.product-card__info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.product-card__name {
    font-size: 16px;
    font-weight: 400;
    color: #f6f6f6;
}

.product-card__price {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 600;
    color: #f6f6f6;
    white-space: nowrap;
}

/* About / Features Section */
.about-section {
    padding: clamp(64px, 8vw, 96px) 0;
    background: #f7f3ee;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
}

.about-content__label {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #8e6e53;
    margin-bottom: 3px;
}

.about-content__title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-content__desc {
    font-size: 14px;
    color: #8e6e53;
    line-height: 25px;
    margin-bottom: 46px;
}

.about-features {
    list-style: none;
}

.about-features__item {
    padding: 20px 0 23px 14px;
    border-bottom: 1px solid #a9907b;
    position: relative;
}
.about-features__item::before {
    content: "";
    display: block;
    width: 4px;
    height: 42px;
    background-color: #8e6e53;
    position: absolute;
    left: 0;
}

.about-features__title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.about-features__title a {
    color: inherit;
    text-decoration: none;
}

.about-features__title a:hover {
    color: #8e6e53;
}

.about-features__text {
    font-size: 13px;
    line-height: 1.65;
    color: #6b5e54;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 520px;
    margin: 0 auto;
}

.about-gallery__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: clamp(48px, 6vw, 72px) 0;
    background: #f5f3f0;
    border-top: 1px solid #ebe6e0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 4vw, 40px);
}

.benefit-item__icon {
    width: 28px;
    height: 28px;
    color: #5c4a3a;
    margin-bottom: 10px;
}

.benefit-item__title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 11px;
    line-height: 17px;
}

.benefit-item__text {
    font-size: 12px;
    line-height: 15px;
    color: #8e6e53;
    max-width: 217px;
}

.about-gallery-group-2 {
    position: relative;
    top: 40px;
}

.site-footer {
    background-color: #1f2937;
    padding-top: 62px;
    border-top: 5px solid #927359;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: clamp(32px, 4vw, 48px);
    padding-bottom: 48px;
}

.footer-brand__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand__logo img {
    display: block;
    max-width: 160px;
    height: auto;
}

.footer-brand__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-trust-badges__item {
    flex-shrink: 0;
}

.footer-trust-badges__item img {
    display: block;
    height: 25px;
    width: auto;
}

.footer-trust-badges__etbis img {
    height: 25px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    transition: opacity 0.2s ease;
    background-color: #f6f6f6;
    border-radius: 50%;
}

.social-links a:hover {
    opacity: 0.75;
}

.social-links img {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 57px;
}

.footer-cta__card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f6f6f6;
}

.footer-cta__card p {
    font-size: 12px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    max-width: 293px;
}

.footer-cta__card .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    color: #202937;
    text-decoration: none;
    border: none;
    background-color: #f6f6f6;
    min-width: 131px;
    text-align: center;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-nav__group h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f6f6f6;
}

.footer-nav__group ul {
    list-style: none;
}

.footer-nav__group li + li {
    margin-top: 15px;
}

.footer-nav__group a {
    font-size: 12px;
    color: #f6f6f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav__group a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-bottom__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.footer-bottom__legal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}

.footer-bottom__legal-list a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom__legal-list a:hover {
    color: #fff;
}

.footer-bottom__credits {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom__credits a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom__credits a:hover {
    color: #fff;
}

/* Product Detail Page */
.product-gallery {
    max-width: 552px;
    width: 100%;
    margin-right: auto;
}
.product-detail {
    padding: 180px 0 160px;
    background: #f7f3ee;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.product-gallery__main {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 16px;
    padding: 0;
    border: none;
    overflow: hidden;
    background: #fff;
    cursor: zoom-in;
    text-align: left;
}

.product-gallery__main-image {
    width: 100%;
    aspect-ratio: 43 / 26;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-gallery__main:hover .product-gallery__main-image {
    transform: scale(1.03);
}

.product-gallery__zoom-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    pointer-events: none;
}

.product-gallery__zoom-hint svg {
    width: 16px;
    height: 16px;
}

.product-gallery__main:hover .product-gallery__zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Product Lightbox */
.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.product-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 18, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.product-lightbox__shell {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    height: min(88vh, 900px);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 16px;
    transform: scale(0.96) translateY(12px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-lightbox__stage {
    position: relative;
    min-height: 0;
}

.product-lightbox.is-open .product-lightbox__shell {
    transform: scale(1) translateY(0);
}

.product-lightbox__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-lightbox__counter {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
}

.product-lightbox__close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    transform: scale(1.04);
}

.product-lightbox__close svg {
    width: 20px;
    height: 20px;
}

.product-lightbox__viewport {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: grab;
    touch-action: none;
}

.product-lightbox__viewport.is-dragging {
    cursor: grabbing;
}

.product-lightbox__image {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
}

.product-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}

.product-lightbox__nav--prev {
    left: 18px;
}

.product-lightbox__nav--next {
    right: 18px;
}

.product-lightbox__nav svg {
    width: 22px;
    height: 22px;
}

.product-lightbox__toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.product-lightbox__tool {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.product-lightbox__tool:hover {
    background: rgba(255, 255, 255, 0.12);
}

.product-lightbox__tool svg {
    width: 18px;
    height: 18px;
}

.product-lightbox__zoom-level {
    min-width: 52px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .product-lightbox {
        padding: 16px;
    }

    .product-lightbox__shell {
        height: 78vh;
    }
}

.product-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-gallery__thumb {
    width: 117px;
    height: 117px;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.product-gallery__thumb.is-active {
    border-color: #8e6e53;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    display: block;
    opacity: 0.23;
}
.product-gallery__thumb.is-active img {
    opacity: 1;
}

.product-info__category {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #8e6e53;
    margin-bottom: 9px;
    text-decoration: none;
    letter-spacing: 0.04em;
}

a.product-info__category:hover {
    text-decoration: underline;
}

.product-info__title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 6px;
    max-width: 520px;
}

.product-info__sku {
    font-size: 12px;
    color: #212529;
    margin-bottom: 34px;
}

.product-info__pricing {
    margin-bottom: 34px;
}

.product-info__price {
    font-size: 24px;
    font-weight: 600;
    color: #b45200;
    line-height: 29px;
    margin-bottom: 6px;
}

.product-info__installment {
    font-size: 10px;
    color: #212529;
}
.product-info__installment b {
    font-weight: 600;
}
.product-info__sizes {
    margin-bottom: 24px;
}

.product-info__sizes-label {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 14px;
}

.product-info__size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    min-width: 147px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 20.5px;
    font-family: inherit;
    color: #d3c7b6;
    background: transparent;
    border: 1px solid #d3c7b6;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.size-option.is-active {
    color: #8e6e53;
    border-color: #8e6e53;
    background: transparent;
}

.product-info__actions {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 28px;
}

.product-info__btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 49px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #1f2937;
    text-decoration: none;
    transition: background 0.2s ease;
    max-width: 484px;
}

.product-info__btn-primary:hover {
    background: #151b27;
}

.product-info__wishlist {
    width: 52px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #faf8f5;
    border: 1px solid #e5ddd4;
    color: #8e6e53;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.product-info__wishlist:hover {
    border-color: #8e6e53;
}

.product-info__wishlist svg {
    width: 22px;
    height: 22px;
}

.product-info__content {
    margin-bottom: 28px;
}

.product-info__content-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.product-info__content-text {
    font-size: 13px;
    line-height: 1.7;
    color: #8e6e53;
    max-width: 480px;
}

.product-info__module-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    max-width: 480px;
}

.product-info__module-list li {
    font-size: 13px;
    color: #8e6e53;
    line-height: 1.5;
}

.product-info__module-list a {
    color: #1f2937;
    font-weight: 500;
    text-decoration: none;
}

.product-info__module-list a:hover {
    color: #8e6e53;
    text-decoration: underline;
}

.product-info__module-list .text-muted {
    color: #9ca3af;
}

.product-info__features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 28px;
}

.product-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 90px;
}

.product-feature__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ede8e2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-feature__icon img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(14%) saturate(842%)
        hue-rotate(346deg) brightness(91%) contrast(88%);
}

.product-feature__icon i {
    font-size: 18px;
    color: #8e6e53;
}

.product-feature__label {
    font-size: 12px;
    color: #8e6e53;
    text-align: center;
}

.product-info__benefits {
    list-style: none;
    padding-top: 24px;
    border-top: 1px solid #e5ddd4;
}

.product-info__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #8e6e53;
}

.product-info__benefit + .product-info__benefit {
    margin-top: 14px;
}

.product-info__benefit img {
    flex-shrink: 0;
}

/* Product Tabs Section */
.product-tabs {
    padding: 0 0 200px;
    background: #f7f3ee;
}

.product-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    border-bottom: 1px solid #d3c7b6;
    margin-bottom: 32px;
}

.product-tabs__btn {
    position: relative;
    padding: 0 0 14px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #b5a08d;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.product-tabs__btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.product-tabs__btn.is-active {
    color: #1f2937;
    font-weight: 600;
}

.product-tabs__btn.is-active::after {
    background: #8e6e53;
}

.product-tabs__btn:hover {
    color: #1f2937;
}

.product-tabs__panel {
    display: none;
    max-width: 720px;
}

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

.product-tabs__panel p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.28px;
    color: #8e6e53;
}

.product-tabs__panel p + p {
    margin-top: 20px;
}

/* Related Products Section */
.related-products {
    padding: 0 0 100px;
    background: #f7f3ee;
}

.related-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.related-products__title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    color: #1f2937;
    line-height: 53px;
}

.related-products__link {
    font-size: 14px;
    font-weight: 500;
    color: #8e6e53;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.related-products__link:hover {
    opacity: 0.7;
}

.related-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

.related-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-card__image-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    background: #fff;
}

.related-card__image {
    width: 100%;
    aspect-ratio: 43 / 26;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card__image {
    transform: scale(1.03);
}

.related-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    border-radius: 4px;
}

.related-card__badge--new {
    background: #8fa89a;
}

.related-card__badge--recommended {
    background: #b8956f;
}

.related-card__category {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #8e6e53;
    margin-bottom: 8px;
}

.related-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 12px;
}

.related-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.related-card__price {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
}

.related-card__colors {
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-card__color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.container-2 {
    max-width: 1320px;
}

/* Category Page */
.category-page {
    padding: 120px 0 80px;
    background: #f6f6f6;
}

.category-page__header {
    margin-bottom: 36px;
}

.category-page__brand {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #8e6e53;
    margin-bottom: 10px;
}

.category-page__title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
}

.category-page__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    color: #6b7280;
}

.category-page__breadcrumb a {
    color: #8e6e53;
    text-decoration: none;
}

.category-page__breadcrumb a:hover {
    text-decoration: underline;
}

.category-page__desc {
    margin-top: 12px;
    max-width: 640px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.category-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 18px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #8e6e53;
    background: transparent;
    border: 1px solid #d3c7b6;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    min-width: 144px;
    justify-content: center;
    text-align: center;
}

.category-filter svg {
    width: 10px;
    height: 7px;
}

.category-filter.is-active {
    color: #fff;
    background: #1f2937;
    border-color: #1f2937;
}

.category-filter:not(.is-active):hover {
    border-color: #8e6e53;
    color: #1f2937;
}

.category-sort-wrap {
    margin-left: auto;
}

.category-sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1f2937;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.category-sort strong {
    font-weight: 600;
}

.category-sort svg {
    width: 10px;
    height: 7px;
}

.category-sort__select {
    border: none;
    background: transparent;
    font: inherit;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    padding: 0;
}

.category-empty {
    padding: 72px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #ebe4da;
}

.category-empty p {
    margin: 0 0 16px;
    font-size: 15px;
    color: #6b7280;
}

.category-empty__link {
    color: #8e6e53;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.category-empty__link:hover {
    text-decoration: underline;
}

body.header-solid header,
body.page-category header,
body.page-product header {
    background-color: #000;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 77px;
}

.category-grid--wide {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 152px;
}

.category-grid--landscape {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
}

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

.catalog-card__media {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    background: #fff;
}

.catalog-card__image-link {
    display: block;
}

.catalog-card__image {
    width: 100%;
    aspect-ratio: 43 / 26;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-card--wide .catalog-card__image {
    aspect-ratio: 7 / 4;
}

.catalog-card--wide .catalog-card__body {
    align-items: flex-end;
}

.catalog-card--wide .catalog-card__colors {
    padding-top: 0;
    padding-bottom: 2px;
}

.catalog-card--landscape .catalog-card__image {
    aspect-ratio: 43 / 26;
}

.catalog-card--landscape .catalog-card__body {
    align-items: flex-end;
}

.catalog-card--landscape .catalog-card__colors {
    padding-top: 0;
    padding-bottom: 2px;
}

.catalog-card:hover .catalog-card__image {
    transform: scale(1.04);
}

.catalog-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    border-radius: 0px;
    height: 27px;
    width: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-card__badge--new {
    background: #8fa89a;
}

.catalog-card__badge--recommended {
    background: #b8956f;
}

.catalog-card__wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.catalog-card__wishlist:hover,
.catalog-card__wishlist.is-active {
    color: #b45200;
    transform: scale(1.05);
}

.catalog-card__wishlist.is-active svg path {
    fill: currentColor;
}

.catalog-card__wishlist svg {
    width: 18px;
    height: 18px;
}

.catalog-card__cart {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #fff;
    background: #1f2937;
    border: none;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-card:hover .catalog-card__cart {
    transform: translateY(0);
}

.catalog-card__cart svg {
    width: 18px;
    height: 18px;
}

.catalog-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.catalog-card__name {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 6px;
}

.catalog-card__name a {
    color: inherit;
    text-decoration: none;
}

.catalog-card__name a:hover {
    color: #8e6e53;
}

.catalog-card__price {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.catalog-card__colors {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-top: 2px;
}

.catalog-card__color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Mobile bottom navigation — desktop gizli */
.mobile-bottom-nav,
.mobile-category-sheet {
    display: none;
}
