/* ===== Variables ===== */
:root {
  --color-bg: #0a0a0a;
  --color-bg-card: #141414;
  --color-bg-footer: #111111;
  --color-gold: #c9a227;
  --color-gold-hover: #dbb42e;
  --color-text: #ffffff;
  --color-text-muted: #a3a3a3;
  --color-border: rgba(255, 255, 255, 0.12);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --container: 1200px;
  --header-height: 72px;
  --radius: 12px;
  --radius-pill: 999px;
  --transition: 0.25s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

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

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--color-text);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: #000;
  border-bottom: 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-height);
  gap: 24px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold);
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-gold);
}

.site-header__logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: 72px;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  justify-content: center;
  justify-self: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  position: relative;
  display: block;
  padding: 6px 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: color var(--transition);
}

.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #c5a27d;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after,
.nav-menu > li.current-menu-ancestor > a::after,
.nav-menu > li.current-menu-parent > a::after,
.nav-menu > li.current_page_parent > a::after,
.nav-menu > li.current_page_ancestor > a::after,
.nav-menu > li.menu-item-has-children:hover > a::after,
.nav-menu > li.menu-item-has-children:focus-within > a::after,
.nav-menu > li.menu-item-has-children.is-open > a::after {
  transform: scaleX(1);
}

.nav-menu > li > a:hover {
  color: #fff;
}

/* Dropdown */
.nav-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
}

.nav-menu > li > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 4px;
  min-width: 230px;
  padding-top: 12px;
  background: rgba(42, 42, 42, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 120;
}

.nav-menu > li > .sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-menu > li.menu-item-has-children:hover > .sub-menu,
.nav-menu > li.menu-item-has-children:focus-within > .sub-menu,
.nav-menu > li.menu-item-has-children.is-hover > .sub-menu,
.nav-menu > li.menu-item-has-children.is-open > .sub-menu {
  display: flex;
}

.nav-menu .sub-menu li {
  position: relative;
}

.nav-menu .sub-menu li > a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  transition: background var(--transition), color var(--transition);
}

.nav-menu .sub-menu li > a:hover,
.nav-menu .sub-menu li.current-menu-item > a,
.nav-menu .sub-menu li.current-menu-ancestor > a,
.nav-menu .sub-menu li.is-hover > a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-menu .sub-menu li.menu-item-has-children > a {
  padding-right: 28px;
}

.nav-menu .sub-menu li.menu-item-has-children > a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  height: auto;
  width: auto;
  background: none;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  scale: 1;
}

/* Flyout cấp 2, 3, ... — cùng kiểu panel, mở sang phải */
.nav-menu .sub-menu li.menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  transform: none;
  min-width: 210px;
  padding-top: 8px;
  padding-left: 10px;
  background: rgba(42, 42, 42, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 130;
}

.nav-menu .sub-menu li.menu-item-has-children > .sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
}

.nav-menu .sub-menu li.menu-item-has-children:hover > .sub-menu,
.nav-menu .sub-menu li.menu-item-has-children:focus-within > .sub-menu,
.nav-menu .sub-menu li.menu-item-has-children.is-hover > .sub-menu,
.nav-menu .sub-menu li.menu-item-has-children.is-open > .sub-menu {
  display: flex;
  flex-direction: column;
}

.nav-menu .sub-menu .sub-menu li.menu-item-has-children > .sub-menu {
  z-index: 140;
}

.nav-menu .sub-menu .sub-menu .sub-menu li.menu-item-has-children > .sub-menu {
  z-index: 150;
}

.site-header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #fff;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.site-header__search:hover {
  background: #363636;
  color: #fff;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-height) + 24px) 24px 24px;
}

.site-search[hidden] {
  display: none;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.site-search__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 40px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.site-search__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  line-height: 1;
  transition: color var(--transition);
}

.site-search__close:hover {
  color: #fff;
}

.site-search__form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-search__input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 15px;
}

.site-search__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-search__input:focus {
  outline: none;
  border-color: #c5a27d;
}

.site-search__submit {
  flex-shrink: 0;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8c07a 0%, #c9a06a 100%);
  color: #1a1208;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
}

.site-search__submit:hover {
  background: linear-gradient(135deg, #efcb88 0%, #d4ad78 100%);
}

body.search-is-open {
  overflow: hidden;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  background: #000;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 32px;
  min-height: calc(100vh - var(--header-height));
}

.hero__content {
  max-width: 500px;
  margin-left: auto;
  padding: 80px 0;
  text-align: right;
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  color: #c59d7f;
  line-height: 1.2;
  margin: 0 0 24px;
}

.hero__desc {
  font-size: 15px;
  color: #fff;
  margin: 0 0 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.hero__btn--primary {
  background: linear-gradient(135deg, #e8c07a 0%, #c9a06a 100%);
  color: #1a1208;
}

.hero__btn--primary:hover {
  background: linear-gradient(135deg, #efcb88 0%, #d4ad78 100%);
  color: #1a1208;
}

.hero__btn--outline {
  border: 1px solid #c59d7f;
  color: #fff;
  background: transparent;
}

.hero__btn--outline:hover {
  border-color: #e8dcc8;
  color: #e8dcc8;
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
}

.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero__media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.75) 18%, rgba(0, 0, 0, 0.25) 45%, transparent 70%);
  pointer-events: none;
}

/* ===== Section Head ===== */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-head__title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-head__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ===== Products ===== */
.products {
  padding: 96px 0;
  background: #000;
}

.products__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.products__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #c59d7f;
  margin: 0 0 20px;
}

.products__desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.75;
  margin: 0 0 28px;
}

.products__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #e8c07a 0%, #c9a06a 100%);
  color: #1a1208;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.products__more:hover {
  background: linear-gradient(135deg, #efcb88 0%, #d4ad78 100%);
  color: #1a1208;
}

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

.product-card {
  border-radius: 24px;
  overflow: hidden;
}

.product-card__link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border: 1px solid transparent;
  border-radius: 24px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.product-card__media {
  position: absolute;
  inset: 0;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.88) 100%);
  transition: background var(--transition);
}

.product-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px 20px;
  transition: top var(--transition), bottom var(--transition), transform var(--transition);
}

.product-card__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #c59d7f;
  margin: 0 0 8px;
}

.product-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0;
}

.product-card__btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid #c59d7f;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), border-color var(--transition), color var(--transition);
  pointer-events: none;
}

.product-card__link:hover,
.product-card__link:focus-visible {
  border-color: rgba(232, 220, 200, 0.75);
}

.product-card__link:hover .product-card__overlay,
.product-card__link:focus-visible .product-card__overlay {
  background: rgba(0, 0, 0, 0.38);
}

.product-card__link:hover .product-card__media img,
.product-card__link:focus-visible .product-card__media img {
  transform: scale(1.03);
}

.product-card__link:hover .product-card__content,
.product-card__link:focus-visible .product-card__content {
  top: 24px;
  bottom: auto;
}

.product-card__link:hover .product-card__btn,
.product-card__link:focus-visible .product-card__btn {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Stats ===== */
.stats {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stats__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.stats__wrap {
  position: relative;
  z-index: 1;
}

.stats__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.stats__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #e8dcc8;
  line-height: 1.3;
  margin: 0;
}

.stats__intro p {
  margin: 0 0 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
}

.stats__more {
  font-size: 14px;
  font-weight: 500;
  color: #c59d7f;
  transition: color var(--transition);
}

.stats__more:hover {
  color: #e8dcc8;
}

.stats__body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.stats__image {
  border-radius: 20px;
  overflow: hidden;
}

.stats__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.stats__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats__item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  padding: 24px 28px;
  background: rgba(38, 38, 38, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: border-color var(--transition);
}

.stats__item.is-highlight,
.stats__item:hover {
  border-color: rgba(197, 157, 127, 0.55);
}

.stats__number {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #d4b78f;
  flex-shrink: 0;
  line-height: 1;
}

.stats__label {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

/* ===== Testimonials ===== */
.testimonials {
  position: relative;
  padding: 96px 0;
  background: #000;
  overflow: hidden;
}

.testimonials__pattern {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  pointer-events: none;
}

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

.testimonials__title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #e8dcc8;
  margin: 0 0 48px;
  line-height: 1.45;
}

.testimonials__slider {
  position: relative;
}

.testimonials .slider__track {
  gap: 20px;
}

.testimonials .slider__slide {
  flex: 0 0 calc((100% - 40px) / 3);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 260px;
  padding: 28px 24px;
  background: rgba(28, 28, 28, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.testimonial-card__stars {
  color: #e5b367;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card__quote {
  flex: 1;
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  margin: 0 0 28px;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 157, 127, 0.35), rgba(90, 70, 50, 0.65));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.testimonial-card__meta span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.testimonials__nav {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 28px;
}

.testimonials__arrow {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #c59d7f;
  font-size: 30px;
  line-height: 1;
}

.testimonials__arrow:hover {
  color: #e8dcc8;
}

.slider {
  position: relative;
}

.slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__slide {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
}

.slider__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 22px;
  color: var(--color-text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.slider__btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ===== Showroom ===== */
.showroom {
  padding: 0;
  background: #1c1c1c;
  margin-bottom: 25px;
}

.showroom__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1fr);
  align-items: stretch;
  min-height: 520px;
}

.showroom__gallery {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.showroom__slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.showroom__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.showroom__slide.is-active {
  opacity: 1;
}

.showroom__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.showroom__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: 64px 56px;
  background: #1c1c1c;
}

.showroom__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 28px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #d2a679;
  line-height: 1.15;
}

.showroom__title-line {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
}

.showroom__title-line--brand {
  font-size: clamp(34px, 3.8vw, 52px);
}

.showroom__desc {
  max-width: 420px;
  margin: 0;
  font-size: 15px;
  color: #fff;
  line-height: 1.75;
}

.showroom__nav {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.showroom__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d2a679;
  font-size: 30px;
  line-height: 1;
  transition: color var(--transition);
}

.showroom__arrow:hover {
  color: #e8dcc8;
}

/* ===== CTA Banner ===== */
.cta-banner {
  margin: 0 24px 96px;
}

.cta-banner__surface {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(197, 157, 127, 0.8);
  overflow: hidden;
  background-color: #1a1510;
  background-size: cover;
  background-position: center;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 44px 0;
}

.cta-banner__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  background: #e5b367;
  color: #1a1208;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.cta-banner__btn:hover {
  background: #efbe75;
  color: #1a1208;
}

/* ===== Footer ===== */
.site-footer {
  background: #000;
  padding: 72px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, 1fr) minmax(120px, 0.8fr);
  gap: 48px 40px;
  padding-bottom: 56px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 28px;
}

.site-footer__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 88px;
  max-height: 120px;
  object-fit: contain;
}

.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--color-text-muted);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__contact li {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.site-footer__contact a {
  color: #fff;
  transition: color var(--transition);
}

.site-footer__contact a:hover {
  color: var(--color-gold);
}

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

.footer-menu li + li {
  margin-top: 12px;
}

.footer-menu a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: color var(--transition);
}

.footer-menu a:hover {
  color: var(--color-gold);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color var(--transition), opacity var(--transition);
}

.site-footer__social a:hover {
  color: var(--color-gold);
}

.site-footer__bottom {
  padding: 0 0 40px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: right;
}

/* ===== About Page ===== */
.about-page {
  background: #000;
}

.about-page .cta-banner {
  margin-top: 0;
}

.about-hero {
  padding: 64px 0 56px;
  background: #000;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

.about-hero__image {
  overflow: hidden;
  border-radius: 0;
}

.about-hero__image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 0;
}

.about-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  color: #c59d7f;
  margin-bottom: 28px;
  line-height: 1.35;
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-hero__text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-hero__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.about-hero__stat-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: #c59d7f;
  line-height: 1;
  flex-shrink: 0;
}

.about-hero__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.about-split {
  padding: 0;
  background: #000;
}

.about-split:nth-of-type(even) {
  background: #000;
}

.about-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about-split--image-left .about-split__image {
  order: -1;
}

.about-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 96px) clamp(32px, 5vw, 72px);
}

.about-split--text-left .about-split__content {
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
}

.about-split--image-left .about-split__content {
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.about-split__title {
  font-size: clamp(28px, 3vw, 40px);
  color: #c59d7f;
  margin-bottom: 28px;
}

.about-split__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-split__text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.about-split__image {
  overflow: hidden;
  border-radius: 0;
  min-height: 480px;
}

.about-split__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 0;
}

.about-partners {
  position: relative;
  padding: 96px 0;
  background: #000;
  overflow: hidden;
}

.about-partners__pattern {
  position: absolute;
  inset: 0;
  background-color: #000;
  background-image: url("../images/partner_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.about-partners .container {
  position: relative;
  z-index: 1;
}

.about-partners__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.about-partners__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #e8dcc8;
  line-height: 1.25;
}

.about-partners__title-line {
  display: block;
}

.about-partners__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 8px;
}

.about-partners__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1;
  transition: border-color var(--transition), color var(--transition);
}

.about-partners__arrow:hover {
  border-color: #c59d7f;
  color: #c59d7f;
}

.about-partners__card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 48px;
  overflow: hidden;
}

.about-partners__card--empty {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.about-partners__card--empty code {
  font-size: 13px;
  color: #333;
}

.about-partners__pages {
  position: relative;
}

.about-partners__page {
  display: none;
}

.about-partners__page.is-active {
  display: block;
}

.about-partners__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 180px);
  gap: 24px 20px;
}

.about-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 12px 16px;
}

.about-partners__logo img {
  display: block;
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.about-showroom {
  padding: 96px 0;
  background: #000;
}

.about-showroom__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.about-showroom__title {
  font-size: clamp(28px, 3vw, 40px);
  color: #c59d7f;
  flex-shrink: 0;
}

.about-showroom__addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-showroom__address strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.about-showroom__address p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.about-showroom__gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-showroom__nav {
  display: flex;
  gap: 12px;
}

.about-showroom__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c59d7f;
  font-size: 28px;
  line-height: 1;
  transition: color var(--transition), opacity var(--transition);
}

.about-showroom__arrow:hover {
  color: #e8dcc8;
}

.about-showroom__viewport {
  overflow: hidden;
}

.about-showroom__track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.about-showroom__slide {
  flex: 0 0 calc((100% - 48px) / 4);
  overflow: hidden;
  transition: opacity 0.45s ease;
}

.about-showroom__slide.is-dimmed {
  opacity: 0.45;
}

.about-showroom__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

/* ===== News Page ===== */
.news-page {
  padding: 48px 0 96px;
}

.news-tag {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 12px;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
}

.news-featured {
  margin-bottom: 48px;
  border-radius: 24px;
  overflow: hidden;
}

.news-featured__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  color: inherit;
}

.news-featured__image {
  min-height: 100%;
}

.news-featured__image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.news-featured__body {
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1c1c1c;
}

.news-tag--featured,
.news-featured .news-tag {
  align-self: flex-start;
  padding: 6px 14px;
  margin-bottom: 20px;
  border-radius: var(--radius-pill);
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.news-featured__title {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.news-featured__date {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.news-card__date {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.news-featured__excerpt {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 28px;
}

.news-featured__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #c09578;
}

.news-featured__more-text {
  border-bottom: 1px solid #c09578;
  padding-bottom: 2px;
}

.news-featured__link:hover .news-featured__more {
  color: #d4ad8f;
}

.news-featured__link:hover .news-featured__more-text {
  border-bottom-color: #d4ad8f;
}

.news-card__more {
  font-size: 14px;
  color: #c09578;
  font-weight: 500;
}

.news-card:hover .news-card__more {
  color: #d4ad8f;
}

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding: 14px 20px;
  background: #1a1a1a;
  border-radius: 16px;
  flex-wrap: wrap;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.news-filters__item {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  transition: color var(--transition), border-color var(--transition);
}

.news-filters__item:hover {
  color: rgba(255, 255, 255, 0.72);
}

.news-filters__item.is-active {
  color: #c09578;
  border-color: #c09578;
  background: transparent;
}

.news-search {
  position: relative;
  flex-shrink: 0;
  width: min(100%, 280px);
  min-width: 200px;
  border: none;
  border-radius: var(--radius-pill);
  background: #2a2a2a;
}

.news-search__input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
  outline: none;
}

.news-search__input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.news-search__btn {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.news-search__btn:hover {
  color: rgba(255, 255, 255, 0.75);
}

.news-search-results {
  margin-bottom: 24px;
}

.news-search-results__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
}

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

.news-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.news-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-3px);
}

.news-card__link {
  display: block;
  color: inherit;
}

.news-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card__body {
  padding: 20px;
}

.news-card__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
}

.news-card__excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.news-load-more__btn {
  min-width: 280px;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-color: #c09578;
  color: #c09578;
}

.news-load-more__btn:hover {
  border-color: #d4ad8f;
  color: #d4ad8f;
  background: rgba(192, 149, 120, 0.12);
}

.news-load-more__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.news-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: 48px 0;
}

/* ===== News Single ===== */
.news-single {
  padding: 48px 0 96px;
  background: #f7f7f5;
}

.news-single__layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.news-single__article {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  color: #1a1a1a;
}

.news-tag--light {
  background: #c0392b;
  color: #fff;
}

.news-single__title {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  margin: 12px 0 10px;
  line-height: 1.35;
  color: #111;
}

.news-single__date {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}

.news-single__image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}

.news-single__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-single__content {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

.news-single__content p {
  margin-bottom: 18px;
}

.news-single__content ul,
.news-single__content ol {
  margin: 0 0 18px 20px;
  padding: 0;
  list-style: disc;
}

.news-single__content li {
  margin-bottom: 8px;
}

.news-single__content h2,
.news-single__content h3 {
  font-family: var(--font-sans);
  color: #111;
  margin: 28px 0 12px;
}

.news-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
}

.news-share__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
}

.news-share__icons {
  display: flex;
  gap: 12px;
}

.news-share__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #555;
  transition: background var(--transition), color var(--transition);
}

.news-share__icons a:hover {
  background: #1a1a1a;
  color: #fff;
}

.news-single__sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.news-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-sidebar__link {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 15px;
  color: #666;
  border-left: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.news-sidebar__link:hover {
  color: #111;
}

.news-sidebar__link.is-active {
  color: #111;
  font-weight: 600;
  border-left-color: #e67e22;
}

.news-recent {
  padding-top: 16px;
}

.news-recent__title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 32px;
}

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

.news-card--light {
  background: #fff;
  border: 1px solid #e8e8e8;
}

.news-card--light .news-card__title {
  color: #111;
}

.news-card--light .news-card__date,
.news-card--light .news-card__excerpt {
  color: #888;
}

.news-card--light .news-card__more {
  color: #666;
}

.news-card--light:hover {
  border-color: #d0d0d0;
  transform: translateY(-3px);
}

/* ===== Contact Page ===== */
.contact-showroom {
  position: relative;
  background: #000;
}

.contact-showroom__stage {
  position: relative;
  padding: 72px 0 0;
  overflow: hidden;
}

.contact-showroom__stage-inner {
  container-type: inline-size;
  position: relative;
  z-index: 1;
}

.contact-showroom__pattern {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: calc(100% - min(calc(100vw - 48px), var(--container)) * 9 / 42);
  transform: translateX(-50%);
  background-color: #120f0c;
  background-image: url("../images/bg2.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-showroom__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px 64px;
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.contact-showroom__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #c09578;
  line-height: 1.2;
  margin: 0;
}

.contact-showroom__title-line {
  display: block;
}

.contact-showroom__addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-showroom__address strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #c09578;
}

.contact-showroom__address p {
  font-size: 14px;
  color: rgba(192, 149, 120, 0.82);
  line-height: 1.75;
  margin-bottom: 6px;
}

.contact-showroom__address a {
  color: inherit;
  transition: color var(--transition);
}

.contact-showroom__address a:hover {
  color: #d4ad8f;
}

.contact-showroom__featured {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-showroom__featured img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.contact-showroom__gallery-wrap {
  position: relative;
  z-index: 1;
  padding: 12px 0 80px;
  background: #000;
}

.contact-showroom__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.contact-showroom__thumb {
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.contact-showroom__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background var(--transition);
  pointer-events: none;
}

.contact-showroom__thumb.is-active::after {
  background: rgba(0, 0, 0, 0.48);
}

.contact-showroom__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-showroom__nav {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.contact-showroom__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}

.contact-showroom__arrow:hover {
  color: #c09578;
}

.contact-form {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}

.contact-form__media {
  position: absolute;
  inset: 0;
  background-color: #1a1510;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-form__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.contact-form__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.contact-form__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: #c09578;
  margin-bottom: 16px;
  line-height: 1.35;
}

.contact-form__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form__field label {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  border: 0;
  border-radius: 10px;
  outline: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(192, 149, 120, 0.35);
}

.contact-form__field textarea {
  resize: none;
  min-height: 52px;
  height: 52px;
  line-height: 1.4;
}

.contact-form__submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid #c09578;
  border-radius: 10px;
  background: transparent;
  color: #c09578;
  font-size: 14px;
  font-weight: 500;
}

.contact-form__submit:hover {
  background: rgba(192, 149, 120, 0.12);
  color: #d4ad8f;
  border-color: #d4ad8f;
}

.contact-form__fallback {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form__fallback p {
  margin: 0;
}

.contact-form__status {
  font-size: 14px;
  text-align: center;
  margin-top: 4px;
}

.contact-form__status.is-success {
  color: #6fcf97;
}

.contact-form__status.is-error {
  color: #eb5757;
}

/* Contact Form 7 */
.contact-form__form--cf7 .wpcf7 {
  width: 100%;
}

.contact-form__form--cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form__form--cf7 .wpcf7-form p {
  margin: 0;
}

.contact-form__form--cf7 .wpcf7-form label {
  display: block;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.contact-form__form--cf7 .wpcf7-form label br {
  display: none;
}

.contact-form__form--cf7 .wpcf7-form-control-wrap {
  display: block;
  font-size: 15px;
  line-height: 1.4;
}

.contact-form__form--cf7 .wpcf7-text,
.contact-form__form--cf7 .wpcf7-email,
.contact-form__form--cf7 .wpcf7-tel,
.contact-form__form--cf7 .wpcf7-textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  border: 0;
  border-radius: 10px;
  outline: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.contact-form__form--cf7 .wpcf7-text::placeholder,
.contact-form__form--cf7 .wpcf7-email::placeholder,
.contact-form__form--cf7 .wpcf7-tel::placeholder,
.contact-form__form--cf7 .wpcf7-textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form__form--cf7 .wpcf7-text:focus,
.contact-form__form--cf7 .wpcf7-email:focus,
.contact-form__form--cf7 .wpcf7-tel:focus,
.contact-form__form--cf7 .wpcf7-textarea:focus {
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(192, 149, 120, 0.35);
}

.contact-form__form--cf7 .wpcf7-textarea {
  resize: none;
  min-height: 52px;
  height: 52px;
  line-height: 1.4;
}

.contact-form__form--cf7 .wpcf7-submit,
.contact-form__form--cf7 input[type="submit"].contact-form__submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid #c09578;
  border-radius: 10px;
  background: transparent;
  color: #c09578;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.contact-form__form--cf7 .wpcf7-submit:hover,
.contact-form__form--cf7 input[type="submit"].contact-form__submit:hover {
  background: rgba(192, 149, 120, 0.12);
  color: #d4ad8f;
  border-color: #d4ad8f;
}

.contact-form__form--cf7 .wpcf7-spinner {
  display: none;
}

.contact-form__form--cf7 .hidden-fields-container,
.contact-form__form--cf7 fieldset.hidden-fields-container {
  display: none;
}

.contact-form__form--cf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.contact-form__form--cf7 .wpcf7-response-output {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form__form--cf7 .wpcf7-form > p:empty {
  display: none;
}

.contact-form__form--cf7 .wpcf7 form.sent .wpcf7-response-output,
.contact-form__form--cf7 .wpcf7 form.invalid .wpcf7-response-output,
.contact-form__form--cf7 .wpcf7 form.failed .wpcf7-response-output,
.contact-form__form--cf7 .wpcf7 form.aborted .wpcf7-response-output,
.contact-form__form--cf7 .wpcf7 form.spam .wpcf7-response-output,
.contact-form__form--cf7 .wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.contact-form__form--cf7 .wpcf7 form.sent .wpcf7-response-output {
  color: #6fcf97;
  border-color: rgba(111, 207, 151, 0.3);
  background: rgba(111, 207, 151, 0.08);
}

.contact-form__form--cf7 .wpcf7 form.invalid .wpcf7-response-output,
.contact-form__form--cf7 .wpcf7 form.failed .wpcf7-response-output,
.contact-form__form--cf7 .wpcf7 form.aborted .wpcf7-response-output {
  color: #eb5757;
  border-color: rgba(235, 87, 87, 0.3);
  background: rgba(235, 87, 87, 0.08);
}

.contact-form__form--cf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #eb5757;
  margin-top: 4px;
}

.contact-form__notice.is-error {
  color: #eb5757;
  font-size: 14px;
}

/* ===== Products Page ===== */
.products-page .cta-banner {
  margin-top: 0;
}

.products-hero {
  position: relative;
  min-height: clamp(480px, 65vh, 720px);
  display: flex;
  align-items: flex-start;
  background-color: #0a0a0a;
  background-image: url("../images/product_bg.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.products-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.82) 30%,
    rgba(0, 0, 0, 0.45) 52%,
    rgba(0, 0, 0, 0.15) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.products-hero__content {
  position: relative;
  z-index: 1;
  /* width: min(100%, 520px); */
  padding: clamp(72px, 10vw, 128px) 0 clamp(64px, 8vw, 96px);
  text-align: left;
}

.products-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
  color: #c5a27d;
  margin-bottom: 16px;
}

.products-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #c5a27d;
  line-height: 1.15;
  margin-bottom: 24px;
}

.products-hero__desc {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: #fff;
  line-height: 1.75;
  max-width: 480px;
}

.products-cats {
  padding: 96px 0;
  background: #000;
}

.products-cats__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.products-cats__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #c59d7f;
  margin: 0 0 20px;
}

.products-cats__desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.75;
  margin: 0;
}

.products-cats__empty {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-muted);
}

.products-cats__empty a {
  color: var(--color-gold);
}

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

.products-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.products-section-head__title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--color-gold);
  margin-bottom: 10px;
}

.products-section-head__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.products-tea {
  padding: 96px 0;
  background: #000;
}

.products-tea__head {
  margin-bottom: 40px;
}

.products-tea__title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.products-tea__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.products-tea__desc {
  flex: 1;
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.products-tea__detail-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.products-tea__detail-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.products-tea__track .slider__slide {
  flex: 0 0 calc(25% - 15px);
}

.products-tea__card {
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
}

.products-tea__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.products-tea__image {
  overflow: hidden;
}

.products-tea__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.products-tea__card:hover .products-tea__image img {
  transform: scale(1.04);
}

.products-tea__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 20px 28px;
  background: #1e1e1e;
  text-align: center;
}

.products-tea__name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.products-tea__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #e8c07a 0%, #c9a06a 100%);
  color: #1a1208;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background var(--transition);
}

.products-tea__link:hover .products-tea__cta {
  background: linear-gradient(135deg, #efcb88 0%, #d4ad78 100%);
}

.products-tea__controls {
  margin-top: 28px;
}

.products-gift {
  padding: 0;
  background: #000;
}

.products-gift__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(420px, 50vw, 560px);
}

.products-gift__media {
  position: relative;
  min-height: 100%;
}

.products-gift__slider {
  height: 100%;
}

.products-gift__track {
  height: 100%;
}

.products-gift__track .slider__slide {
  flex: 0 0 100%;
  height: 100%;
}

.products-gift__slide {
  height: 100%;
}

.products-gift__slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 50vw, 560px);
  object-fit: cover;
}

.products-gift__controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.products-gift__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c07a 0%, #c9a06a 100%);
  color: #1a1208;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.products-gift__arrow:hover {
  background: linear-gradient(135deg, #efcb88 0%, #d4ad78 100%);
  transform: translateY(-1px);
}

.products-gift__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px);
  background: #1a1a1a;
}

.products-gift__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #c59d7f;
  margin: 0 0 24px;
}

.products-gift__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 520px;
}

.products-gift__detail-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.products-gift__detail-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.products-teaware {
  padding: 96px 0;
  background: #000;
}

.products-teaware__layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.products-teaware__intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.products-teaware__title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.products-teaware__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0 0 28px;
}

.products-teaware__detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: border-color var(--transition), background var(--transition);
}

.products-teaware__detail-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.products-teaware__item {
  border-radius: 18px;
  overflow: hidden;
  background: #1e1e1e;
  transition: transform var(--transition);
}

.products-teaware__item:hover {
  transform: translateY(-2px);
}

.products-teaware__link {
  display: flex;
  align-items: stretch;
  min-height: 112px;
  color: inherit;
}

.products-teaware__thumb {
  flex: 0 0 42%;
  overflow: hidden;
}

.products-teaware__thumb img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.products-teaware__item:hover .products-teaware__thumb img {
  transform: scale(1.04);
}

.products-teaware__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 14px;
  background: #1e1e1e;
  text-align: center;
}

.products-teaware__name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

.products-teaware__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #e8c07a 0%, #c9a06a 100%);
  color: #1a1208;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background var(--transition);
}

.products-teaware__link:hover .products-teaware__cta {
  background: linear-gradient(135deg, #efcb88 0%, #d4ad78 100%);
}

.products-art {
  padding: 96px 0 80px;
  background: #000;
}

.products-art__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.products-art__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #c59d7f;
  margin: 0 0 20px;
}

.products-art__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0 0 28px;
}

.products-art__detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: border-color var(--transition), background var(--transition);
}

.products-art__detail-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.products-art__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.products-art__card {
  border-radius: 20px;
  overflow: hidden;
  background: #1e1e1e;
  transition: transform var(--transition);
}

.products-art__card:hover {
  transform: translateY(-4px);
}

.products-art__link {
  display: block;
  color: inherit;
}

.products-art__image {
  overflow: hidden;
}

.products-art__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.products-art__card:hover .products-art__image img {
  transform: scale(1.04);
}

.products-art__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: #1e1e1e;
}

.products-art__name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

.products-art__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #e8c07a 0%, #c9a06a 100%);
  color: #1a1208;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background var(--transition);
}

.products-art__link:hover .products-art__cta {
  background: linear-gradient(135deg, #efcb88 0%, #d4ad78 100%);
}

/* ===== Product Detail ===== */
.product-detail {
  padding: 40px 0 64px;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery__featured {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-gallery__featured img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-gallery__thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.65;
  transition: border-color var(--transition), opacity var(--transition);
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  border-color: var(--color-gold);
  opacity: 1;
}

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

.product-gallery__nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.product-gallery__nav:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.14);
}

.product-summary__title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.product-summary__updated {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.product-summary__price {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.product-summary__price del {
  color: var(--color-text-muted);
  font-size: 18px;
  font-weight: 400;
}

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

.product-summary__excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.product-summary__excerpt p + p {
  margin-top: 12px;
}

.product-summary__specs-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 14px;
}

.product-specs tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.04);
}

.product-specs tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.08);
}

.product-specs th,
.product-specs td {
  padding: 12px 16px;
  text-align: left;
}

.product-specs th {
  width: 40%;
  font-weight: 500;
  color: var(--color-text-muted);
}

.product-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-summary__cart {
  margin: 0;
}

.product-summary__buy,
.product-summary__contact {
  min-width: 160px;
}

.product-summary__buy.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.product-tabs-section {
  padding: 0 0 80px;
}

.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.product-tabs__btn {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}

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

.product-tabs__content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.product-tabs__content p + p,
.product-tabs__content ul {
  margin-top: 12px;
}

.product-tabs__content ul {
  padding-left: 20px;
  list-style: disc;
}

.product-tabs__reviews .commentlist {
  list-style: none;
  padding: 0;
}

.product-tabs__reviews .comment {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.product-tabs__reviews .comment-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.product-tabs__reviews .comment-form input,
.product-tabs__reviews .comment-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.product-tabs__reviews .stars a {
  color: var(--color-gold);
}

.product-recent {
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 50%),
    var(--color-bg-card);
  border-top: 1px solid var(--color-border);
}

.product-recent__title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

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

/* ===== Shop / Category ===== */
.shop-search-hero {
  padding: 72px 0 48px;
  background: #000;
}

.shop-search-hero__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
  color: #e8dcc8;
}

.shop-search-hero__desc {
  margin: 0 0 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.shop-search-hero__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 560px;
}

.shop-search-hero__input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #141414;
  color: #fff;
  font-size: 15px;
}

.shop-search-hero__input:focus {
  outline: none;
  border-color: #c5a27d;
}

.shop-hero {
  position: relative;
  min-height: clamp(360px, 45vw, 520px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background-color: #0a0a0a;
}

.shop-hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shop-hero__media-blur,
.shop-hero__media-image {
  position: absolute;
  display: block;
}

.shop-hero__media-blur {
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  object-position: right center;
  filter: blur(32px) saturate(1.08);
  transform: scale(1.05);
  opacity: 0.9;
}

.shop-hero__media-image {
  right: 0;
  top: 0;
  width: min(62%, 760px);
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.shop-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.82) 30%,
      rgba(0, 0, 0, 0.45) 52%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.shop-hero__content {
  position: relative;
  z-index: 2;
  /* width: min(100%, 560px); */
  padding: clamp(64px, 8vw, 112px) 0 clamp(56px, 7vw, 96px);
  text-align: left;
}

.shop-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #c5a27d;
  line-height: 1.15;
  margin: 0 0 20px;
}

.shop-hero__desc {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: #fff;
  line-height: 1.75;
  max-width: 480px;
  margin: 0;
}

.shop-toolbar-section {
  padding: 32px 0 0;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  padding: 12px 16px 12px 20px;
  background: #1a1a1a;
  border: none;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.shop-toolbar__cats-wrapper {
  flex: 1 1 0%;
  min-width: 0;
  position: relative;
}
.shop-toolbar__cats-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, transparent, #1a1a1a);
  z-index: 1;
}

.shop-toolbar__cats-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shop-toolbar__cats-scroll::-webkit-scrollbar {
  display: none;
}

/* Custom scrollbar on desktop for visual indication and scroll control */
@media (hover: hover) {
  .shop-toolbar__cats-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  }
  .shop-toolbar__cats-scroll::-webkit-scrollbar {
    display: block;
    height: 4px;
  }
  .shop-toolbar__cats-scroll::-webkit-scrollbar-track {
    background: transparent;
  }
  .shop-toolbar__cats-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
  }
  .shop-toolbar__cats-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}

.shop-toolbar__cats {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding: 4px 40px 4px 0;
}

.shop-toolbar__cat {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: color var(--transition), border-color var(--transition);
}

.shop-toolbar__cat:hover {
  color: #c5a27d;
}

.shop-toolbar__cat.is-active {
  color: #c5a27d;
  border-color: #c5a27d;
  background: transparent;
}

.shop-toolbar__dropdowns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.shop-toolbar__select {
  appearance: none;
  min-width: 160px;
  padding: 10px 40px 10px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #d4d4d4;
  background-color: #333;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%23a3a3a3' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: background-color var(--transition);
}

.shop-toolbar__select:hover,
.shop-toolbar__select:focus {
  background-color: #3d3d3d;
  outline: none;
}

.shop-grid-section {
  padding: 32px 0 96px;
}

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

.shop-grid ul.products {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.shop-product-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-3px);
}

.shop-product-card__link {
  display: block;
  color: inherit;
}

.shop-product-card__image {
  position: relative;
  overflow: hidden;
}

.shop-product-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.shop-product-card__arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.shop-product-card__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
}

.shop-product-card__tag.is-out {
  background: #c0392b;
}

.shop-product-card__body {
  padding: 16px;
}

.shop-product-card__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.shop-product-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.shop-product-card__details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.shop-product-card__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

.shop-product-card__price del {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 12px;
}

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

.shop-load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.shop-load-more__btn {
  min-width: 280px;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.shop-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: 48px 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== FAQ ===== */
.faq-page {
  background: #fff;
}

.faq-hero {
  position: relative;
  padding: clamp(72px, 10vw, 104px) 0 clamp(64px, 8vw, 96px);
  background: #120f0c;
  overflow: hidden;
}

.faq-hero__pattern {
  position: absolute;
  inset: 0;
  background-color: #120f0c;
  background-image: url("../images/bg2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}

.faq-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #d4a88a;
  line-height: 1.3;
  margin: 0 0 clamp(28px, 4vw, 40px);
}

.faq-hero__search {
  display: flex;
  align-items: center;
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 6px 18px 6px 28px;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
}

.faq-hero__search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: #e8dcc8;
  outline: none;
  padding: 10px 12px 10px 0;
}

.faq-hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.faq-hero__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-hero__search-btn:hover {
  color: #fff;
}

.faq-hero__search-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.faq-hero__search-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.faq-main {
  padding: 56px 0 96px;
  background: #fff;
}

.faq-main__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.faq-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-sidebar__item-wrap.is-hidden {
  display: none;
}

.faq-sidebar__item {
  display: block;
  width: 100%;
  padding: 14px 16px 14px 20px;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: #888;
  border-left: 4px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.faq-sidebar__item:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.02);
}

.faq-sidebar__item.is-active {
  color: #111;
  font-weight: 600;
  border-left-color: var(--color-gold);
  background: rgba(201, 162, 39, 0.06);
}

.faq-content {
  min-height: 320px;
}

.faq-panel__title {
  font-size: clamp(24px, 3vw, 32px);
  color: #111;
  margin-bottom: 12px;
}

.faq-panel__updated {
  font-size: 13px;
  color: #999;
  margin-bottom: 28px;
}

.faq-panel__body {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
}

.faq-panel__body p + p {
  margin-top: 14px;
}

.faq-empty {
  font-size: 15px;
  color: #888;
  text-align: center;
  padding: 48px 0;
}

.faq-empty--page {
  text-align: center;
  padding: 64px 0;
}

.faq-empty--page a {
  color: var(--color-gold);
  text-decoration: underline;
}

/* ===== Page content ===== */
.page-content {
  padding: 80px 0;
}

.page-content h1 {
  font-size: 36px;
  margin-bottom: 24px;
}

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

  .testimonials .slider__slide {
    flex: 0 0 calc(50% - 10px);
  }

  .slider__slide {
    flex: 0 0 calc(50% - 10px);
  }

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

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

  .contact-form__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .products-tea__track .slider__slide {
    flex: 0 0 calc(50% - 10px);
  }

  .products-teaware__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-teaware__intro {
    position: static;
  }

  .products-teaware__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .product-detail__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .faq-main__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-sidebar {
    position: static;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    max-width: none;
    margin-left: 0;
    padding: 64px 0 32px;
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__media {
    min-height: 360px;
  }

  .hero__media img {
    min-height: 360px;
  }

  .hero__media-fade {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.35) 20%, transparent 45%);
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__col--social {
    grid-column: 1 / -1;
  }

  .about-showroom__slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 768px) {
  .site-search {
    padding: calc(var(--header-height) + 16px) 16px 16px;
  }

  .site-search__form,
  .shop-search-hero__form {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px 24px;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-menu > li > a {
    padding: 12px 0 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-menu > li > a::after {
    bottom: -1px;
  }

  .nav-menu > li > .sub-menu::before,
  .nav-menu .sub-menu li.menu-item-has-children > .sub-menu::before {
    display: none;
  }

  .nav-menu .sub-menu {
    position: static;
    transform: none;
    display: none;
    min-width: auto;
    padding: 8px 0 8px 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 4px;
  }

  .nav-menu > li.menu-item-has-children.is-open > .sub-menu,
  .nav-menu .sub-menu li.menu-item-has-children.is-open > .sub-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-menu .sub-menu .sub-menu {
    position: static;
    left: auto;
    padding-left: 12px;
  }

  .nav-menu .sub-menu li.menu-item-has-children > a::after {
    content: none;
  }

  .stats__head,
  .stats__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats__head {
    margin-bottom: 32px;
  }

  .stats__image img {
    min-height: 260px;
  }

  .showroom__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showroom__gallery,
  .showroom__slides,
  .showroom__slide img,
  .showroom__content {
    min-height: 360px;
  }

  .showroom__content {
    padding: 48px 32px;
  }

  .showroom__gallery {
    order: -1;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .testimonials .slider__slide {
    flex: 0 0 100%;
  }

  .slider__slide {
    flex: 0 0 calc(100% - 0px);
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 0;
    gap: 24px;
  }

  .cta-banner {
    margin-inline: 16px;
  }

  .cta-banner__surface {
    border-radius: 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__bottom p {
    text-align: center;
  }

  .about-hero__inner,
  .about-split__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-split__content {
    padding: 48px 24px;
  }

  .about-split--text-left .about-split__content,
  .about-split--image-left .about-split__content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-split__image {
    min-height: 320px;
  }

  .about-split__image img {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }

  .about-split--image-left .about-split__image {
    order: -1;
  }

  .about-hero__stats {
    grid-template-columns: 1fr;
  }

  .about-hero__stat {
    justify-content: flex-start;
    white-space: normal;
  }

  .about-partners__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-partners__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px 16px;
  }

  .about-partners__logo {
    min-height: 120px;
  }

  .about-partners__card {
    padding: 28px 20px;
  }

  .about-showroom__head {
    flex-direction: column;
  }

  .about-showroom__addresses {
    grid-template-columns: 1fr;
  }

  .about-showroom__slide {
    flex: 0 0 100%;
  }

  .news-featured__link {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-featured__image img {
    min-height: 240px;
  }

  .news-featured__body {
    padding: 28px 24px 32px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 16px;
  }

  .news-filters {
    gap: 10px 12px;
  }

  .news-search {
    width: 100%;
    min-width: 0;
  }

  .news-single__layout {
    grid-template-columns: 1fr;
  }

  .news-single__sidebar {
    position: static;
    order: -1;
  }

  .news-sidebar__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .news-sidebar__link {
    padding: 8px 14px;
    border-left: none;
    border-radius: var(--radius-pill);
    background: #fff;
  }

  .news-sidebar__link.is-active {
    background: #fff3e6;
    border-left: none;
    box-shadow: inset 3px 0 0 #e67e22;
  }

  .news-single__article {
    padding: 24px;
  }

  .news-recent__grid {
    grid-template-columns: 1fr;
  }

  .contact-showroom__stage {
    padding: 48px 0 0;
  }

  .contact-showroom__pattern {
    height: calc(100% - min(calc(100vw - 48px), var(--container)) * 10 / 32);
  }

  .contact-showroom__intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-showroom__addresses {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .contact-showroom__featured img {
    aspect-ratio: 16 / 10;
  }

  .products-hero {
    min-height: auto;
    background-position: center;
  }

  .products-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.72) 55%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }

  .products-hero__content {
    width: 100%;
    padding: 56px 0 48px;
  }

  .shop-hero {
    min-height: auto;
  }

  .shop-hero__media-blur {
    inset: -20%;
    width: 140%;
    height: 140%;
    object-fit: cover;
    object-position: center;
    filter: blur(40px) saturate(1.05);
    opacity: 0.95;
  }

  .shop-hero__media-image {
    width: 100%;
    opacity: 0.28;
    object-fit: cover;
    object-position: center;
  }

  .shop-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.72) 55%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  .shop-hero__content {
    width: 100%;
    padding: 56px 0 48px;
  }

  .products-cats__grid,
  .products-teaware__grid,
  .products-art__grid {
    grid-template-columns: 1fr;
  }

  .products-gift__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .products-gift__slide img {
    min-height: 320px;
  }

  .products-gift__content {
    padding: 48px 24px;
  }

  .products-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-tea__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .products-tea__track .slider__slide {
    flex: 0 0 calc(100% - 0px);
  }

  .products-teaware__link {
    min-height: 100px;
  }

  .products-teaware__thumb img {
    min-height: 100px;
  }

  .products-art__body {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .products-art__cta {
    width: 100%;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-radius: 10px;
    padding: 14px 16px;
  }
  
  .shop-toolbar__cats-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .shop-toolbar__cats-wrapper::after {
    width: 28px;
  }
  .shop-toolbar__cats-scroll {
    width: 100%;
  }
  .shop-toolbar__cats {
    gap: 8px;
    padding-right: 28px;
  }
  .shop-toolbar__cat {
    padding: 8px 14px;
    font-size: 13px;
  }
  .shop-toolbar__dropdowns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .shop-toolbar__select {
    flex: 1;
    min-width: 0;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .product-recent__grid {
    grid-template-columns: 1fr;
  }

  .product-tabs__nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .product-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .product-tabs__btn {
    flex-shrink: 0;
  }

  .product-summary__actions {
    flex-direction: column;
  }

  .product-summary__buy,
  .product-summary__contact {
    width: 100%;
  }

  .faq-hero {
    padding: 56px 0 48px;
  }

  .faq-hero__search {
    padding: 6px 14px 6px 20px;
    min-height: 48px;
  }

  .faq-hero__search-input {
    font-size: 14px;
  }

  .faq-sidebar__list {
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: var(--radius);
  }
}
