﻿:root {
    --typeHeaderPrimary: Outfit;
    --typeHeaderFallback: sans-serif;
    --typeHeaderWeight: 400;
    --typeHeaderLineHeight: 1.4;
    --typeHeaderSpacing: 0.2em;

    --typeBasePrimary: Lato;
    --typeBaseFallback: sans-serif;
    --typeBaseSize: 16px;
    --typeBaseWeight: 400;
    --typeBaseLineHeight: 1.5;

    --colorBody: #ffffff;
    --colorTextBody: #1f1f1f;
    --colorNavText: #111111;
    --colorAnnouncement: #000000;
    --colorAnnouncementText: #ffffff;
    --colorBtnPrimary: #bf9553;
    --colorBtnPrimaryText: #ffffff;
    --colorAccentSoft: #e5a493;
    --colorLink: #e9b8ab;
    --colorLinkHover: #d79f91;
    --shadowButtonSoft: 0 10px 34px 4px rgba(17, 17, 17, 0.06);
    --shadowProductCardSoft: 0 4px 18px 8px rgba(17, 17, 17, 0.05);
    --shadowProductCardSoftHover: 0 6px 5px 5px rgba(17, 17, 17, 0.025);
    --colorBorder: #e8e8e1;

    --menuUnderlineHeight: 2px;
    --menuUnderlineOffset: 3px;
    --menuUnderlineInset: 20px;
    --menuUnderlineDuration: 0.24s;

    --container: 1440px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--colorBody);
    color: var(--colorTextBody);
}

body {
    font-family: var(--typeBasePrimary), var(--typeBaseFallback);
    font-size: var(--typeBaseSize);
    line-height: var(--typeBaseLineHeight);
}

a {
    color: var(--colorLink);
    text-decoration: none;
    text-decoration-color: currentColor;
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover,
a:focus-visible,
a:active {
    color: var(--colorLinkHover);
    text-decoration: underline;
}

.site-nav__list>li>a,
.sc-mega-links a,
.site-nav-mobile__list a,
.sc-mobile-mega-links a,
.site-footer__widget a {
    color: inherit;
    text-decoration: none;
}

.site-nav__list>li>a:hover,
.site-nav__list>li>a:focus-visible,
.site-nav__list>li>a:active,
.sc-mega-links a:hover,
.sc-mega-links a:focus-visible,
.sc-mega-links a:active,
.site-nav-mobile__list a:hover,
.site-nav-mobile__list a:focus-visible,
.site-nav-mobile__list a:active,
.sc-mobile-mega-links a:hover,
.sc-mobile-mega-links a:focus-visible,
.sc-mobile-mega-links a:active,
.site-footer__widget a:hover,
.site-footer__widget a:focus-visible,
.site-footer__widget a:active {
    color: inherit;
    text-decoration: none;
}



.header-icon,
.sc-drawer__close,
.sc-mobile-menu__close,
.sc-cart-drawer__qty-btn {
    box-shadow: none;
}

.sc-container {
    width: calc(100% - 2rem);
    max-width: none;
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Utilities: Tracking iframe */
.sc-gtm-noscript-iframe {
    display: none;
    visibility: hidden;
}

.announcement-bar {
    background: var(--colorAnnouncement);
    color: var(--colorAnnouncementText);
}

.announcement-bar .slideshow-wrapper {
    position: relative;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-announcement-swiper {
    width: 100%;
}

.announcement-slider__slide {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.announcement-link-text {
    text-decoration: underline;
}

.site-header {
    position: relative;
    z-index: 99;
    background: #ffffff;
    border-bottom: 1px solid #efefef;
}

.site-header__inner {
    min-height: 96px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 1.2rem;
}

.site-header__logo {
    justify-self: start;
}

.site-header__logo a,
.site-header__logo .custom-logo-link {
    color: var(--colorNavText);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 2.4vw, 46px);
    letter-spacing: 0.02em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.site-header__logo img {
    max-height: 50px;
    width: auto;
}

.home-collections {
    margin-top: 2rem;
}

.site-nav {
    justify-self: center;
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.site-nav__list>li>a {
    display: inline-block;
    padding: 12px 22px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    line-height: var(--typeHeaderLineHeight);
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 16px;
    color: var(--colorNavText);
    position: relative;
}

.site-nav__list>li>a::after {
    content: "";
    position: absolute;
    left: 50%;
    width: calc(100% - (2 * var(--menuUnderlineInset)));
    max-width: calc(100% - (2 * var(--menuUnderlineInset)));
    bottom: var(--menuUnderlineOffset);
    height: var(--menuUnderlineHeight);
    background: #151515;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform var(--menuUnderlineDuration) ease;
}

.site-nav__list>li.current-menu-item>a::after,
.site-nav__list>li>a:hover::after,
.site-nav__list>li>a:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
}

.site-header__icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.45rem;
    justify-self: end;
    min-width: 180px;
    margin-right: 35%;
}

.site-header__icons i.bi-search,
.site-header__icons i.bi-bag {
    font-size: 1.6rem;
}

.site-header__icons i.bi-stars {
    font-size: 1.35rem;
}

.header-icon {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.05rem;
    color: #161616;
    line-height: 1;
}

button.header-icon {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-icon-menu {
    display: none;
}

.header-icon-menu-top {
    display: none;
}

.header-icon-favorites-mobile {
    display: inline-flex;
    text-decoration: none;
    color: #161616;
}

.header-icon-favorites-mobile:hover,
.header-icon-favorites-mobile:focus-visible {
    color: #000;
    text-decoration: none;
}

.header-icon-favorites-mobile .sc-product-card__favorite-icon {
    font-size: 2.6rem;
    line-height: 1;
}

.header-icon-cart {
    padding-right: 0;
}

.header-cart-count {
    position: absolute;
    top: 1px;
    right: 0;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5a493;
    color: #fff;
}

body.sc-drawer-open {
    overflow: hidden;
}

.sc-drawer-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 85;
}

.sc-drawer-backdrop[hidden] {
    display: none !important;
}

.sc-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(460px, 100vw);
    height: 100dvh;
    z-index: 90;
    transform: translateX(102%);
    transition: transform 0.28s ease;
    pointer-events: none;
}

.sc-drawer--mobile-menu {
    left: 0;
    right: auto;
    width: 100vw;
    transform: translateX(-102%);
}

.sc-drawer--mobile-menu .sc-drawer__panel {
    border-left: 0;
    border-right: 1px solid #e3e2df;
}

.sc-drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.sc-drawer[hidden] {
    display: block !important;
    visibility: hidden;
}

.sc-drawer.is-open[hidden] {
    visibility: visible;
}

.sc-drawer__panel {
    height: 100%;
    background: #fff;
    border-left: 1px solid #e3e2df;
    display: flex;
    flex-direction: column;
}

.sc-drawer__head {
    min-height: 78px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e3e2df;
}

.sc-drawer__head h2 {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 26px;
    font-weight: 500;
}

.sc-drawer__close {
    border: 0;
    background: transparent;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    color: #222;
}

.sc-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.2rem;
}

.sc-drawer__foot {
    border-top: 1px solid #e3e2df;
    padding: 0.9rem 1.2rem 1.2rem;
    background: #fff;
}

.sc-cart-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.sc-cart-drawer__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.75rem;
    align-items: start;
}

.sc-cart-drawer__thumb img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    background: #fff;
}

.sc-cart-drawer__name {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    color: #1b1b1b;
}

.sc-cart-drawer__meta,
.sc-cart-drawer__meta p,
.sc-cart-drawer__meta dl,
.sc-cart-drawer__meta dd {
    margin: 0;
    font-size: 12px;
    color: #4a4a4a;
}

.sc-cart-drawer__controls {
    margin-top: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.sc-cart-drawer__qty {
    min-height: 30px;
    border: 1px solid #d9d9d9;
    background: #f8f7f4;
    display: inline-flex;
    align-items: center;
}

.sc-cart-drawer__qty-btn {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    color: #333;
    cursor: pointer;
}

.sc-cart-drawer__qty-value {
    min-width: 24px;
    text-align: center;
    font-size: 14px;
}

.sc-cart-drawer__line-price {
    font-size: 15px;
    white-space: nowrap;
}

.sc-cart-drawer__remove-btn {
    border: 0;
    background: transparent;
    color: #8f6157;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
}

.sc-cart-drawer__remove-btn:hover,
.sc-cart-drawer__remove-btn:focus-visible {
    color: #5f3d35;
}

.sc-cart-drawer__subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
}

.sc-cart-drawer__subtotal-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
}

.sc-cart-drawer__subtotal-value {
    font-size: 22px;
}

.sc-cart-drawer__actions {
    display: grid;
    gap: 0.55rem;
}

.sc-drawer-btn {
    min-height: 48px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 13px;
    transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.sc-drawer-btn:hover,
.sc-drawer-btn:focus-visible {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.sc-drawer-btn--primary {
    background: #e9b8ab;
    border-color: #e9b8ab;
}

.sc-drawer-btn--primary:hover,
.sc-drawer-btn--primary:focus-visible {
    background: #d79f91;
    border-color: #d79f91;
    color: #111;
}

.sc-cart-drawer__empty {
    margin: 0;
    padding: 1rem 0;
    color: #444;
}

.sc-account-drawer__welcome {
    margin: 0 0 0.85rem;
    font-size: 16px;
    font-weight: 600;
}

.sc-account-drawer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.sc-account-drawer__nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    padding: 0 0.85rem;
    transition: background-color 0.24s ease, border-color 0.24s ease;
}

.sc-account-drawer__nav a:hover,
.sc-account-drawer__nav a:focus-visible {
    background: #fff;
    border-color: #c3c3c3;
}

.sc-account-drawer__login .login-username,
.sc-account-drawer__login .login-password,
.sc-account-drawer__login .login-remember,
.sc-account-drawer__login .login-submit {
    margin: 0 0 0.75rem;
}

.sc-account-drawer__login label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.sc-account-drawer__nav li a {
    color: #000;
    transition: all 0.24s ease;
}

.sc-account-drawer__nav li a:hover,
.sc-account-drawer__nav li a:focus-visible {
    background: #000;
    border-color: #000;
    color: #fff;
    text-decoration: none;
}

.sc-account-drawer__login input[type="text"],
.sc-account-drawer__login input[type="password"] {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    padding: 0 0.7rem;
    background: #fff;
}

.sc-account-drawer__login input[type="checkbox"] {
    margin-right: 0.35rem;
}

.sc-account-drawer__login .button {
    min-height: 46px;
    width: 100%;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.sc-account-drawer__links {
    margin-top: 0.3rem;
    display: grid;
    gap: 0.6rem;
}

.sc-search-drawer__form {
    margin-bottom: 0.8rem;
}

.sc-search-drawer__input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    background: #fff;
    padding: 0 0.8rem;
    font-size: 15px;
}

.sc-search-drawer__input:focus-visible {
    outline: 2px solid rgba(233, 184, 171, 0.5);
    outline-offset: 1px;
}

.sc-search-drawer__status {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.sc-search-drawer__results {
    margin-top: 0.8rem;
}

.sc-search-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.sc-search-drawer__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.65rem;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    background: #fff;
    padding: 0.45rem;
    transition: border-color 0.24s ease, transform 0.24s ease;
}

.sc-search-drawer__item:hover,
.sc-search-drawer__item:focus-visible {
    border-color: #cacaca;
    transform: translateY(-1px);
}

.sc-search-drawer__thumb img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.sc-search-drawer__text {
    display: grid;
    gap: 0.25rem;
}

.sc-search-drawer__name {
    font-size: 13px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 500;
}

.sc-search-drawer__price {
    font-size: 12px;
    color: #d6907f;
}

.sc-search-drawer__price .amount {
    color: inherit;
}

.sc-drawer.is-updating .sc-search-drawer__results {
    opacity: 0.5;
}

.sc-mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-top: 1px solid var(--colorBorder);
    border-bottom: 1px solid var(--colorBorder);
    height: 100vh;
    overflow-y: auto;
    background: #f1f1f1;
    box-shadow: 0 18px 25px rgba(0, 0, 0, 0.08);
    z-index: 39;
}

.sc-mega-panel[hidden] {
    display: none !important;
}

.sc-mega-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2.2rem;
    padding: 1.8rem 0 2rem;
    align-content: start;
    min-height: 100%;
}

.sc-mega-col {
    text-align: center;
}

.sc-mega-col h4 {
    margin: 0 0 0.9rem;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: #cf8e81;
    font-weight: 600;
}

.sc-mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    justify-items: center;
}

.sc-mega-links a {
    display: inline-block;
    position: relative;
    padding: 0 var(--menuUnderlineInset) 0.34rem;
    font-size: 17px;
    line-height: 1.18;
    color: #202020;
}

.sc-mega-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    width: calc(100% - (2 * var(--menuUnderlineInset)));
    max-width: calc(100% - (2 * var(--menuUnderlineInset)));
    bottom: 0;
    height: var(--menuUnderlineHeight);
    background: #151515;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform var(--menuUnderlineDuration) ease;
}

.sc-mega-links a:hover::after,
.sc-mega-links a:focus-visible::after,
.sc-mega-links .current-menu-item>a::after,
.sc-mega-links .current-menu-ancestor>a::after {
    transform: translateX(-50%) scaleX(1);
}

.sc-mobile-menu {
    z-index: 90;
}

.sc-mobile-menu__inner {
    height: 100%;
    overflow-y: auto;
    padding-block: 1.1rem 1.6rem;
}

.sc-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}

.sc-mobile-menu__head strong {
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.sc-mobile-menu__close {
    font-size: 1.2rem;
}

.site-nav-mobile__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.1rem;
}

.site-nav-mobile__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 14px;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    border-bottom: 1px solid #ececec;
}

.site-nav-mobile__list a[data-mega-trigger]::after {
    content: "+";
    font-size: 16px;
    line-height: 1;
}

.site-nav-mobile__list a[data-mega-trigger][aria-expanded="true"]::after {
    content: "-";
}

.sc-mobile-mega-wrap {
    margin-top: 1rem;
}

.sc-mobile-mega-panel {
    border-top: 1px solid #e2e2e2;
    padding-top: 0.85rem;
}

.sc-mobile-mega-panel[hidden] {
    display: none !important;
}

.sc-mobile-mega-panel h3 {
    margin: 0 0 0.8rem;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: #ce9287;
}

.sc-mobile-mega-grid {
    display: grid;
    gap: 0.75rem;
}

.sc-mobile-mega-grid .sc-mega-col {
    border-bottom: 1px solid #ececec;
    padding-bottom: 0.7rem;
}

.sc-mobile-mega-grid .sc-mega-col h4 {
    margin-bottom: 0.45rem;
    font-size: 12px;
}

.sc-mobile-mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.25rem;
}

.sc-mobile-mega-links a {
    font-size: 20px;
    line-height: 1.2;
}

.hero-slider-section {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 0;
    background: #f8f5f1;
    overflow: visible;
}

.hero-slide__image-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.hero-slide img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-slide__fallback {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    background: linear-gradient(135deg, #f4ede3 0%, #ece5db 100%);
}

.hero-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 5;
    text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

.usp-ticker {
    --usp-ticker-item-gap: 3.2rem;
    overflow: hidden;
    background: var(--colorAccentSoft);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.usp-ticker__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    min-width: 100%;
    min-height: 56px;
    animation: scTicker var(--sc-usp-ticker-speed-desktop, 38s) linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.usp-ticker__group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.usp-ticker__item {
    flex: 0 0 auto;
    padding-inline-end: var(--usp-ticker-item-gap);
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.usp-ticker__item-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.usp-ticker__item i {
    font-size: 1.22rem;
}

/* Motion presets: USP ticker speeds (applied via body classes) */
body.sc-usp-speed-desktop-12 {
    --sc-usp-ticker-speed-desktop: 12s;
}

body.sc-usp-speed-desktop-16 {
    --sc-usp-ticker-speed-desktop: 16s;
}

body.sc-usp-speed-desktop-20 {
    --sc-usp-ticker-speed-desktop: 20s;
}

body.sc-usp-speed-desktop-24 {
    --sc-usp-ticker-speed-desktop: 24s;
}

body.sc-usp-speed-desktop-28 {
    --sc-usp-ticker-speed-desktop: 28s;
}

body.sc-usp-speed-desktop-32 {
    --sc-usp-ticker-speed-desktop: 32s;
}

body.sc-usp-speed-desktop-38 {
    --sc-usp-ticker-speed-desktop: 38s;
}

body.sc-usp-speed-desktop-44 {
    --sc-usp-ticker-speed-desktop: 44s;
}

body.sc-usp-speed-desktop-52 {
    --sc-usp-ticker-speed-desktop: 52s;
}

body.sc-usp-speed-desktop-64 {
    --sc-usp-ticker-speed-desktop: 64s;
}

body.sc-usp-speed-desktop-80 {
    --sc-usp-ticker-speed-desktop: 80s;
}

body.sc-usp-speed-desktop-100 {
    --sc-usp-ticker-speed-desktop: 100s;
}

body.sc-usp-speed-desktop-120 {
    --sc-usp-ticker-speed-desktop: 120s;
}

body.sc-usp-speed-desktop-150 {
    --sc-usp-ticker-speed-desktop: 150s;
}

body.sc-usp-speed-desktop-180 {
    --sc-usp-ticker-speed-desktop: 180s;
}

body.sc-usp-speed-mobile-10 {
    --sc-usp-ticker-speed-mobile: 10s;
}

body.sc-usp-speed-mobile-14 {
    --sc-usp-ticker-speed-mobile: 14s;
}

body.sc-usp-speed-mobile-18 {
    --sc-usp-ticker-speed-mobile: 18s;
}

body.sc-usp-speed-mobile-22 {
    --sc-usp-ticker-speed-mobile: 22s;
}

body.sc-usp-speed-mobile-26 {
    --sc-usp-ticker-speed-mobile: 26s;
}

body.sc-usp-speed-mobile-32 {
    --sc-usp-ticker-speed-mobile: 32s;
}

body.sc-usp-speed-mobile-40 {
    --sc-usp-ticker-speed-mobile: 40s;
}

body.sc-usp-speed-mobile-50 {
    --sc-usp-ticker-speed-mobile: 50s;
}

body.sc-usp-speed-mobile-64 {
    --sc-usp-ticker-speed-mobile: 64s;
}

body.sc-usp-speed-mobile-80 {
    --sc-usp-ticker-speed-mobile: 80s;
}

body.sc-usp-speed-mobile-100 {
    --sc-usp-ticker-speed-mobile: 100s;
}

body.sc-usp-speed-mobile-120 {
    --sc-usp-ticker-speed-mobile: 120s;
}

@keyframes scTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333333%);
    }
}

.sc-section {
    padding: 2.5rem 0;
}

.brands-section {
    padding-bottom: 1.35rem;
}

.sc-section__header {
    margin-bottom: 1.2rem;
}

.sc-section__header h2,
.taxonomy-shop-col h3 {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(28px, 2.3vw, 40px);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.brands-section .sc-section__header h2 {
    font-size: clamp(23px, 1.95vw, 32px);
    letter-spacing: 0.07em;
    font-weight: 500;
}

.sc-brand-swiper {
    position: relative;
}

.brand-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 320px;
    isolation: isolate;
}

.brand-card__media {
    height: 100%;
    overflow: hidden;
}

.brand-card img,
.brand-card__placeholder {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.brand-card__placeholder {
    background: linear-gradient(135deg, #e8d8c1 0%, #d6b38f 100%);
}

.brand-card__overlay {
    position: absolute;
    inset: 0;
    padding: 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 40%, rgba(0, 0, 0, 0.74) 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.brand-card__overlay h3 {
    margin: 0;
    font-size: clamp(18px, 1.05vw, 22px);
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0.02em;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.brand-card__overlay p {
    margin: 0.6rem 0 0;
    font-size: 12px;
    line-height: 1.4;
    max-width: 100%;
    opacity: 0;
    transform: translateY(16px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-card--has-desc:hover .brand-card__overlay h3,
.brand-card--has-desc:focus-within .brand-card__overlay h3 {
    transform: translateY(-20px);
}

.brand-card--has-desc:hover .brand-card__overlay p,
.brand-card--has-desc:focus-within .brand-card__overlay p {
    opacity: 1;
    transform: translateY(-16px);
}

.brand-card:hover img,
.brand-card:focus-within img {
    transform: scale(1.08);
}

.brand-swiper-nav {

    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.brand-swiper-nav:hover,
.brand-swiper-nav:focus-visible,
.brand-swiper-nav:active {
    background: #e9b8ab;
    color: #fff;
    transform: translateY(-1px);
}

.brand-swiper-nav--prev {
    right: 46px;
}

.brand-swiper-nav--next {
    right: 0;
}

.collections-showcase-section {
    padding-top: 0.7rem;
    padding-bottom: 1.75rem;
}

.collections-showcase__heading-wrap {
    margin: 0 0 1rem;
}

.collections-showcase__heading {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(30px, 2.35vw, 46px);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.05;
}

.collections-showcase__subheading {
    margin: 0.55rem 0 0;
    max-width: 760px;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.4;
    color: #2f2f2f;
}

.collections-showcase-swiper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.collection-showcase-card {
    position: relative;
    --sc-showcase-parallax-x: 0px;
    --sc-showcase-parallax-y: 0px;
    min-height: 350px;
    overflow: hidden;
}

.collection-showcase-card__link,
.collection-showcase-card__media {
    display: block;
    height: 100%;
}

.collection-showcase-card__media {
    transform: translate3d(var(--sc-showcase-parallax-x), var(--sc-showcase-parallax-y), 0);
    will-change: transform;
}

.collection-showcase-card img,
.collection-showcase-card__placeholder {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
}

.collection-showcase-card img {
    transform: scale(1.1);
}

.collection-showcase-card__placeholder {
    background: linear-gradient(140deg, #e2c4a2 0%, #c99b71 100%);
}

.collection-showcase-card__overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 36%, rgba(0, 0, 0, 0.78) 100%);
    overflow: hidden;
}

.collection-showcase-card__overlay h3 {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(26px, 1.9vw, 36px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: 0.01em;
    transform: translateY(6px);
    transition: transform 0.32s ease;
}

.collection-showcase-card__overlay p {
    margin: 0.85rem 0 0;
    font-size: clamp(15px, 0.95vw, 19px);
    line-height: 1.38;
    opacity: 0;
    transform: translateY(16px);
    transition: transform 0.32s ease, opacity 0.32s ease;
    min-height: 5rem;
}

.collection-showcase-card--has-desc:hover .collection-showcase-card__overlay h3,
.collection-showcase-card--has-desc:focus-within .collection-showcase-card__overlay h3 {
    transform: translateY(-18px);
}

.collection-showcase-card--has-desc:hover .collection-showcase-card__overlay p,
.collection-showcase-card--has-desc:focus-within .collection-showcase-card__overlay p {
    opacity: 1;
    transform: translateY(-12px);
}

.collection-showcase-card:hover img,
.collection-showcase-card:focus-within img {
    transform: scale(1.16);
}

@media (max-width: 1140px) {
    .collection-showcase-card {
        min-height: 330px;
    }

    .collection-showcase-card img,
    .collection-showcase-card__placeholder {
        height: 330px;
    }
}

@media (max-width: 768px) {
    .collections-showcase-section {
        padding-top: 0.4rem;
        padding-bottom: 1.2rem;
    }

    .collections-showcase__heading-wrap {
        text-align: center;
    }

    .collection-showcase-card {
        min-height: 300px;
        --sc-showcase-parallax-x: 0px;
        --sc-showcase-parallax-y: 0px;
    }

    .collection-showcase-card img,
    .collection-showcase-card__placeholder {
        height: 300px;
    }

    .collection-showcase-card img,
    .collection-showcase-card:hover img,
    .collection-showcase-card:focus-within img {
        animation: none;
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .collection-showcase-card {
        --sc-showcase-parallax-x: 0px;
        --sc-showcase-parallax-y: 0px;
    }

    .collection-showcase-card img,
    .collection-showcase-card:hover img,
    .collection-showcase-card:focus-within img {
        transition: none;
        animation: none;
        transform: scale(1.05);
    }
}

.latest-additions-section {
    padding: 2.15rem 0 2.4rem;
}

.latest-additions__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.4rem;
    margin-bottom: 1rem;
}

.latest-additions__intro h2 {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(29px, 2.2vw, 46px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #111;
}

.latest-additions__intro p {
    margin: 0.75rem 0 0;
    font-size: clamp(17px, 1.02vw, 30px);
    color: #111;
    line-height: 1.3;
}

.latest-additions__all {
    margin-top: 1.1rem;
}

.latest-additions__all:hover,
.latest-additions__all:focus-visible {
    text-decoration: none;
}

.latest-additions__nav {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 6.25rem;
}

.latest-additions-nav {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 1.02rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.latest-additions-nav:hover,
.latest-additions-nav:focus-visible,
.latest-additions-nav:active {
    background: #e9b8ab;
    color: #fff;
    transform: translateY(-1px);
}

.latest-additions-nav.swiper-button-disabled {
    opacity: 0.55;
    cursor: default;
    transform: none;
}

.latest-additions-swiper {
    overflow: hidden;
}

.home-collections {
    padding-top: 0.95rem;
}

.home-collections__header h2 {
    margin: 0;
    text-align: center;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(24px, 2.1vw, 34px);
    letter-spacing: 0.13em;
    font-weight: 500;
    text-transform: uppercase;
}

.home-collections__filters {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.home-collections__filter {
    min-height: 44px;
    padding: 0 1.05rem;
    border: 1px solid #111;
    border-radius: 6px;
    background: #fff;
    color: #161616;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(14px, 0.95vw, 16px);
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.home-collections__filter:hover,
.home-collections__filter:focus-visible {
    background: #000;
    color: #fff;
    border-color: #111;
    transform: translateY(-1px);
}

.home-collections__filter.is-active {
    background: var(--colorAccentSoft);
    border-color: var(--colorAccentSoft);
    color: #111;
}

.home-collections__stage {
    position: relative;
    margin-top: 1.15rem;
    padding-inline: 42px;
}

.home-collections__loader {
    position: absolute;
    inset: 0;
    z-index: 9;
    display: grid;
    place-items: center;
    background: rgba(242, 242, 242, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.home-collections.is-loading .home-collections__loader {
    opacity: 1;
    pointer-events: auto;
}

.home-collections.is-loading .sc-collection-products-swiper {
    opacity: 0.45;
}

.sc-wandering-cubes {
    position: relative;
    width: 48px;
    height: 48px;
}

.sc-wandering-cubes__cube {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    background: #e9b8ab;
    box-shadow: 0 4px 10px rgba(233, 184, 171, 0.45);
    animation: scWanderingCubes 1.8s infinite ease-in-out;
}

.sc-wandering-cubes__cube--2 {
    animation-delay: -0.9s;
}

.swiper-backface-hidden .swiper-slide {
    margin-top: 15px;
    margin-bottom: 15px;
}

.announcement-bar .swiper-backface-hidden .swiper-slide,
.announcement-bar .swiper-backface-hidden .swiper-slide {
    margin-top: 0;
    margin-bottom: 0;
}

.hero-slider-section .swiper-backface-hidden .swiper-slide {
    margin-top: 0;
    margin-bottom: 0;
}

@keyframes scWanderingCubes {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: translateX(33px) rotate(-90deg) scale(0.58);
    }

    50% {
        transform: translateX(33px) translateY(33px) rotate(-179deg);
    }

    50.1% {
        transform: translateX(33px) translateY(33px) rotate(-180deg);
    }

    75% {
        transform: translateX(0) translateY(33px) rotate(-270deg) scale(0.58);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.sc-collection-products-swiper {
    transition: opacity 0.24s ease;
}

.collection-products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 7;
    transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.collection-products-nav:hover,
.collection-products-nav:focus-visible,
.collection-products-nav:active {
    background: #e9b8ab;
    color: #fff;
    transform: translateY(-50%) scale(1.03);
}

.collection-products-nav--prev {
    left: 8px;
}

.collection-products-nav--next {
    right: 8px;
}

.home-collections__footer {
    margin-top: 1.15rem;
    display: flex;
    justify-content: center;
}

.home-collections__more,
.latest-additions__all {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.65rem;
    border: 2px solid #111;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(15px, 0.95vw, 18px);
    transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.home-collections__more:hover,
.home-collections__more:focus-visible,
.latest-additions__all:hover,
.latest-additions__all:focus-visible {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

.sc-launch-banner-section {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 0;
}

.sc-launch-banner {
    position: relative;
    overflow: hidden;
    border-top: 10px solid #000;
    border-bottom: 10px solid #000;
}

.sc-launch-banner__media {
    display: block;
}

.sc-launch-banner__image {
    width: 100%;
    height: auto;
    display: block;
}

.sc-launch-banner__overlay {
    position: absolute;
    left: clamp(14px, 2vw, 20px);
    bottom: clamp(14px, 2.2vw, 34px);
    z-index: 3;
    transform: translate(130px, -30px);
}

.sc-launch-banner__countdown {
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: clamp(0.25rem, 0.6vw, 0.6rem);
    flex-wrap: wrap;
    max-width: 100%;
    color: #111;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(1.1rem, 3.8vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
    transform-origin: left center;
    animation: scLaunchCountdownPulse 1.9s ease-in-out infinite;
}

.sc-launch-banner__countdown-label {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sc-launch-banner__countdown-value {
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

.sc-launch-banner__cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.65rem;
    border: 2px solid #111;
    border-radius: 8px;
    background: transparent;
    color: #111;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(15px, 0.95vw, 18px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.sc-launch-banner__cta:hover,
.sc-launch-banner__cta:focus-visible {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.sc-launch-banner__countdown[hidden],
.sc-launch-banner__cta[hidden] {
    display: none !important;
}

@keyframes scLaunchCountdownPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.86;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sc-launch-banner__countdown {
        animation: none;
    }
}

.home-collections__empty {
    min-height: 220px;
    display: grid;
    place-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
    color: #333;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
}














a.added_to_cart.wc-forward {
    display: none !important;
}







.taxonomy-shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.taxonomy-shop-col {
    padding: 1rem;
    border: 1px solid var(--colorBorder);
    border-radius: 14px;
    background: #fbfbfb;
}

.term-chip-swiper {
    margin-top: 0.8rem;
}

.term-chip-slide {
    width: auto;
}

.term-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid #d6d6d0;
    background: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.footer-newsletter {
    background: #f2f2f2;
    padding: clamp(2.6rem, 4.4vw, 4.1rem) 0 clamp(2.2rem, 4vw, 3.4rem);
}

.footer-newsletter__inner {
    text-align: center;
}

.footer-newsletter__inner h2 {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(24px, 2.3vw, 42px);
    font-weight: 400;
    letter-spacing: 0.36em;
    line-height: 1.25;
}

.footer-newsletter__inner p {
    margin: clamp(1rem, 1.7vw, 1.7rem) auto 0;
    max-width: 900px;
    font-size: clamp(16px, 1.25vw, 26px);
    line-height: 1.35;
}

.footer-newsletter__form {
    margin: clamp(1.3rem, 2.1vw, 2rem) auto 0;
    max-width: 680px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
}

.footer-newsletter__form input,
.footer-newsletter__form button {
    min-height: 56px;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 18px;
}

.footer-newsletter__form input {
    padding: 0 1rem;
    background: #f5f5f5;
    color: #0f2034;
    border-right: 0;
}

.footer-newsletter__form input::placeholder {
    color: #1a2a3c;
    opacity: 0.9;
}

.footer-newsletter__form button {
    padding: 0 1.2rem;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    background: #e9b8ab;
    color: #0f2034;
    border-color: #e9b8ab;
    cursor: pointer;
}

.footer-newsletter__form button:hover,
.footer-newsletter__form button:focus-visible {
    background: #e2a896;
    border-color: #e2a896;
}

.site-footer {
    background: #f2f2f2;
    padding: 0;
}

.footer-module {
    border-top: 1px solid #ddd;
}

.site-footer-main-row {
    padding: 2rem 0 2.25rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2.4rem;
    align-items: start;
}

.site-footer__col {
    min-height: 220px;
}

.site-footer__logo-col {
    display: flex;
    align-items: stretch;
}

.footer-quick-contact {
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: grid;
    gap: 0.72rem;
    text-align: center;
    box-shadow: none;
}

.footer-quick-contact__eyebrow {
    margin: 0 0 0;
    font-size: 13px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    color: #cf8e81;
    font-weight: 600;
}

.footer-quick-contact__title {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(35px, 2.35vw, 44px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: #171717;
}

.footer-quick-contact__teaser {
    margin: 0;
    font-size: 15px;
    line-height: 1.42;
    color: #2f2f2f;
    max-width: 30ch;
}

.footer-quick-contact__address {
    margin: 0;
    font-style: normal;
    display: grid;
    gap: 0.18rem;
    font-size: 16px;
    line-height: 1;
    color: #343434;
    padding-top: 0.12rem;
}

.footer-quick-contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    text-align: center;
}

.footer-quick-contact__list li {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    /* Wyśrodkowanie w poziomie */
    align-items: center;
}

.footer-quick-contact__label {
    color: #b37f73;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
}

.footer-quick-contact__list a {
    color: #111;
    font-family: var(--typeBodyPrimary), var(--typeBodyFallback);
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition: color 0.22s ease, border-color 0.22s ease;
}

.footer-quick-contact__list a:hover,
.footer-quick-contact__list a:focus-visible {
    color: #a76f62;
    border-color: currentColor;
}

.site-footer__brand-mark {
    width: auto;
    height: auto;
    margin-top: 12px;
    display: inline-block;
}

.site-footer__logo-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.site-footer__logo-wrap .custom-logo-link,
.site-footer__logo-wrap .site-footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer__logo-wrap img {
    max-height: 90px;
    width: auto;
}

.site-footer__brand {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 2.6vw, 46px);
    letter-spacing: 0.02em;
    color: var(--colorNavText);
}

.site-footer__widget {
    text-align: center;
}

.site-footer__widget .widget {
    margin: 0;
}

.site-footer__widget .widget-title,
.site-footer__widget .wp-block-heading {
    margin: 0 0 1rem;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: #cf8e81;
    font-weight: 600;
}

.site-footer__widget ul,
.site-footer__widget ol,
.site-footer__widget .menu,
.site-footer__widget .wp-block-navigation__container {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    justify-items: center;
}

.site-footer__widget li,
.site-footer__widget .wp-block-navigation-item {
    margin: 0;
}

.site-footer__widget a {
    display: inline-block;
    position: relative;
    padding: 0 var(--menuUnderlineInset) 0.32rem;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #202020;
}

.site-footer__widget a::after {
    content: "";
    position: absolute;
    left: 50%;
    width: calc(100% - (2 * var(--menuUnderlineInset)));
    max-width: calc(100% - (2 * var(--menuUnderlineInset)));
    bottom: var(--menuUnderlineOffset);
    height: var(--menuUnderlineHeight);
    background: #151515;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform var(--menuUnderlineDuration) ease;
}

.site-footer__widget a:hover::after,
.site-footer__widget a:focus-visible::after,
.site-footer__widget .current-menu-item>a::after,
.site-footer__widget .current-menu-ancestor>a::after {
    transform: translateX(-50%) scaleX(1);
}

.site-footer-bottom-row {
    padding: 1.25rem 0 1.8rem;
}

.footer-bottom__inner {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-social__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-social__list a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.24s ease;
}

.footer-social__list i {
    font-size: 2rem;
    color: #1c2530;
    transition: color 0.24s ease, transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.footer-social__list a:hover,
.footer-social__list a:focus-visible {
    transform: translateY(-1px);
    text-decoration: none;
}

.footer-social__list a:hover i,
.footer-social__list a:focus-visible i {
    color: #efd4cc;
    transform: translateY(-2px) scale(1.04);
}

.footer-social__list img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-social__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
}

.footer-copy-centered {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2a2a2a;
}

.footer-payment-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-payment-wrap .widget {
    margin: 0;
}

.footer-payment-wrap img {
    display: block;
    width: auto;
    height: auto;
    margin-inline: auto;
    max-height: 60px;
}

.announcement-bar--footer .announcement-slider__slide {
    letter-spacing: 0.09em;
}

.footer-nav__list {
    list-style: none;
    margin: 0 0 0.8rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__copy {
    margin: 0;
    opacity: 0.8;
}



.sc-section .swiper-wrapper {
    padding: 0 0 2rem 0;
}

.sc-contact-page {
    padding-top: 2rem;
}

.sc-contact {
    display: grid;
    gap: 1.5rem;
}

.sc-contact>h1 {
    margin: 0;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(32px, 2.6vw, 48px);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sc-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 4fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: start;
}

.sc-contact-company,
.sc-contact-form-wrap {
    border: 1px solid var(--colorBorder);
    background: #fff;
    padding: clamp(1rem, 2vw, 1.9rem);
}

.sc-contact-company h2,
.sc-contact-form-wrap h2 {
    margin: 0 0 1rem;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: clamp(18px, 1.45vw, 24px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
}

.sc-contact-company__name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.sc-contact-company__line,
.sc-contact-company__block p {
    margin: 0;
    color: #2a2a2a;
}

.sc-contact-company__line+.sc-contact-company__line {
    margin-top: 0.2rem;
}

.sc-contact-company__block {
    margin-top: 1rem;
    display: grid;
    gap: 0.42rem;
}

.sc-contact-company__block strong {
    font-weight: 700;
}

.sc-contact-company a {
    color: inherit;
    text-decoration: none;
}

.sc-contact-company a:hover,
.sc-contact-company a:focus-visible {
    text-decoration: underline;
}

.sc-contact-notice {
    margin: 0 0 1rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid #d6d6d6;
    font-size: 14px;
}

.sc-contact-notice--success {
    border-color: #bfd7bc;
    background: #f4faf2;
}

.sc-contact-notice--error {
    border-color: #e2c6c6;
    background: #fff7f7;
}

.sc-contact-notice ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.22rem;
}

.sc-contact-form {
    display: grid;
    gap: 1rem;
}

.sc-contact-form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.sc-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 1rem;
}

.sc-contact-form__field {
    margin: 0;
    display: grid;
    gap: 0.34rem;
}

.sc-contact-form__field--full {
    grid-column: 1 / -1;
}

.sc-contact-form label {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.sc-contact-form input[type="text"],
.sc-contact-form input[type="email"],
.sc-contact-form input[type="file"],
.sc-contact-form select,
.sc-contact-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d7d7d7;
    background: #fff;
    color: #1b1b1b;
    padding: 0 0.72rem;
    font-size: 15px;
    font-family: var(--typeBasePrimary), var(--typeBaseFallback);
}

.sc-contact-form input[type="file"] {
    padding: 0.52rem 0.6rem;
    min-height: 44px;
}

.sc-contact-form textarea {
    min-height: 170px;
    resize: vertical;
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
}

.sc-contact-form input:focus-visible,
.sc-contact-form select:focus-visible,
.sc-contact-form textarea:focus-visible {
    outline: 2px solid rgba(233, 184, 171, 0.55);
    outline-offset: 0;
    border-color: #d8ab9f;
}

.sc-contact-form__consent {
    margin: 0;
}

.sc-contact-form__consent label {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.6rem;
    align-items: start;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: none;
    line-height: 1.55;
}

.sc-contact-form__consent input {
    margin-top: 0.18rem;
}

.sc-contact-form__submit {
    min-height: 50px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    padding: 0 1.5rem;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    text-transform: uppercase;
    letter-spacing: 0.21em;
    font-size: 13px;
    cursor: pointer;
    justify-self: start;
    transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.sc-contact-form__submit:hover,
.sc-contact-form__submit:focus-visible {
    background: #e9b8ab;
    border-color: #e9b8ab;
    color: #111;
    transform: translateY(-1px);
}

.sc-contact-page__content {
    margin-top: 0.5rem;
}

@media (max-width: 1500px) {
    .sc-launch-banner__overlay {
        transform: translate(102px, -16px);
    }
}

@media (max-width: 1100px) {
    .sc-drawer {
        width: min(420px, 100vw);
    }

    .sc-drawer__head h2 {
        font-size: 34px;
    }

    .sc-cart-drawer__item {
        grid-template-columns: 72px 1fr;
    }

    .sc-cart-drawer__thumb img {
        width: 72px;
        height: 72px;
    }

    .site-header__inner {
        min-height: 80px;
        grid-template-columns: 1fr auto 1fr;
        gap: 0.8rem;
    }

    .site-header__logo {
        justify-self: center;
    }

    .site-header__logo img {
        max-height: 40px;
    }

    .site-nav {
        display: none;
    }

    .site-header__icons {
        gap: 0.75rem;
        min-width: auto;
    }

    .header-icon {
        width: 36px;
        height: 36px;
        font-size: 1.55rem;
    }

    .header-icon .bi-person {
        font-size: 2rem;
    }

    .header-icon .sc-product-card__favorite-icon {
        font-size: 2rem;
    }

    .header-icon-menu {
        display: inline-flex;
        order: -1;
    }

    .header-icon-menu-top {
        display: none;
    }

    .sc-mega-panels {
        display: none;
    }

    .sc-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sc-brand-swiper {
        padding-top: 42px;
    }
















    .brand-swiper-nav {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .brand-swiper-nav--prev {
        right: 42px;
    }

    .brands-section .sc-section__header h2 {
        letter-spacing: 0.06em;
        font-size: clamp(20px, 2.9vw, 28px);
    }

    .latest-additions__intro h2 {
        font-size: clamp(24px, 4vw, 34px);
    }

    .latest-additions__intro p {
        font-size: clamp(14px, 2vw, 20px);
    }

    .latest-additions__nav {
        margin-top: 6.65rem;
    }

    .latest-additions-nav,
    .brand-swiper-nav,
    .collection-products-nav {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .home-collections__header h2 {
        font-size: clamp(21px, 3vw, 28px);
        letter-spacing: 0.07em;
    }

    .home-collections__filter {
        min-height: 40px;
        padding-inline: 0.9rem;
        font-size: 14px;
    }

    .home-collections__stage {
        padding-inline: 30px;
    }

    .sc-launch-banner__overlay {
        transform: translate(72px, -8px);
    }

    .collection-products-nav--prev {
        left: 4px;
    }

    .collection-products-nav--next {
        right: 4px;
    }


    .brand-card,
    .brand-card img,
    .brand-card__placeholder {
        min-height: 300px;
        height: 300px;
    }

    .brand-card__overlay h3 {
        font-size: clamp(17px, 2.05vw, 21px);
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.8rem;
    }

    .site-footer__col {
        min-height: 160px;
    }

    .site-footer__logo-col {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .footer-quick-contact {
        max-width: 620px;
        margin-inline: auto;
    }

    .site-footer__logo-wrap img {
        max-height: 78px;
    }

    .site-footer-main-row {
        padding: 1.6rem 0 1.8rem;
    }

    .sc-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }

    .sc-container {
        width: calc(100% - 1.2rem);
    }

    .sc-drawer {
        width: 100vw;
    }

    .sc-drawer--mobile-menu {
        width: 100vw;
    }

    .sc-drawer__head {
        min-height: 68px;
        padding-inline: 0.9rem;
    }

    .sc-drawer__head h2 {
        font-size: 28px;
    }

    .sc-drawer__body,
    .sc-drawer__foot {
        padding-inline: 0.9rem;
    }

    .sc-drawer-btn {
        min-height: 44px;
        letter-spacing: 0.12em;
        font-size: 12px;
    }

    .sc-account-drawer__login input[type="text"],
    .sc-account-drawer__login input[type="password"] {
        min-height: 42px;
    }

    .sc-search-drawer__input {
        min-height: 44px;
        font-size: 14px;
    }

    .sc-search-drawer__item {
        grid-template-columns: 56px 1fr;
        gap: 0.55rem;
        padding: 0.4rem;
    }

    .sc-search-drawer__thumb img {
        width: 56px;
        height: 56px;
    }

    .sc-search-drawer__name {
        font-size: 12px;
    }

    .sc-search-drawer__price {
        font-size: 11px;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .site-header__logo a,
    .site-header__logo .custom-logo-link {
        font-size: clamp(23px, 8vw, 34px);
    }

    .site-header__icons {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        min-width: 0;
        width: 100%;
        padding: 0.45rem 1rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 0.2rem;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-top: 1px solid #ece7e3;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    }

    .header-icon-menu-top {
        display: inline-flex;
        grid-column: 3;
        justify-self: end;
        order: 0;
    }

    .site-header__icons .header-icon-menu-bottom {
        display: none;
    }

    .header-icon-favorites-mobile {
        display: inline-flex;
    }

    .header-icon-favorites-mobile .sc-product-card__favorite-icon {
        font-size: 2.3rem;
    }

    .header-icon {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        border-radius: 999px;
    }

    .header-cart-count {
        top: 3px;
        right: 2px;
    }

    .hero-slide {
        min-height: 0;
    }







    .announcement-slider__slide {
        font-size: 10px;
        letter-spacing: 0.06em;
    }

    .usp-ticker {
        --usp-ticker-item-gap: 2.2rem;
    }

    .usp-ticker__track {
        animation-duration: var(--sc-usp-ticker-speed-mobile, 26s);
        min-height: 50px;
    }

    .usp-ticker__item {
        font-size: 14px;
    }

    .taxonomy-shop-grid {
        grid-template-columns: 1fr;
    }

    .brand-card,
    .brand-card img,
    .brand-card__placeholder {
        min-height: 270px;
        height: 270px;
    }

    .brands-section .sc-section__header h2 {
        font-size: clamp(19px, 6.6vw, 24px);
        letter-spacing: 0.04em;
    }

    .home-collections {
        padding-top: 1.05rem;
    }

    .latest-additions-section {
        padding: 1.4rem 0 1.6rem;
    }

    .latest-additions__top {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        text-align: center;
    }

    .latest-additions__intro h2 {
        font-size: clamp(24px, 7vw, 34px);
    }

    .latest-additions__intro p {
        margin-top: 0.45rem;
        font-size: clamp(15px, 4.2vw, 19px);
    }

    .latest-additions__all {
        margin-top: 0.8rem;
    }

    .latest-additions__nav {
        margin-top: 0;
        justify-content: flex-end;
    }

    .home-collections__header h2 {
        font-size: clamp(18px, 6.1vw, 22px);
        letter-spacing: 0.05em;
    }

    .home-collections__filters {
        margin-top: 1rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.4rem;
        gap: 0.5rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .home-collections__filters::-webkit-scrollbar {
        display: none;
    }

    .home-collections__filter {
        min-height: 44px;
        font-size: 14px;
        padding-inline: .9rem;
        white-space: nowrap;
    }

    .home-collections__stage {
        margin-top: 1rem;
        padding-inline: 0;
    }

    .sc-launch-banner__overlay {
        left: 10px;
        right: 10px;
        bottom: 16px;
        transform: translate(14px, 6px);
    }

    .sc-launch-banner {
        border-top-width: 4px;
        border-bottom-width: 4px;
    }

    .sc-launch-banner__countdown {
        gap: 0.45rem;
        font-size: clamp(0.82rem, 3.2vw, 1.1rem);
        line-height: 1.03;
        flex-wrap: wrap;
        animation-name: scLaunchCountdownPulseMobile;
    }

    .sc-launch-banner__countdown-label {
        font-size: 0.78em;
        letter-spacing: 0.04em;
    }

    .sc-launch-banner__countdown-value {
        letter-spacing: 0.02em;
    }

    .sc-launch-banner__cta {
        min-height: 44px;
        font-size: 14px;
        padding-inline: 1.15rem;
    }

    .collection-products-nav {
        display: none;
    }

    .home-collections__more,
    .latest-additions__all {
        min-height: 46px;
        width: 100%;
        font-size: 15px;
    }






    .sc-brand-swiper {
        padding-top: 0;
    }

    .brand-swiper-nav {
        display: none;
    }

    .brand-card__overlay h3 {
        font-size: 20px;
    }

    .brand-card__overlay p {
        display: none;
    }

    .brand-card--has-desc:hover .brand-card__overlay h3,
    .brand-card--has-desc:focus-within .brand-card__overlay h3 {
        transform: translateY(0);
    }

    .footer-newsletter__inner h2 {
        font-size: clamp(20px, 7vw, 28px);
        letter-spacing: 0.18em;
    }

    .footer-newsletter__inner p {
        margin-top: 0.85rem;
        font-size: clamp(14px, 4.3vw, 20px);
        line-height: 1.35;
    }

    .footer-newsletter__form {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .footer-newsletter__form input,
    .footer-newsletter__form button {
        min-height: 48px;
        font-size: 15px;
        width: 100%;
    }

    .footer-newsletter__form input {
        border-right: 1px solid #e1e1e1;
    }

    .site-footer {
        padding: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .site-footer__col {
        min-height: 0;
    }

    .site-footer__widget .widget-title,
    .site-footer__widget .wp-block-heading {
        margin-bottom: 0.8rem;
        font-size: 12px;
        letter-spacing: 0.26em;
    }

    .site-footer__widget a {
        font-size: 13px;
        letter-spacing: 0.13em;
    }

    .footer-quick-contact {
        padding: 0;
        border-radius: 0;
        gap: 0.68rem;
    }

    .footer-quick-contact__title {
        font-size: clamp(30px, 9vw, 38px);
    }

    .footer-quick-contact__teaser {
        font-size: 15px;
        max-width: none;
    }

    .footer-quick-contact__list a {
        font-size: 14px;
    }

    .site-footer__brand-mark {
        margin-top: 0;
    }

    .site-footer-main-row {
        padding: 1.25rem 0 1.45rem;
    }

    .site-footer-bottom-row {
        padding: 1rem 0 1.35rem;
    }

    .footer-social__list a {
        width: 34px;
        height: 34px;
    }

    .footer-copy-centered {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .sc-contact {
        gap: 1.1rem;
    }

    .sc-contact>h1 {
        font-size: clamp(26px, 8vw, 34px);
        letter-spacing: 0.04em;
    }

    .sc-contact-company,
    .sc-contact-form-wrap {
        padding: 1rem;
    }

    .sc-contact-company h2,
    .sc-contact-form-wrap h2 {
        letter-spacing: 0.12em;
        font-size: clamp(17px, 5.2vw, 22px);
    }

    .sc-contact-form__grid {
        grid-template-columns: 1fr;
        gap: 0.82rem;
    }

    .sc-contact-form__submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 706px) {
    .sc-launch-banner__overlay {
        left: 12px;
        right: 8px;
        bottom: 18px;
        transform: translate(24px, -2px);
    }
}

@media (max-width: 560px) {
    .sc-launch-banner__overlay {
        left: 30px;
        bottom: 30px;
        transform: translate(14px, 2px);
    }

    .sc-launch-banner__countdown {
        gap: 0.35rem;
        font-size: clamp(0.72rem, 4vw, 1.35rem);
        animation-name: scLaunchCountdownPulseMobile;
    }

    .sc-launch-banner__countdown-label {
        font-size: 0.72em;
        letter-spacing: 0.03em;
    }

    .sc-launch-banner__countdown-value {
        letter-spacing: 0.01em;
    }
}

@media (max-width: 480px) {
    .sc-launch-banner__overlay {
        left: 25px;

        bottom: 10px;
        transform: translate(8px, 4px);
    }

    .sc-launch-banner__countdown {
        font-size: clamp(0.72rem, 4vw, 1.3rem);
        animation-name: scLaunchCountdownPulseMobile;
    }
}

@keyframes scLaunchCountdownPulseMobile {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.86;
    }
}