:root {
--bg: #f5f6f7;
--surface: #ffffff;
--surface-muted: #eef0f2;
--text: #1f2328;
--text-soft: #5a626d;
--graphite: #262b31;
--graphite-2: #303740;
--wood: #b69374;
--border: #dde1e6;
--shadow: 0 8px 18px rgba(20, 25, 31, 0.06);
--radius-xl: 24px;
--radius-lg: 18px;
--radius-md: 12px;
--radius-sm: 8px;
--space-xs: 8px;
--space-sm: 14px;
--space-md: 22px;
--space-lg: 34px;
--space-xl: 56px;
--container: 1220px;
--header-height: 82px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: "Manrope", sans-serif;
color: var(--text);
background: var(--bg);
line-height: 1.55;
}
img {
max-width: 100%;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
p {
margin: 0;
}
h1,
h2,
h3 {
margin: 0;
line-height: 1.2;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
.container {
width: min(100% - 32px, var(--container));
margin: 0 auto;
}
.section {
padding: 88px 0;
}
.site-main > .section:not(.page-top):not(.hero) {
content-visibility: auto;
contain-intrinsic-size: 1px 900px;
}
.section--alt {
background: var(--surface-muted);
}
.section-head {
margin-bottom: 32px;
}
.section-head h2 {
font-size: clamp(1.75rem, 2.2vw, 2.4rem);
margin-bottom: 10px;
}
.section-head p {
color: var(--text-soft);
max-width: 700px;
}
.eyebrow {
display: inline-block;
margin-bottom: 14px;
padding: 6px 12px;
border-radius: 999px;
background: #e9ecef;
color: var(--graphite-2);
font-weight: 700;
font-size: 0.82rem;
letter-spacing: 0.02em;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 46px;
padding: 0 22px;
border-radius: 999px;
border: 1px solid transparent;
font-weight: 700;
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover {
transform: translateY(-2px);
}
.btn--dark {
background: var(--graphite);
color: #fff;
box-shadow: 0 8px 18px rgba(38, 43, 49, 0.25);
}
.btn--dark:hover {
background: #1d2126;
}
.btn--light {
background: var(--surface);
color: var(--graphite);
border-color: var(--border);
}
.btn--light:hover {
box-shadow: var(--shadow);
}
.btn--small {
min-height: 38px;
padding: 0 16px;
font-size: 0.9rem;
}.topbar {
background: #1f2328;
color: rgba(255, 255, 255, 0.78);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
min-height: 40px;
display: grid;
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
align-items: center;
gap: 20px;
padding-block: 8px;
}
.topbar__group {
display: flex;
align-items: center;
gap: 16px;
min-width: 0;
flex-wrap: wrap;
}
.topbar__group--start {
justify-self: start;
}
.topbar__group--center {
justify-self: center;
justify-content: center;
}
.topbar__group--end {
justify-self: end;
justify-content: flex-end;
}
.topbar__link,
.topbar__note {
font-size: 0.82rem;
line-height: 1.35;
}
.topbar__link {
color: rgba(255, 255, 255, 0.88);
}
.topbar__group--start .topbar__link + .topbar__link {
position: relative;
padding-left: 15px;
}
.topbar__group--start .topbar__link + .topbar__link::before {
content: "";
position: absolute;
left: 0;
top: 2px;
bottom: 2px;
width: 1px;
background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18) 20%, rgba(255, 255, 255, 0.18) 80%, transparent);
pointer-events: none;
}
.topbar__link:hover {
color: #fff;
}
.topbar__note {
color: rgba(255, 255, 255, 0.72);
text-align: center;
white-space: nowrap;
}
.topbar__nav {
display: flex;
align-items: center;
}
.topbar-menu {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.topbar-menu a {
color: rgba(255, 255, 255, 0.78);
font-size: 0.82rem;
line-height: 1.35;
}
.topbar-menu a:hover,
.topbar-menu .current-menu-item > a,
.topbar-menu .current-menu-ancestor > a {
color: rgba(255, 255, 255, 0.96);
}
.site-header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(247, 248, 249, 0.985);
box-shadow: 0 8px 18px rgba(20, 25, 31, 0.04);
transition: background 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}
.site-header.is-scrolled {
background: rgba(255, 255, 255, 0.992);
box-shadow: 0 10px 22px rgba(20, 25, 31, 0.06);
}
.site-header.is-search-open {
background: rgba(255, 255, 255, 0.992);
box-shadow: 0 10px 22px rgba(20, 25, 31, 0.06);
}
.header__inner {
min-height: var(--header-height);
display: grid;
grid-template-columns: auto minmax(0, 1fr) auto auto;
align-items: center;
gap: 18px;
}
.logo {
font-size: 1.35rem;
font-weight: 800;
letter-spacing: 0.06em;
color: var(--graphite);
justify-self: start;
}
.nav {
display: flex;
align-items: center;
gap: 26px;
justify-self: center;
}
.nav-backdrop,
.nav__submenu-toggle,
.nav__meta {
display: none;
}
.header-search {
position: relative;
justify-self: end;
}
.header-search--mobile {
display: none;
}
.header-search--desktop {
width: 44px;
z-index: 140;
overflow: visible;
transition: width 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-search--desktop::before {
content: "";
position: absolute;
inset: -8px;
border-radius: 999px;
background: radial-gradient(circle at right center, rgba(182, 147, 116, 0.16), rgba(182, 147, 116, 0));
opacity: 0;
transform: scale(0.92);
transition: opacity 0.32s ease, transform 0.32s ease;
pointer-events: none;
}
.header-search--desktop.is-expanded {
width: min(440px, 44vw);
}
.header-search--desktop.is-expanded::before {
opacity: 1;
transform: scale(1);
}
.header-search--desktop .header-search__panel {
position: absolute;
top: 50%;
right: 0;
width: 100%;
transform: translateY(-50%);
pointer-events: none;
overflow: visible;
}
.header-search--desktop.is-expanded .header-search__panel {
pointer-events: auto;
}
.site-header.is-search-open .site-branding,
.site-header.is-search-open .nav,
.site-header.is-search-open .header-tools {
opacity: 0.22;
filter: blur(4px);
pointer-events: none;
transition: opacity 0.18s ease, filter 0.18s ease;
}
.site-header.is-search-open .header-search--desktop {
opacity: 1;
}
.header-search__field {
position: relative;
}
.header-search__toggle {
width: 44px;
height: 44px;
display: inline-grid;
place-items: center;
border: 1px solid var(--border);
border-radius: 999px;
background: rgba(255, 255, 255, 0.96);
color: var(--graphite);
box-shadow: 0 6px 14px rgba(20, 25, 31, 0.05);
cursor: pointer;
transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.header-search__toggle:hover {
background: #fff;
box-shadow: 0 8px 18px rgba(20, 25, 31, 0.08);
}
.header-search__toggle:focus-visible {
outline: 2px solid rgba(182, 147, 116, 0.45);
outline-offset: 2px;
}
.header-search--desktop .header-search__toggle {
position: absolute;
right: 0;
top: 50%;
z-index: 3;
transform: translateY(-50%);
transition:
opacity 0.2s ease,
transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
background 0.2s ease,
box-shadow 0.2s ease,
color 0.2s ease;
}
.header-search--desktop.is-expanded .header-search__toggle {
opacity: 0;
pointer-events: none;
transform: translateY(-50%) scale(0.8);
}
.header-search--desktop .header-search__field {
min-height: 48px;
border: 1px solid rgba(221, 225, 230, 0.96);
border-radius: 999px;
background: rgba(255, 255, 255, 0.985);
box-shadow: 0 16px 32px rgba(20, 25, 31, 0.1);
opacity: 0;
transform: translateX(16px) scale(0.96);
transform-origin: right center;
transition:
opacity 0.22s ease,
transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 0.24s ease,
border-color 0.24s ease;
overflow: hidden;
}
.header-search--desktop .header-search__field::after {
content: "";
position: absolute;
inset: 1px;
border-radius: inherit;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
pointer-events: none;
}
.header-search--desktop.is-expanded .header-search__field {
opacity: 1;
transform: translateX(0) scale(1);
}
.header-search__icon {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
display: inline-flex;
align-items: center;
justify-content: center;
color: #6c7783;
pointer-events: none;
}
.header-search__icon-svg {
width: 16px;
height: 16px;
display: block;
}
.header-search__input {
width: 100%;
min-height: 44px;
padding: 0 16px 0 42px;
border: 1px solid var(--border);
border-radius: 999px;
background: rgba(255, 255, 255, 0.96);
color: var(--graphite);
font-family: inherit;
font-size: 0.92rem;
box-shadow: 0 10px 22px rgba(20, 25, 31, 0.06);
}
.header-search--desktop .header-search__input {
min-height: 48px;
border: 0;
background: transparent;
box-shadow: none;
}
.header-search__input::placeholder {
color: #7a8591;
}
.header-search__input:focus {
outline: none;
border-color: rgba(182, 147, 116, 0.4);
box-shadow: 0 8px 18px rgba(20, 25, 31, 0.08);
}
.header-search__dropdown {
position: absolute;
top: calc(100% + 10px);
left: 0;
right: 0;
z-index: 130;
padding: 10px;
border: 1px solid var(--border);
border-radius: 20px;
background: #fff;
box-shadow: 0 12px 26px rgba(20, 25, 31, 0.1);
}
.header-search--desktop .header-search__dropdown {
top: calc(100% + 14px);
padding: 12px;
border-radius: 22px;
background: #fff;
box-shadow: 0 18px 34px rgba(20, 25, 31, 0.14);
}
.nav__list > li:last-child:not(.menu-item-has-children) {
margin-left: 6px;
}
.nav__list > li:last-child:not(.menu-item-has-children) > a {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0 22px;
border: 1px solid transparent;
border-radius: 999px;
background: var(--graphite);
color: #fff;
font-weight: 700;
white-space: nowrap;
box-shadow: 0 8px 18px rgba(38, 43, 49, 0.25);
}
.nav__list > li:last-child:not(.menu-item-has-children) > a:hover {
background: #1d2126;
}
.nav__list > li:last-child:not(.menu-item-has-children) > a::after {
display: none;
}
.header-search__results {
display: grid;
gap: 4px;
}
.header-search__status {
padding: 12px 10px;
color: #687380;
font-size: 0.9rem;
}
.header-search__item {
display: grid;
grid-template-columns: 52px minmax(0, 1fr);
gap: 10px;
align-items: center;
padding: 8px;
border-radius: 14px;
color: var(--graphite);
text-decoration: none;
transition: background 0.2s ease, transform 0.2s ease;
}
.header-search__item:hover,
.header-search__item.is-active {
background: #f4f6f8;
}
.header-search__item-image img {
width: 52px;
height: 66px;
object-fit: contain;
border-radius: 12px;
background: radial-gradient(circle at 50% 20%, #ffffff 0%, #f1f3f6 58%, #e8ebef 100%);
}
.header-search__item-content {
min-width: 0;
display: grid;
gap: 4px;
}
.header-search__item-title {
font-size: 0.92rem;
font-weight: 700;
line-height: 1.3;
overflow-wrap: anywhere;
}
.header-search__item-meta {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
color: #687380;
font-size: 0.8rem;
}
.header-search__item-price {
color: var(--graphite);
font-weight: 700;
}
.header-search__view-all {
display: block;
margin-top: 4px;
padding: 10px 12px 6px;
color: var(--graphite);
font-size: 0.86rem;
font-weight: 800;
text-decoration: none;
}
.nav__list {
display: flex;
align-items: center;
gap: 20px;
}
.nav__list > li {
position: relative;
}
.nav__list > .menu-item-has-children::before {
content: "";
position: absolute;
top: 100%;
left: -12px;
right: -12px;
height: 18px;
}
.nav__list a {
font-weight: 600;
color: #3f464e;
position: relative;
}
.nav__list .menu-item-has-children > a {
display: inline-flex;
align-items: center;
gap: 0;
padding-right: 14px;
}
.nav__list .menu-item-has-children > a::before {
content: ">";
display: block;
position: absolute;
right: 0;
top: 50%;
font-size: 0.78rem;
font-weight: 800;
line-height: 1;
color: #7a8591;
transform: translateY(-50%);
transition: color 0.22s ease;
}
.nav__list .menu-item-has-children > a::after {
content: "";
}
.nav__list > .menu-item-has-children:hover > a::before,
.nav__list > .menu-item-has-children:focus-within > a::before,
.nav__list > .menu-item-has-children.current-menu-ancestor > a::before {
color: var(--graphite);
}
.nav__list .sub-menu {
position: absolute;
top: calc(100% + 14px);
left: 0;
min-width: 250px;
display: grid;
gap: 2px;
margin: 0;
padding: 10px;
list-style: none;
border: 1px solid rgba(221, 225, 230, 0.94);
border-radius: 18px;
background: #fff;
box-shadow: 0 12px 28px rgba(20, 25, 31, 0.12);
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateY(8px);
transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
z-index: 120;
}
.nav__list .sub-menu::before {
content: "";
position: absolute;
top: -7px;
left: 26px;
width: 12px;
height: 12px;
background: rgba(255, 255, 255, 0.98);
border-top: 1px solid rgba(221, 225, 230, 0.94);
border-left: 1px solid rgba(221, 225, 230, 0.94);
transform: rotate(45deg);
}
.nav__list .menu-item-has-children:hover > .sub-menu,
.nav__list .menu-item-has-children:focus-within > .sub-menu {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateY(0);
}
.nav__list .sub-menu li {
position: relative;
}
.nav__list .sub-menu .menu-item-has-children::before {
content: "";
position: absolute;
top: -6px;
left: 100%;
width: 18px;
height: calc(100% + 12px);
}
.nav__list .sub-menu a {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 10px 12px;
border-radius: 12px;
color: var(--graphite);
line-height: 1.35;
white-space: nowrap;
}
.nav__list .sub-menu .menu-item-has-children > a {
padding-right: 28px;
}
.nav__list .sub-menu .menu-item-has-children > a::before {
content: ">";
position: absolute;
right: 12px;
top: 50%;
display: inline-block;
font-size: 0.72rem;
font-weight: 800;
color: #7a8591;
line-height: 1;
transform: translateY(-50%);
}
.nav__list .sub-menu a:hover {
background: #f4f6f8;
}
.nav__list .sub-menu a::after {
display: none;
}
.nav__list .sub-menu .sub-menu {
top: -10px;
left: calc(100% + 12px);
}
.nav__list .sub-menu .sub-menu::before {
display: none;
}
.nav__list > li > a::after {
content: "";
position: absolute;
left: 0;
bottom: -6px;
width: 0;
height: 2px;
background: var(--wood);
transition: width 0.25s ease;
}
.nav__list > li > a:hover::after {
width: 100%;
}
.menu-toggle {
display: none;
border: 0;
background: none;
padding: 0;
width: 38px;
height: 38px;
border-radius: 10px;
cursor: pointer;
}
.menu-toggle span {
display: block;
width: 24px;
height: 2px;
background: var(--graphite);
margin: 5px auto;
transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle:hover {
background: rgba(243, 245, 247, 0.9);
}
.menu-toggle:focus-visible {
outline: 2px solid rgba(182, 147, 116, 0.45);
outline-offset: 2px;
}
.menu-toggle.active span:nth-child(1) {
transform: translateY(14px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.header-cart {
display: inline-flex;
align-items: center;
gap: 8px;
min-height: 42px;
padding: 0 12px;
border: 0;
border-radius: 999px;
background: transparent;
color: var(--graphite);
font-weight: 700;
transition: background 0.25s ease, color 0.25s ease;
justify-self: end;
}
.header-cart:hover {
background: #f3f5f7;
}
.header-cart__icon {
line-height: 1;
}
.header-cart__text {
font-size: 0.9rem;
}
.header-cart__count {
min-width: 22px;
height: 22px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: var(--graphite);
color: #fff;
font-size: 0.74rem;
padding: 0 6px;
}
.header-cart__total {
color: #56606b;
font-size: 0.84rem;
white-space: nowrap;
}
.header-tools {
display: inline-flex;
align-items: center;
justify-self: end;
gap: 0;
position: relative;
padding: 4px;
border: 1px solid var(--border);
border-radius: 999px;
background: rgba(255, 255, 255, 0.985);
box-shadow: 0 6px 14px rgba(20, 25, 31, 0.05);
}
.header-account {
display: inline-flex;
align-items: center;
gap: 10px;
min-height: 42px;
padding: 6px 12px 6px 8px;
border: 0;
border-radius: 999px;
background: transparent;
color: var(--graphite);
transition: background 0.25s ease, color 0.25s ease;
}
.header-account:hover,
.header-account.is-current {
background: #f3f5f7;
}
.header-account__avatar {
width: 30px;
height: 30px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: linear-gradient(145deg, var(--graphite), var(--graphite-2));
color: #fff;
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 0.04em;
}
.header-account__icon {
width: 18px;
height: 18px;
display: block;
flex: 0 0 auto;
}
.header-account__content {
display: grid;
gap: 1px;
}
.header-account__name {
font-size: 0.9rem;
font-weight: 800;
color: var(--graphite);
max-width: 132px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}.hero {
padding-top: 52px;
}
.hero__grid {
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 34px;
align-items: center;
}
.hero__content h1 {
font-size: 3rem;
margin-bottom: 14px;
max-width: 700px;
}
.hero__subtitle {
color: var(--text-soft);
max-width: 600px;
margin-bottom: 28px;
}
.hero__actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.hero__media {
position: relative;
}
.hero__media img {
width: 100%;
min-height: 420px;
object-fit: cover;
border-radius: var(--radius-xl);
box-shadow: var(--shadow);
}
.hero-badges {
position: absolute;
right: 14px;
bottom: 14px;
display: grid;
gap: 8px;
width: min(240px, 85%);
}
.hero-badge {
background: rgba(255, 255, 255, 0.93);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 10px 12px;
font-size: 0.92rem;
font-weight: 700;
} .cards {
display: grid;
gap: 18px;
}
.cards > * {
content-visibility: auto;
contain-intrinsic-size: 1px 320px;
}
.cards--categories {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cards--products {
grid-template-columns: repeat(3, minmax(0, 1fr));
align-items: stretch;
grid-auto-flow: row;
}
.cards--products > * {
min-width: 0;
width: 100%;
}
.woocommerce ul.products,
.woocommerce-page ul.products {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
margin: 0;
padding: 0;
list-style: none;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
width: auto !important;
float: none !important;
margin: 0 !important;
content-visibility: auto;
contain-intrinsic-size: 1px 420px;
}
.card {
background: var(--surface);
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
border: 1px solid #e9edf1;
overflow: hidden;
transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
transform: translateY(-2px);
box-shadow: 0 12px 24px rgba(20, 25, 31, 0.08);
}
.card img {
width: auto;
height: auto;
object-fit: cover;
}
.category-card {
display: flex;
flex-direction: column;
color: inherit;
text-decoration: none;
transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
border-color 0.38s ease;
}
.category-card:hover {
transform: none;
box-shadow: var(--shadow);
color: inherit;
}
.category-card img {
transition: filter 0.38s ease, opacity 0.38s ease;
}
.category-card:hover img {
filter: saturate(1.02) brightness(1.01);
}
.card__body {
padding: 16px;
}
.card__body h3 {
margin-bottom: 6px;
font-size: 1.05rem;
}
.card__body p {
color: var(--text-soft);
font-size: 0.95rem;
}
.link-arrow {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 10px;
font-weight: 700;
color: var(--graphite-2);
}
.link-arrow::after {
content: "->";
transition: transform 0.2s ease;
}
.link-arrow:hover::after {
transform: translateX(3px);
}
.product-card {
position: relative;
display: flex;
flex-direction: column;
}
.product-card__media {
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
aspect-ratio: 3 / 4;
background:
radial-gradient(circle at 50% 20%, #ffffff 0%, #f1f3f6 58%, #e8ebef 100%);
padding: 16px;
}
.product-card__media::after {
content: "";
position: absolute;
inset: -20%;
background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.45) 50%, transparent 58%);
transform: translateX(-120%) rotate(1deg);
transition: transform 0.75s ease;
pointer-events: none;
}
.product-card__image {
position: absolute;
inset: 0;
margin: auto;
width: auto;
height: auto;
max-width: calc(100% - 24px);
max-height: min(360px, calc(100% - 24px));
object-fit: contain;
object-position: center center;
transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card__image.product-card__image--primary {
width: auto;
height: auto;
}
.product-card__image--hover {
opacity: 0;
transform: scale(1.03);
}
.product-card__media.has-hover-image:hover .product-card__image--primary {
opacity: 0;
transform: translateX(-10%) scale(0.98);
}
.product-card__media.has-hover-image:hover .product-card__image--hover {
opacity: 1;
transform: scale(1);
}
.product-card__media.has-hover-image:hover::after {
transform: translateX(120%) rotate(1deg);
}
.product-card .card__body {
display: flex;
flex-direction: column;
flex: 1;
}
.product-card .card__body p {
min-height: 44px;
}
.badge {
position: absolute;
top: 12px;
left: 12px;
z-index: 2;
border-radius: 999px;
font-size: 0.74rem;
font-weight: 800;
padding: 4px 10px;
color: #fff;
}
.badge--hit {
background: #36404a;
}
.badge--new {
background: #6e8b6b;
}
.badge--sale {
background: #b7704d;
}
.product-meta {
margin-top: 14px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
.product-meta strong {
font-size: 1.08rem;
color: var(--graphite);
} .features {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}
.feature {
background: var(--surface);
border-radius: var(--radius-md);
border: 1px solid var(--border);
padding: 16px;
display: flex;
align-items: center;
gap: 10px;
}
.feature span {
font-size: 1.2rem;
}
.feature h3 {
font-size: 1rem;
} .section-head--split {
display: flex;
align-items: end;
justify-content: space-between;
gap: 18px;
}
.section-head__actions {
display: flex;
align-items: center;
gap: 12px;
}
.mobile-rail__dots {
display: none;
}
.mobile-rail__dot {
width: 8px;
height: 8px;
border: 0;
border-radius: 999px;
background: #d5dbe2;
transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-rail__dot.is-active {
background: var(--graphite);
transform: scale(1.15);
}
.section-head--split p {
max-width: 680px;
} .promo__inner {
border-radius: var(--radius-xl);
padding: 34px;
background:
linear-gradient(120deg, rgba(38, 43, 49, 0.95), rgba(38, 43, 49, 0.82)),
url(https://images.unsplash.com/photo-1600566752227-8f3b0f4c1f3b?auto=format&fit=crop&w=1400&q=80) center/cover;
color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
} .about {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 26px;
align-items: center;
}
.about__content p {
color: var(--text-soft);
margin-top: 12px;
}
.about__media img {
border-radius: var(--radius-xl);
min-height: 380px;
object-fit: cover;
box-shadow: var(--shadow);
}
.stats {
margin-top: 22px;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
}
.stats article {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 14px;
text-align: center;
}
.stats strong {
display: block;
font-size: 1.35rem;
color: var(--graphite);
}
.stats span {
color: var(--text-soft);
font-size: 0.9rem;
} .reviews {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}
.review-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 18px;
box-shadow: 0 8px 16px rgba(20, 25, 31, 0.04);
}
.review-stars {
color: #b88a58;
letter-spacing: 2px;
margin-bottom: 10px;
font-weight: 800;
}
.review-card h3 {
margin-top: 12px;
font-size: 1rem;
} .cta__inner {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-xl);
padding: 34px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.cta__inner h2 {
max-width: 740px;
font-size: clamp(1.55rem, 2.1vw, 2.2rem);
}
.cta__actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
} .site-footer {
background: #1f2328;
color: #d6dce2;
padding: 58px 0 22px;
}
.footer__grid {
display: grid;
grid-template-columns: 1.3fr 1fr 1fr;
gap: 22px;
}
.site-footer .logo {
color: #fff;
display: inline-block;
margin-bottom: 12px;
}
.site-footer h3 {
color: #fff;
margin-bottom: 10px;
font-size: 1rem;
}
.site-footer li {
margin-bottom: 8px;
}
.site-footer a:hover {
color: #fff;
}
.footer__bottom {
margin-top: 18px;
padding-top: 14px;
border-top: 1px solid #343b44;
font-size: 0.9rem;
color: #aab3bc;
}
@media (max-width: 980px) {
.section-head--split {
flex-direction: column;
align-items: start;
}
}
@media (max-width: 860px) {
.hero__content h1 {
font-size: 2.1rem;
max-width: none;
}
.hero__subtitle {
margin-bottom: 20px;
}
.hero__actions {
display: grid;
grid-template-columns: 1fr;
}
.hero__actions .btn,
.section-head--split .btn,
.cta__actions .btn {
width: 100%;
justify-content: center;
}
.section-head__actions {
width: 100%;
flex-wrap: wrap;
}
.category-card .card__body {
min-height: auto;
}
.promo__copy {
gap: 14px;
}
.promo__text {
max-width: none;
}
.promo__media,
.promo__media img {
width: 100%;
}
.promo__media img {
min-height: 220px;
max-height: 320px;
}
.cta__actions {
width: 100%;
}
}
@media (max-width: 560px) {
.mobile-rail {
display: grid;
gap: 12px;
}
.mobile-rail__dots {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
}.nav__active {
color: var(--graphite) !important;
}
.nav__active::after {
width: 100% !important;
}
.page-top {
padding-top: 54px;
padding-bottom: 34px;
}
.page-top h1 {
font-size: clamp(1.85rem, 2.8vw, 3rem);
margin-bottom: 8px;
}
.page-top p {
color: var(--text-soft);
}
.breadcrumbs {
font-size: 0.92rem;
color: #717a85;
margin-bottom: 10px;
}
.shop-section {
padding-top: 34px;
}
.shop-layout {
display: grid;
grid-template-columns: 290px 1fr;
gap: 18px;
align-items: start;
}
.shop-mobile-bar {
display: none;
}
.shop-filters {
position: sticky;
top: calc(var(--header-height) + 14px);
display: grid;
grid-template-rows: auto minmax(0, 1fr);
max-height: calc(100vh - var(--header-height) - 28px);
padding: 18px;
overflow: hidden;
}
.shop-filters__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding-bottom: 12px;
}
.shop-filters__head h2 {
margin-bottom: 0;
}
.shop-filters__close {
display: none;
width: 38px;
height: 38px;
border: 1px solid var(--border);
border-radius: 999px;
background: #fff;
color: var(--graphite);
font-size: 1.15rem;
line-height: 1;
}
.shop-filters-backdrop {
display: none;
}
.shop-filters.card:hover {
transform: none;
box-shadow: var(--shadow);
}
.shop-filters h2 {
margin-bottom: 14px;
font-size: 1.2rem;
}
.shop-filters__eyebrow {
margin: 0 0 6px;
font-size: 0.74rem;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #8b949e;
}
.shop-filters__text {
margin: 8px 0 0;
color: var(--text-soft);
font-size: 0.9rem;
}
.shop-filters__actions {
display: flex;
align-items: center;
gap: 10px;
margin-left: auto;
}
.shop-filters__reset {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 34px;
padding: 0 12px;
border-radius: 999px;
background: rgba(31, 35, 40, 0.06);
color: var(--graphite);
font-size: 0.85rem;
font-weight: 700;
}
.shop-filter-group + .shop-filter-group {
margin-top: 12px;
}
.shop-filter-group__header {
margin: 0;
}
.shop-filter-group__title {
display: none;
}
.shop-filter-group__toggle {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
min-height: 20px;
padding: 0;
border: 0;
background: transparent;
color: var(--graphite);
font-size: 0.96rem;
font-weight: 700;
text-align: left;
cursor: pointer;
}
.shop-filter-group__toggle::after {
content: "";
width: 8px;
height: 8px;
border-right: 1.5px solid currentColor;
border-bottom: 1.5px solid currentColor;
transform: rotate(45deg);
transition: transform 0.22s ease;
}
.shop-filter-group__body {
min-width: 0;
display: none;
padding-top: 6px;
}
.shop-filter-group.is-open .shop-filter-group__toggle::after {
transform: rotate(-135deg);
}
.shop-filter-group.is-open .shop-filter-group__body {
display: block;
}
.filter-block label {
display: block;
margin-bottom: 8px;
color: #3f464e;
font-size: 0.94rem;
}
.filter-block label a {
color: inherit;
}
.shop-filters .widget ul {
margin: 0;
padding: 0;
list-style: none;
}
.shop-filters .widget li {
position: relative;
margin-bottom: 8px;
color: #3f464e;
font-size: 0.94rem;
}
.shop-filters .widget li a {
display: inline-flex;
align-items: center;
min-height: 36px;
width: 100%;
padding: 0 6px 0 10px;
border: 0;
border-radius: 10px;
color: inherit;
background: transparent;
transition:
background 0.18s ease,
color 0.18s ease;
}
.shop-filters .widget li a:hover {
background: rgba(31, 35, 40, 0.045);
color: var(--graphite);
}
.shop-filters .widget_product_categories .children {
margin-top: 4px;
margin-left: 10px;
padding: 2px 0 0 10px;
border-left: 1px solid rgba(221, 225, 230, 0.9);
}
.shop-filters .widget_product_categories .children li {
margin-bottom: 3px;
font-size: 0.88rem;
}
.shop-filters .widget_product_categories .children li a {
min-height: 30px;
padding: 0 4px 0 8px;
border-radius: 8px;
color: #56616d;
}
.shop-filters .widget_product_categories .children li a:hover {
background: rgba(31, 35, 40, 0.035);
}
.shop-filters .widget_product_categories .children .count {
min-width: 22px;
min-height: 18px;
padding: 0 6px;
font-size: 0.75rem;
color: #8b949e;
border-color: rgba(225, 230, 235, 0.9);
}
.shop-filters .widget_product_categories .children li.current-cat > a {
background: rgba(31, 35, 40, 0.045);
}
.shop-filters .widget_product_categories .children li.current-cat-parent > a,
.shop-filters .widget_product_categories .children li.current-cat-ancestor > a {
font-weight: 600;
}
.shop-filters .widget .count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 24px;
min-height: 20px;
margin-left: 8px;
padding: 0 7px;
border-radius: 999px;
background: transparent;
color: #8a939e;
font-size: 0.8rem;
font-weight: 600;
border: 1px solid #e1e6eb;
}
.shop-filters .widget li.chosen a,
.shop-filters .widget li.current-cat > a {
font-weight: 700;
color: var(--graphite);
background: rgba(31, 35, 40, 0.06);
}
.shop-filters .widget li.current-cat-parent > a,
.shop-filters .widget li.current-cat-ancestor > a {
color: var(--graphite);
font-weight: 700;
background: transparent;
}
.shop-filters .widget li.current-cat > .count {
background: rgba(31, 35, 40, 0.06);
color: var(--graphite);
border-color: rgba(31, 35, 40, 0.08);
}
.shop-filters .widget_layered_nav_filters ul li a {
display: inline-flex;
align-items: center;
gap: 6px;
}
.shop-price-presets {
display: grid;
gap: 0;
}
.shop-delivery-times {
display: grid;
gap: 0;
}
.shop-price-presets li {
margin: 0;
}
.shop-delivery-times li {
margin: 0;
}
.shop-price-presets a {
display: flex;
align-items: center;
min-height: 40px;
width: 100%;
padding: 0 12px;
border: 1px solid #e1e6eb;
border-radius: 12px;
background: #fff;
color: var(--graphite-2);
font-weight: 600;
transition:
background 0.18s ease,
border-color 0.18s ease,
color 0.18s ease;
}
.shop-delivery-times a {
display: flex;
align-items: center;
min-height: 40px;
width: 100%;
padding: 0 12px;
border: 1px solid #e1e6eb;
border-radius: 12px;
background: #fff;
color: var(--graphite-2);
font-weight: 600;
transition:
background 0.18s ease,
border-color 0.18s ease,
color 0.18s ease;
}
.shop-price-presets a:hover {
background: rgba(31, 35, 40, 0.03);
border-color: #d3d9e0;
color: var(--graphite);
}
.shop-delivery-times a:hover {
background: rgba(31, 35, 40, 0.03);
border-color: #d3d9e0;
color: var(--graphite);
}
.shop-price-presets li.is-current > a,
.shop-price-presets li.active > a {
background: rgba(31, 35, 40, 0.03);
border-color: #d3d9e0;
color: var(--graphite);
font-weight: 600;
}
.shop-delivery-times li.is-current > a,
.shop-delivery-times li.active > a {
background: rgba(31, 35, 40, 0.03);
border-color: #d3d9e0;
color: var(--graphite);
font-weight: 600;
}
.shop-content {
transition: opacity 0.2s ease;
min-width: 0;
}
.shop-active-filters {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 14px;
}
.shop-active-filters__list {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.shop-active-filters__item,
.shop-active-filters__reset {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 36px;
padding: 0 12px;
border-radius: 999px;
background: rgba(31, 35, 40, 0.06);
color: var(--graphite);
font-size: 0.85rem;
font-weight: 700;
}
.shop-active-filters__item {
position: relative;
padding-right: 28px;
}
.shop-active-filters__item::after {
content: "\00d7";
position: absolute;
right: 11px;
top: 50%;
font-size: 0.95rem;
line-height: 1;
transform: translateY(-50%);
color: #7b8794;
}
.shop-filters__body {
min-height: 0;
overflow-y: auto;
overscroll-behavior: contain;
padding-right: 4px;
}
.shop-content.is-loading {
opacity: 0.55;
pointer-events: none;
}
.shop-mobile-bar__reset {
display: none;
}
.product-meta .price-prefix {
font-size: 0.92rem;
font-weight: 700;
color: #7a8591;
}
.filter-block input {
margin-right: 8px;
}
.shop-toolbar {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
gap: 12px;
}
.shop-toolbar p {
color: var(--text-soft);
}
.shop-toolbar select {
min-height: 42px;
border-radius: 999px;
border: 1px solid var(--border);
background: #fff;
padding: 0 14px;
font-family: inherit;
color: var(--graphite);
}
@media (max-width: 1100px) {
.shop-layout {
position: relative;
grid-template-columns: 1fr;
gap: 0;
}
.shop-mobile-bar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-bottom: 14px;
}
.shop-filters-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 42px;
padding: 0 16px;
border: 1px solid var(--border);
border-radius: 999px;
background: rgba(255, 255, 255, 0.96);
color: var(--graphite);
font-weight: 700;
box-shadow: 0 10px 22px rgba(20, 25, 31, 0.06);
}
.shop-filters-toggle__icon {
width: 16px;
height: 12px;
display: inline-block;
background:
linear-gradient(currentColor, currentColor) left top / 100% 1.5px no-repeat,
linear-gradient(currentColor, currentColor) left center / 100% 1.5px no-repeat,
linear-gradient(currentColor, currentColor) left bottom / 100% 1.5px no-repeat;
}
.shop-filters-toggle__count {
min-width: 22px;
height: 22px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: var(--graphite);
color: #fff;
font-size: 0.75rem;
padding: 0 6px;
}
.shop-mobile-bar__reset {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding: 0 14px;
border: 1px solid var(--border);
border-radius: 999px;
background: rgba(255, 255, 255, 0.96);
color: var(--graphite);
font-size: 0.88rem;
font-weight: 700;
white-space: nowrap;
box-shadow: 0 10px 22px rgba(20, 25, 31, 0.06);
}
.shop-filters {
display: none;
position: fixed;
top: calc(var(--header-height) + 10px);
left: 16px;
bottom: 16px;
z-index: 160;
width: min(360px, calc(100vw - 32px));
height: auto;
max-height: calc(100dvh - var(--header-height) - 26px);
grid-template-rows: auto minmax(0, 1fr);
padding: 18px 18px 22px;
border-radius: 22px;
background: rgba(255, 255, 255, 0.98);
box-shadow: 0 24px 56px rgba(20, 25, 31, 0.2);
transform: translateY(16px);
opacity: 0;
visibility: hidden;
transition: transform 0.24s ease, opacity 0.24s ease;
overflow: hidden;
}
.shop-filters__close {
display: inline-grid;
place-items: center;
flex: 0 0 auto;
}
.shop-filters__head {
position: sticky;
top: 0;
z-index: 1;
padding-bottom: 12px;
background: rgba(255, 255, 255, 0.98);
}
.shop-filters__body {
display: flex;
flex-direction: column;
min-height: 0;
margin-top: 10px;
overflow-y: auto;
overscroll-behavior: contain;
-webkit-overflow-scrolling: touch;
padding-right: 4px;
}
.shop-filters-backdrop {
display: block;
position: fixed;
inset: 0;
z-index: 150;
border: 0;
background: rgba(20, 25, 31, 0.34);
opacity: 0;
pointer-events: none;
transition: opacity 0.24s ease;
}
body.shop-filters-open {
overflow: hidden;
}
body.shop-filters-open .shop-filters {
display: grid;
transform: translateY(0);
opacity: 1;
visibility: visible;
}
body.shop-filters-open .shop-filters-backdrop {
opacity: 1;
pointer-events: auto;
}
.shop-content {
width: 100%;
}
.shop-toolbar {
gap: 10px;
margin-bottom: 14px;
padding: 12px 14px;
border: 1px solid var(--border);
border-radius: 18px;
background: rgba(255, 255, 255, 0.96);
box-shadow: 0 10px 24px rgba(20, 25, 31, 0.05);
}
.shop-active-filters {
margin-bottom: 12px;
}
}
@media (max-width: 860px) {
.page-top {
padding-top: 32px;
padding-bottom: 24px;
}
.shop-section {
padding-top: 20px;
}
.shop-mobile-bar {
position: sticky;
top: calc(var(--header-height) + 12px);
z-index: 12;
margin-bottom: 12px;
padding: 8px 0 10px;
background: linear-gradient(180deg, rgba(248, 249, 250, 0.98), rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0));
}
.shop-toolbar {
align-items: stretch;
}
.shop-active-filters {
align-items: stretch;
flex-direction: column;
}
.shop-active-filters__list {
width: 100%;
}
.shop-toolbar p,
.shop-toolbar form,
.shop-toolbar .woocommerce-ordering,
.shop-toolbar select {
width: 100%;
}
.shop-content .cards--products {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-auto-flow: row;
grid-auto-columns: auto;
gap: 14px;
overflow: visible;
overscroll-behavior: auto;
scroll-snap-type: none;
scrollbar-width: auto;
padding: 0;
}
.shop-content .cards--products > * {
min-width: 0;
width: 100%;
scroll-snap-align: unset;
}
.shop-content .product-meta .btn {
display: none;
}
.shop-filters {
right: 16px;
width: auto;
max-width: none;
border-right: 0;
padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
}
body.shop-filters-open .shop-filters {
display: grid;
transform: translateY(0);
}
.shop-filters__head {
position: sticky;
top: 0;
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 14px;
align-items: start;
padding-bottom: 14px;
margin-bottom: 4px;
background: rgba(255, 255, 255, 0.98);
}
.shop-filters__head::before {
display: none;
}
.shop-filters__title-wrap h2 {
margin-bottom: 6px;
}
.shop-filters__actions {
gap: 8px;
}
.shop-filters__close {
width: 36px;
height: 36px;
}
.shop-filters__reset {
min-height: 36px;
padding: 0 12px;
font-size: 0.82rem;
}
.shop-filters__body {
display: flex;
flex-direction: column;
margin-top: 0;
padding-right: 0;
}
.shop-filter-group {
border: 1px solid rgba(221, 225, 230, 0.94);
border-radius: 18px;
background: #fff;
overflow: hidden;
}
.shop-filter-group + .shop-filter-group {
margin-top: 12px;
}
.shop-filter-group__header {
margin: 0;
}
.shop-filter-group__title {
display: none;
}
.shop-filter-group__toggle {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
min-height: 20px;
padding: 0 16px;
border: 0;
background: transparent;
color: var(--graphite);
font-size: 0.98rem;
font-weight: 700;
text-align: left;
}
.shop-filter-group__toggle::after {
content: "";
width: 9px;
height: 9px;
border-right: 1.5px solid currentColor;
border-bottom: 1.5px solid currentColor;
transform: rotate(45deg);
transition: transform 0.22s ease;
}
.shop-filter-group.is-open .shop-filter-group__toggle::after {
transform: rotate(-135deg);
}
.shop-filter-group__body {
display: none;
padding: 0 14px 14px;
}
.shop-filter-group.is-open .shop-filter-group__body {
display: block;
}
.shop-filters .widget li {
margin-bottom: 6px;
}
.shop-filters .widget li a {
min-height: 42px;
padding: 0 12px;
border-radius: 12px;
background: #f6f7f8;
}
.shop-filters .widget_product_categories .children {
margin-top: 6px;
margin-left: 10px;
padding: 2px 0 0 10px;
}
.shop-filters .widget_product_categories .children li a {
min-height: 34px;
padding: 0 8px;
background: transparent;
}
.shop-price-presets {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
}
.shop-price-presets a {
min-height: 46px;
justify-content: center;
padding: 0 10px;
text-align: center;
border-radius: 14px;
}
}
@media (max-width: 560px) {
.shop-toolbar {
padding: 10px 12px;
border-radius: 16px;
}
.shop-mobile-bar {
gap: 8px;
}
.shop-active-filters__item,
.shop-active-filters__reset {
min-height: 34px;
font-size: 0.82rem;
}
.shop-filters {
padding-left: 14px;
padding-right: 14px;
}
.shop-filters__actions {
flex-wrap: wrap;
justify-content: flex-end;
}
.shop-price-presets {
grid-template-columns: 1fr;
}
.shop-delivery-times {
grid-template-columns: 1fr;
}
}
.pagination {
margin-top: 22px;
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.pagination a {
background: transparent;
border: 0;
border-radius: 999px;
padding: 8px 14px;
font-weight: 700;
color: var(--graphite-2);
}
.pagination a:hover {
border-color: transparent;
}
.pagination .is-current {
background: transparent;
color: var(--graphite);
border-color: transparent;
}
.product-section {
padding-top: 34px;
}
.product-layout {
display: grid;
grid-template-columns: 1.15fr 1fr;
gap: 20px;
align-items: start;
}
.product-gallery__viewport {
position: relative;
}
.product-gallery__main {
width: 100%;
aspect-ratio: 3 / 4;
max-height: 760px;
object-fit: contain;
object-position: center bottom;
background:
radial-gradient(circle at 50% 20%, #ffffff 0%, #f1f3f6 58%, #e8ebef 100%);
border: 1px solid var(--border);
padding: 16px;
border-radius: var(--radius-xl);
box-shadow: var(--shadow);
}
.product-gallery__nav {
position: absolute;
top: 50%;
z-index: 2;
width: 42px;
height: 42px;
display: inline-grid;
place-items: center;
border: 1px solid rgba(221, 225, 230, 0.96);
border-radius: 999px;
background: rgba(255, 255, 255, 0.92);
color: var(--graphite);
box-shadow: 0 10px 24px rgba(20, 25, 31, 0.08);
transform: translateY(-50%);
cursor: pointer;
transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-gallery__nav:hover {
background: #fff;
border-color: #d6dbe1;
box-shadow: 0 14px 30px rgba(20, 25, 31, 0.12);
}
.product-gallery__nav span {
display: block;
font-size: 1.6rem;
line-height: 1;
transform: translateY(-1px);
}
.product-gallery__nav--prev {
left: 14px;
}
.product-gallery__nav--next {
right: 14px;
}
.product-gallery__thumbs {
margin-top: 10px;
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 8px;
}
.thumb {
border: 1px solid var(--border);
background: #fff;
border-radius: var(--radius-sm);
padding: 4px;
cursor: pointer;
}
.thumb img {
width: 100%;
height: 96px;
object-fit: contain;
object-position: center bottom;
background: #f5f6f8;
border-radius: 6px;
}
.thumb.is-active {
border-color: var(--wood);
}
.product-info {
padding: 22px;
}
.product-info.card:hover {
transform: none;
box-shadow: var(--shadow);
}
.product-info__badges {
display: flex;
gap: 8px;
margin-bottom: 12px;
}
.product-info__badges .badge {
position: static;
}
.product-code {
font-size: 0.9rem;
color: #78808b;
margin-bottom: 8px;
}
.product-info h2,
.product-info__name {
margin-bottom: 10px;
font-size: clamp(1.7rem, 2.6vw, 2.2rem);
line-height: 1.2;
font-weight: 800;
color: var(--graphite);
}
.product-info p {
color: var(--text-soft);
}
.product-info .product-price {
margin-top: 16px;
display: flex;
align-items: center;
gap: 10px;
}
.product-info .product-price strong {
font-size: 2rem;
color: var(--graphite);
line-height: 1;
}
.product-info .product-price > span {
color: #8d95a0;
text-decoration: line-through;
}
.product-info .product-price strong del {
color: #8d95a0;
font-weight: 500;
margin-right: 8px;
}
.product-info .product-price strong del .woocommerce-Price-amount {
text-decoration: line-through;
}
.product-info .product-price strong ins {
text-decoration: none;
color: var(--graphite);
font-weight: 800;
}
.product-info .product-price strong ins .woocommerce-Price-amount {
text-decoration: none;
}
.product-points {
margin-top: 16px;
border-top: 1px solid var(--border);
padding-top: 14px;
}
.shop-archive-intro {
margin-top: 28px;
color: var(--graphite-2);
font-size: 1rem;
line-height: 1.7;
}
.shop-archive-intro > * + * {
margin-top: 14px;
}
.shop-archive-intro p {
margin: 0;
}
.shop-archive-intro a {
color: var(--graphite);
text-decoration: underline;
text-underline-offset: 3px;
}
.shop-archive-intro strong,
.shop-archive-intro b {
color: var(--graphite);
font-weight: 700;
}
.shop-archive-intro em,
.shop-archive-intro i {
font-style: italic;
}
.shop-archive-intro ul,
.shop-archive-intro ol {
margin: 0;
padding-left: 1.25rem;
}
.shop-archive-intro li + li {
margin-top: 8px;
}
.shop-archive-intro h2 {
margin: 0;
color: var(--graphite);
font-size: clamp(1.45rem, 2vw, 1.8rem);
line-height: 1.2;
}
.shop-archive-intro h2,
.shop-archive-intro h3 {
color: var(--graphite);
}
.shop-archive-intro h3 {
margin: 0;
font-size: 1.15rem;
line-height: 1.3;
}
.product-points li {
margin-bottom: 8px;
color: #3d454e;
}
.product-actions {
margin-top: 18px;
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.product-details {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}
.specs-table td {
border-bottom: 1px solid var(--border);
padding: 10px 0;
vertical-align: top;
}
.specs-table td:first-child {
color: #6f7782;
width: 44%;
}.reveal {
opacity: 0;
transition: opacity 0.32s ease;
}
.reveal.is-visible {
opacity: 1;
} @media (max-width: 1100px) {
.cards--categories {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards--products {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.woocommerce ul.products,
.woocommerce-page ul.products {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about {
grid-template-columns: 1fr;
}
.reviews {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-layout {
grid-template-columns: 1fr;
}
.product-gallery__main {
aspect-ratio: 4 / 5;
max-height: none;
}
.product-gallery__nav {
width: 38px;
height: 38px;
}
.product-details {
grid-template-columns: 1fr;
}
}
@media (max-width: 860px) {
.topbar {
display: none;
}
.section {
padding: 72px 0;
}
.hero__grid {
grid-template-columns: 1fr;
}
.header__inner {
display: grid;
grid-template-columns: auto minmax(0, 1fr) auto;
align-items: center;
gap: 12px;
}
.site-branding {
min-width: 0;
}
.menu-toggle {
display: inline-grid;
place-items: center;
width: 34px;
height: 34px;
border-radius: 8px;
justify-self: start;
}
.menu-toggle span {
width: 25px;
margin: 4px auto;
}
body.menu-open {
overflow: hidden;
}
.menu-toggle {
position: relative;
z-index: 141;
}
.nav {
position: fixed;
inset: 0 auto 0 0;
width: min(360px, calc(100vw - 44px));
height: 100vh;
display: grid;
grid-template-rows: auto auto 1fr auto;
gap: 20px;
align-items: start;
align-content: start;
background: rgba(255, 255, 255, 0.985);
border-right: 1px solid rgba(221, 225, 230, 0.92);
border-radius: 0 24px 24px 0;
box-shadow: 0 24px 52px rgba(20, 25, 31, 0.18);
padding: calc(var(--header-height) + 18px) 20px 24px;
overflow-y: auto;
opacity: 1;
pointer-events: none;
transform: translateX(calc(-100% - 24px));
transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
z-index: 130;
}
.header-search--desktop {
display: none;
}
.header-search--mobile {
display: block;
width: 100%;
}
.header-search--mobile .header-search__dropdown {
position: static;
margin-top: 10px;
padding: 0;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
}
.nav-backdrop {
display: block;
position: fixed;
inset: 0;
border: 0;
padding: 0;
background: rgba(20, 25, 31, 0.28);
opacity: 0;
pointer-events: none;
transition: opacity 0.24s ease;
z-index: 120;
}
.nav-backdrop.is-visible {
opacity: 1;
pointer-events: auto;
}
.nav.is-open {
pointer-events: auto;
transform: translateX(0);
overscroll-behavior: contain;
}
.nav__list {
display: grid;
gap: 4px;
width: 100%;
}
.nav__meta {
margin-top: 8px;
padding: 18px 16px 14px;
border: 1px solid rgba(221, 225, 230, 0.94);
border-radius: 18px;
background: linear-gradient(180deg, rgba(247, 248, 250, 0.98), rgba(242, 244, 247, 0.92));
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.72),
0 12px 28px rgba(20, 25, 31, 0.06);
display: grid;
gap: 14px;
width: 100%;
}
.nav__meta-languages {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.nav__meta-languages .language-switcher {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.nav__meta-languages .language-switcher a {
min-width: 34px;
min-height: 30px;
padding: 0 10px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(221, 225, 230, 0.94);
border-radius: 999px;
background: #fff;
color: var(--graphite-2);
font-size: 0.76rem;
font-weight: 700;
text-transform: uppercase;
}
.nav__meta-languages .language-switcher .is-current {
border-color: rgba(182, 147, 116, 0.34);
background: rgba(182, 147, 116, 0.08);
color: var(--graphite);
}
.nav__meta-contacts {
display: grid;
gap: 8px;
padding-top: 2px;
}
.nav__meta-link {
display: block;
color: var(--graphite);
font-size: 0.95rem;
line-height: 1.4;
}
.nav__meta-note {
padding-top: 2px;
color: #6d7681;
font-size: 0.84rem;
line-height: 1.45;
border-top: 1px solid rgba(221, 225, 230, 0.82);
padding-top: 12px;
}
.nav__list li {
width: 100%;
}
.nav__list a {
display: block;
min-width: 0;
padding: 12px 0;
font-size: 0.98rem;
}
.nav__list a::after {
display: none;
}
.nav__list a::before {
display: none;
}
.nav__list .menu-item-has-children > a::before {
display: none;
}
.nav__list .menu-item-has-children {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
column-gap: 10px;
align-items: center;
}
.nav__list .menu-item-has-children > a {
display: block;
padding-right: 0;
}
.nav__list .menu-item-has-children > a::after {
display: none;
}
.nav__submenu-toggle {
width: 34px;
height: 34px;
display: inline-grid;
place-items: center;
border: 1px solid rgba(221, 225, 230, 0.94);
border-radius: 10px;
background: #fff;
color: #7a8591;
transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.nav__submenu-toggle::before {
content: "";
width: 8px;
height: 8px;
border-top: 1.5px solid currentColor;
border-right: 1.5px solid currentColor;
transform: rotate(45deg);
transition: transform 0.22s ease;
}
.nav__list .menu-item-has-children.is-submenu-open > .nav__submenu-toggle {
border-color: rgba(182, 147, 116, 0.34);
background: rgba(182, 147, 116, 0.08);
color: var(--graphite);
}
.nav__list .menu-item-has-children.is-submenu-open > .nav__submenu-toggle::before {
transform: rotate(135deg);
}
.nav__list > .menu-item-has-children::before,
.nav__list .sub-menu .menu-item-has-children::before {
display: none;
}
.nav__list .sub-menu,
.nav__list .sub-menu .sub-menu {
position: static;
left: auto;
top: auto;
min-width: 0;
margin: 0;
padding: 4px 0 0 14px;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
backdrop-filter: none;
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: none;
display: none;
}
.nav__list .sub-menu::before,
.nav__list .sub-menu .sub-menu::before {
display: none;
}
.nav__list .menu-item-has-children.is-submenu-open > .sub-menu {
display: grid;
gap: 0;
}
.nav__list .sub-menu {
grid-column: 1 / -1;
border-left: 1px solid rgba(221, 225, 230, 0.82);
}
.nav__list .sub-menu a {
display: block;
padding: 10px 0;
border-radius: 0;
color: #5d6874;
white-space: normal;
}
.nav__list .sub-menu > li + li {
border-top: 1px solid rgba(239, 241, 243, 0.9);
}
.nav__list .sub-menu a::after,
.nav__list .sub-menu .menu-item-has-children > a::after {
display: none;
}
.nav__list .sub-menu a::before,
.nav__list .sub-menu .menu-item-has-children > a::before {
display: none;
}
.nav > .language-switcher {
justify-content: flex-start;
flex-wrap: wrap;
}
.nav__list > li:last-child:not(.menu-item-has-children) {
margin-top: 10px;
}
.nav__list > li:last-child:not(.menu-item-has-children) > a {
display: inline-flex;
width: 100%;
justify-content: center;
padding: 0 18px;
min-height: 46px;
}
.header-search__input {
min-height: 42px;
box-shadow: none;
}
.header-cart {
min-height: 38px;
padding: 0 10px;
}
.header-tools {
padding: 3px;
}
.header-account {
min-height: 38px;
padding-right: 10px;
}
.header-account__name {
max-width: 88px;
font-size: 0.84rem;
}
.header-cart__text,
.header-cart__total {
display: none;
}
.custom-logo {
max-height: 40px;
}
.promo__inner,
.cta__inner {
flex-direction: column;
align-items: flex-start;
}
.features,
.stats,
.reviews {
grid-template-columns: 1fr;
}
.shop-toolbar {
flex-direction: column;
align-items: flex-start;
}
}
@media (max-width: 560px) {
.header__inner {
gap: 8px;
}
.header-search__dropdown {
left: -4px;
right: -4px;
}
.menu-toggle {
width: 32px;
height: 32px;
}
.header-tools {
padding: 2px;
}
.header-account {
padding: 0 8px;
}
.header-account__name {
display: none;
}
.custom-logo {
max-height: 36px;
}
.cards--categories,
.cards--categories {
grid-template-columns: 1fr;
}
.woocommerce ul.products,
.woocommerce-page ul.products {
grid-template-columns: 1fr;
}
.cards--products {
grid-template-columns: none;
grid-auto-flow: column;
grid-auto-columns: minmax(78vw, 1fr);
gap: 14px;
overflow-x: auto;
overscroll-behavior-x: contain;
scroll-snap-type: x mandatory;
scrollbar-width: none;
padding: 2px 2px 8px;
}
.cards--products::-webkit-scrollbar {
display: none;
}
.cards--products > * {
scroll-snap-align: start;
}
.hero__media img {
min-height: 300px;
}
.hero-badges {
position: static;
width: 100%;
margin-top: 10px;
}
.footer__grid {
grid-template-columns: 1fr;
}
.product-gallery__thumbs {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation: none !important;
transition: none !important;
}
.reveal {
opacity: 1;
transform: none;
}
}.current-menu-item > a::after,
.current_page_item > a::after,
.current-menu-ancestor > a::after {
width: 100% !important;
}
.language-switcher {
display: inline-flex;
align-items: center;
gap: 6px;
}
.language-switcher a {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 32px;
min-height: 32px;
border: 1px solid var(--border);
border-radius: 999px;
padding: 0 10px;
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
color: var(--graphite-2);
background: #fff;
}
.language-switcher a.is-current {
border-color: var(--graphite);
background: var(--graphite);
color: #fff;
}
.site-main,
.woocommerce-notices-wrapper {
width: 100%;
}
.woocommerce-result-count {
margin: 0;
color: var(--text-soft);
}
.woocommerce-ordering {
margin: 0;
}
.woocommerce-ordering select {
min-height: 42px;
border-radius: 999px;
border: 1px solid var(--border);
background: #fff;
padding: 0 14px;
font-family: inherit;
color: var(--graphite);
}
.pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 40px;
min-width: 40px;
border: 1px solid var(--border);
border-radius: 999px;
background: transparent;
color: var(--graphite-2);
font-weight: 700;
padding: 0 14px;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
background: transparent;
color: var(--graphite);
border-color: var(--graphite);
}
.product-actions form.cart {
margin: 0;
display: inline-flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.product-actions .quantity input.qty {
min-height: 44px;
width: 78px;
border-radius: 999px;
border: 1px solid var(--border);
text-align: center;
font-family: inherit;
}
.product-actions .single_add_to_cart_button,
.product-actions .button {
min-height: 46px;
padding: 0 22px !important;
border-radius: 999px !important;
border: 0 !important;
background: var(--graphite) !important;
color: #fff !important;
font-weight: 700 !important;
cursor: pointer;
}
.product-actions .single_add_to_cart_button:hover,
.product-actions .button:hover {
background: #1d2126 !important;
}
.product-actions .single_add_to_cart_button.is-loading,
.product-actions .button.is-loading {
opacity: 0.72;
cursor: wait;
}
.tuktuk-description p + p {
margin-top: 10px;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
border-radius: var(--radius-md);
border: 1px solid var(--border);
background: #fff;
box-shadow: var(--shadow);
}
@media (max-width: 860px) {
.language-switcher {
justify-content: flex-start;
}
}.header-cart-wrap {
position: relative;
justify-self: end;
padding-bottom: 14px;
margin-bottom: -14px;
}
.header-cart-wrap::before {
content: "";
position: absolute;
left: 0;
top: 10px;
bottom: 24px;
width: 1px;
background: linear-gradient(180deg, transparent, #dde1e6 20%, #dde1e6 80%, transparent);
pointer-events: none;
}
.header-cart-wrap::after {
content: "";
position: absolute;
top: 100%;
right: 0;
width: 100%;
height: 14px;
}
.header-cart-dropdown {
position: absolute;
top: calc(100% + 8px);
right: 0;
width: min(380px, 85vw);
max-height: 72vh;
overflow: auto;
background: rgba(255, 255, 255, 0.985);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
box-shadow: 0 14px 30px rgba(20, 25, 31, 0.14);
padding: 12px 12px 10px;
opacity: 0;
transform: translateY(10px);
pointer-events: none;
transition: opacity 0.22s ease, transform 0.22s ease;
z-index: 120;
}
.header-cart-dropdown::before {
content: "";
position: absolute;
top: -7px;
right: 22px;
width: 12px;
height: 12px;
background: rgba(255, 255, 255, 0.96);
border-left: 1px solid var(--border);
border-top: 1px solid var(--border);
transform: rotate(45deg);
}
.header-cart-wrap:hover .header-cart-dropdown,
.header-cart-wrap:focus-within .header-cart-dropdown {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
.header-cart-dropdown .woocommerce-mini-cart {
margin: 0;
padding: 0;
list-style: none;
} .header-cart-dropdown .woocommerce-mini-cart-item {
display: grid;
grid-template-columns: 26px minmax(0, 1fr) auto;
grid-template-areas:
"remove main qty"
". vars qty";
column-gap: 10px;
row-gap: 4px;
align-items: start;
padding: 12px 0;
border-bottom: 1px solid #edf0f3;
}
.header-cart-dropdown .woocommerce-mini-cart-item .remove {
grid-area: remove;
position: static !important;
transform: none !important;
margin: 2px 0 0;
width: 22px;
height: 22px;
border-radius: 999px;
border: 1px solid #d7dde5;
background: #fff;
color: #738090 !important;
display: inline-flex !important;
align-items: center;
justify-content: center;
line-height: 1;
text-decoration: none !important;
transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.header-cart-dropdown .woocommerce-mini-cart-item .remove:hover {
color: #2c333a !important;
border-color: #bfc8d3;
background: #f7f9fb;
}
.header-cart-dropdown .woocommerce-mini-cart-item a:not(.remove) {
grid-area: main;
display: grid;
grid-template-columns: 52px minmax(0, 1fr);
align-items: center;
gap: 8px;
min-width: 0;
text-decoration: none;
color: var(--graphite);
font-weight: 700;
font-size: 0.9rem;
line-height: 1.35;
}
.header-cart-dropdown .woocommerce-mini-cart-item a:not(.remove) img {
width: 52px;
height: 68px;
object-fit: contain;
border-radius: 8px;
background: #f6f8fa;
}
.header-cart-dropdown .woocommerce-mini-cart-item .quantity {
grid-area: qty;
margin: 2px 0 0;
text-align: right;
white-space: nowrap;
font-weight: 700;
font-size: 0.88rem;
color: #4a5562;
}
.header-cart-dropdown .woocommerce-mini-cart-item .variation {
grid-area: vars;
margin: 0;
display: grid;
grid-template-columns: max-content minmax(0, 1fr);
column-gap: 6px;
row-gap: 2px;
min-width: 0;
}
.header-cart-dropdown .woocommerce-mini-cart-item .variation dt,
.header-cart-dropdown .woocommerce-mini-cart-item .variation dd {
float: none !important;
width: auto !important;
clear: none !important;
margin: 0;
padding: 0;
}
.header-cart-dropdown .woocommerce-mini-cart-item .variation dt {
color: #7b8794;
font-size: 0.74rem;
font-weight: 600;
white-space: nowrap;
}
.header-cart-dropdown .woocommerce-mini-cart-item .variation dd {
color: #3f4a57;
font-size: 0.78rem;
}
.header-cart-dropdown .woocommerce-mini-cart-item .variation dd p {
margin: 0;
}
.header-cart-dropdown .woocommerce-mini-cart-item:last-child {
border-bottom: 0;
}
.header-cart-dropdown .woocommerce-mini-cart__total.total {
display: flex;
justify-content: space-between;
align-items: center;
float: none;
width: auto;
text-align: left;
gap: 10px;
}
.header-cart-dropdown .woocommerce-mini-cart__buttons.buttons {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
padding: 10px 4px 4px;
}
.header-cart-dropdown .woocommerce-mini-cart__buttons.buttons .button {
min-height: 42px;
padding: 10px 30px !important;
}
.header-cart-dropdown .woocommerce-mini-cart__buttons.buttons .checkout {
background: var(--graphite) !important;
color: #fff !important;
border: 1px solid transparent !important;
box-shadow: 0 8px 18px rgba(38, 43, 49, 0.25);
}
.header-cart-dropdown .woocommerce-mini-cart__buttons.buttons .checkout:hover {
background: #1d2126 !important;
}
body {
position: relative;
min-width: 320px;
background: var(--bg);
}
body.menu-open {
overflow: hidden;
}
.site-branding {
display: flex;
align-items: center;
}
.custom-logo-link {
display: inline-flex;
align-items: center;
}
.custom-logo {
width: auto;
max-height: 52px;
}
.section-head--split {
display: flex;
align-items: end;
justify-content: space-between;
gap: 16px;
}
.hero {
padding-top: 34px;
}
.hero__surface {
position: relative;
overflow: hidden;
padding: clamp(24px, 4vw, 42px);
border: 1px solid rgba(255, 255, 255, 0.62);
border-radius: 34px;
background:
linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 240, 242, 0.88)),
linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
box-shadow: 0 16px 34px rgba(20, 25, 31, 0.07);
}
.hero__surface::before {
content: "";
position: absolute;
inset: auto auto -140px -110px;
width: 280px;
height: 280px;
border-radius: 999px;
background: radial-gradient(circle, rgba(182, 147, 116, 0.18), rgba(182, 147, 116, 0));
pointer-events: none;
}
.hero__content {
position: relative;
z-index: 1;
}
.hero__stats {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
margin-top: 24px;
}
.hero-stat {
padding: 16px 18px;
border: 1px solid rgba(38, 43, 49, 0.08);
border-radius: var(--radius-md);
background: rgba(255, 255, 255, 0.9);
}
.hero-stat strong {
display: block;
font-size: clamp(1.35rem, 2vw, 1.8rem);
color: var(--graphite);
}
.hero-stat span {
color: var(--text-soft);
font-size: 0.9rem;
}
.hero__media {
min-height: 100%;
}
.hero__media img {
width: 100%;
min-height: 520px;
background: linear-gradient(160deg, #e7eaee, #cfd5dc);
}
.hero__orb {
position: absolute;
border-radius: 999px;
pointer-events: none;
}
.hero__orb--top {
top: -24px;
right: 10%;
width: 150px;
height: 150px;
background: radial-gradient(circle, rgba(182, 147, 116, 0.28) 0%, rgba(182, 147, 116, 0.18) 28%, rgba(182, 147, 116, 0.08) 50%, rgba(182, 147, 116, 0) 78%);
}
.hero__orb--bottom {
left: -18px;
bottom: 20%;
width: 176px;
height: 176px;
background: radial-gradient(circle, rgba(38, 43, 49, 0.16) 0%, rgba(38, 43, 49, 0.1) 30%, rgba(38, 43, 49, 0.05) 52%, rgba(38, 43, 49, 0) 80%);
}
.category-card img {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
background: linear-gradient(160deg, #f1f3f5, #dfe5ea);
}
.category-card .card__body {
display: flex;
flex-direction: column;
min-height: 176px;
}
.product-card {
overflow: hidden;
}
.product-card::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(31, 35, 40, 0.03));
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.product-card:hover::before {
opacity: 1;
}
.promo__inner {
position: relative;
overflow: hidden;
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 24px;
padding: clamp(24px, 4vw, 36px);
background:
linear-gradient(135deg, #222a31 0%, #2f3740 52%, #212930 100%);
}
.promo__inner::after {
content: "";
position: absolute;
right: -70px;
bottom: -80px;
width: 240px;
height: 240px;
border-radius: 999px;
background: radial-gradient(circle, rgba(182, 147, 116, 0.22), transparent 65%);
}
.promo__copy,
.promo__media {
position: relative;
z-index: 1;
}
.promo__copy {
display: flex;
flex-direction: column;
justify-content: center;
gap: 18px;
}
.promo__text {
max-width: 40ch;
color: rgba(255, 255, 255, 0.82);
font-size: 0.98rem;
line-height: 1.7;
}
.promo__media img {
width: 100%;
min-height: 260px;
object-fit: cover;
border-radius: 22px;
box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}
.eyebrow--dark {
background: rgba(255, 255, 255, 0.12);
color: #fff;
}
.cta__inner {
background:
linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(238, 240, 242, 0.92));
}
.site-footer .custom-logo-link {
margin-bottom: 12px;
}
@media (max-width: 1100px) {
.hero__stats {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.promo__inner {
grid-template-columns: 1fr;
}
}
@media (max-width: 860px) {
.section-head--split {
flex-direction: column;
align-items: flex-start;
}
.header-cart-wrap {
padding-bottom: 0;
margin-bottom: 0;
}
.header-cart-wrap::before {
top: 8px;
bottom: 8px;
display: block;
}
.header-cart-wrap::after {
display: none;
}
.header-cart-dropdown {
top: calc(100% + 10px);
right: -4px;
width: min(360px, calc(100vw - 24px));
}
.header-cart-wrap:hover .header-cart-dropdown,
.header-cart-wrap:focus-within .header-cart-dropdown {
opacity: 0;
transform: translateY(10px);
pointer-events: none;
}
.header-cart-wrap.is-open .header-cart-dropdown,
.header-cart-wrap.is-open:hover .header-cart-dropdown,
.header-cart-wrap.is-open:focus-within .header-cart-dropdown {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
.hero__surface {
border-radius: 24px;
}
.hero__stats {
grid-template-columns: 1fr;
}
}
@media (max-width: 560px) {
.hero__media img {
min-height: 360px;
}
.promo__media img {
min-height: 220px;
}
}.trp-floating-switcher {
display: flex;
flex-direction: column-reverse;
position: fixed;
z-index: 99999;
overflow: hidden;
padding: var(--switcher-padding, 10px);
border: var(--border, none);
border-radius: var(--border-radius, 8px);
background: var(--bg, #fff);
width: var(--switcher-width, auto);
top: var(--top, unset);
right: var(--right, unset);
bottom: var(--bottom, unset);
left: var(--left, unset);
box-shadow: 0 10px 20px 0 #0000000D;
}
.trp-floating-switcher .trp-switcher-dropdown-list {
flex-direction: column-reverse;
}
.trp-switcher-position-top.trp-floating-switcher {
flex-direction: column;
top: var(--wp-admin--admin-bar--height, 0);
}
.trp-floating-switcher.trp-switcher-position-top:not(.trp-ls-inline) .trp-language-switcher-inner,
.trp-floating-switcher.trp-switcher-position-top .trp-switcher-dropdown-list {
flex-direction: column;
} nav.trp-ls-inline .trp-language-switcher-inner {
flex-direction: row;
}
.trp-ls-inline.trp-opposite-language .trp-language-item {
width: 100%;
} #trp-floater-powered-by {
color: var(--text, #b3b3b3);
font-size: 12px;
text-align: center;
padding: 0 5px;
opacity: 70%;
}
#trp-floater-powered-by a {
color: var(--text, #b3b3b3);
}
.trp-switcher-position-bottom #trp-floater-powered-by {
border-top: 1px solid var(--border-color, #747474);
padding-top: 5px;
margin-top: 5px;
}
.trp-switcher-position-top #trp-floater-powered-by {
border-bottom: 1px solid var(--border-color, #747474);
padding-bottom: 5px;
margin-bottom: 5px;
} .trp-shortcode-switcher__wrapper {
position: relative;
border: none;
}
.trp-shortcode-switcher {
position: static;
display: inline-block;
overflow: hidden;
padding: 10px 0;
border: var(--border, none);
border-radius: var(--border-radius, 5px);
background: var(--bg, #fff);
width: auto;
box-shadow: none;
} .trp-shortcode-anchor:not(.trp-opposite-button) {
visibility: hidden;
}
.trp-shortcode-switcher.trp-open-on-click {
cursor: pointer;
}
.trp-shortcode-overlay {
position: absolute;
left: 0;
top: 0;
z-index: 9999;
} .trp-current-language-item__wrapper:not(.trp-hide-arrow) {
display: flex;
align-items: center;
padding-right: 10px;
justify-content: space-between;
} .trp-language-switcher-inner {
display: flex;
}
.trp-floating-switcher .trp-language-switcher-inner {
flex-direction: column-reverse;
}
.trp-shortcode-switcher .trp-language-switcher-inner {
flex-direction: column;
}
.trp-switcher-dropdown-list {
display: flex;
overflow-y: hidden; transition: max-height 0.2s ease-in-out;
max-height: 0;
transition-duration: var(--transition-duration);
}
.trp-shortcode-switcher .trp-switcher-dropdown-list {
flex-direction: column;
} .trp-ls-dropdown.is-open .trp-switcher-dropdown-list,
.trp-ls-dropdown[aria-expanded="true"] .trp-switcher-dropdown-list,
.trp-shortcode-switcher.trp-open-on-hover.is-open .trp-switcher-dropdown-list,
.trp-shortcode-switcher[aria-expanded="true"] .trp-switcher-dropdown-list {
overflow-y: auto;
max-height: min(350px, 70vh);
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: var(--text) transparent;
}
.trp-ls-dropdown.is-transitioning .trp-switcher-dropdown-list,
.trp-shortcode-switcher.is-transitioning .trp-switcher-dropdown-list {
overflow-y: hidden !important;
}
.trp-shortcode-arrow {
pointer-events: none;
}
.trp-shortcode-switcher.is-open .trp-shortcode-arrow {
transform: rotate(180deg);
} .trp-language-item:focus { outline: none; }
.trp-language-item:focus-visible {
outline: 2px solid var(--text);
outline-offset: -2px;
} .trp-language-item {
display: flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
text-decoration: none;
min-height: 19px;
box-sizing: content-box;
}
.trp-language-item:hover {
background: var(--bg-hover, #f3f3f3);
}
.trp-language-item:hover .trp-language-item-name {
color: var(--text-hover, #000);
}
.trp-language-item__current {
pointer-events: none;
cursor: default;
}
.trp-language-item-name {
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: var(--text, #000);
font-size: var(--font-size, 14px);
line-height: 1.2;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
font-weight: 400;
}
.trp-flag-image {
border-radius: var(--flag-radius, 0) !important;
aspect-ratio: var(--aspect-ratio, 4/3) !important;
width: var(--flag-size, 18px) !important;
display: inline-block !important;
height: auto !important;
}
.trp-menu-ls-label .trp-flag-image {
margin: -2px 3px;
}
.trp-custom-flag {
object-fit: cover;
} .trp-switcher-dropdown-list::-webkit-scrollbar { width: 6px; }
.trp-switcher-dropdown-list::-webkit-scrollbar-track { background: transparent; }
.trp-switcher-dropdown-list::-webkit-scrollbar-thumb {
background-color: var(--text);
border-radius: 4px;
}
.trp-switcher-dropdown-list::-webkit-scrollbar-thumb:hover {
background-color: var(--text-hover);
} .trp-flag-rounded {
border-radius: 9999px !important;
aspect-ratio: 1 / 1 !important;
}
.trp-ls-name {
padding-left: 5px;
}
@media (prefers-reduced-motion: reduce) {
.trp-switcher-dropdown-list {
transition: none !important; }
} .trp_ald_ls_container img.trp-flag-image{
padding-top: 0 !important;
}
.trp_ald_ls_container .trp-language-switcher{
position: relative;
display: inline-block;
padding: 0;
border: 0;
box-sizing: border-box;
}
.trp_ald_ls_container .trp-language-switcher > div {
box-sizing: border-box;
padding-right: 20px;
padding-bottom: 3px;
padding-left: 13px;
border: 1px solid #c1c1c1;
border-radius: 3px;
background-color: #fff;
}
.trp_ald_ls_container .trp-language-switcher > div > a {
display: block;
padding: 2px;
border-radius: 3px;
color: rgb(7, 105, 173);
}
.trp_ald_ls_container .trp-language-switcher > div > a:hover {
background: #f1f1f1;
}
.trp_ald_ls_container .trp-language-switcher > div > a.trp-ls-shortcode-disabled-language {
cursor: default;
}
.trp_ald_ls_container .trp-language-switcher > div > a.trp-ls-shortcode-disabled-language:hover {
background: none;
}
.trp_ald_ls_container .trp-language-switcher > div > a > img{
display: inline;
margin: 0 3px;
width: 18px;
height: 12px;
border-radius: 0;
}
.trp_ald_ls_container .trp-language-switcher .trp-ls-shortcode-current-language{
display: inline-block;
}
.trp_ald_ls_container .trp-language-switcher:focus .trp-ls-shortcode-current-language,
.trp_ald_ls_container .trp-language-switcher:hover .trp-ls-shortcode-current-language{
visibility: hidden;
}
.trp_ald_ls_container .trp-language-switcher .trp-ls-shortcode-language{
display: inline-block;
height: 1px;
overflow: hidden;
visibility: hidden;
z-index: 1;
max-height: 250px;
overflow-y: auto;
left: 0;
top: 0;
min-height: auto;
}
.trp_ald_ls_container .trp-language-switcher:focus .trp-ls-shortcode-language,
.trp_ald_ls_container .trp-language-switcher:hover .trp-ls-shortcode-language{
visibility: visible;
max-height: 250px;
height: auto;
overflow-y: auto;
position: absolute;
left: 0;
top: 0;
display: inline-block !important;
min-height: auto;
}
#trp_ald_x_button{
z-index: 0 !important;
}