:root {
  --background: #f9f7f6;
  --foreground: #171717;
  --card: #fdfbf8;
  --primary: #121212;
  --primary-foreground: #f4efe7;
  --accent: #d7ab19;
  --accent-foreground: #171717;
  --muted: #e3ddd4;
  --muted-foreground: #636363;
  --border: #d9d0c3;
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.06);
  --header-height: 84px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
  background: rgba(247, 244, 238, 0.72);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--header-height);
}

.header-spacer {
  height: var(--header-height);
}

.brand {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.brand span {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a,
.footer-card a,
.contact-list a {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: #000;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-toggle,
.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(253, 251, 248, 0.8);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 11px;
  font-weight: 900;
}

.cart-button {
  position: relative;
}

.menu-toggle {
  display: none;
  padding: 0;
  color: var(--foreground);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle__bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.menu-toggle:hover {
  background: var(--card);
}

.menu-toggle.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.menu-toggle.is-active .menu-toggle__bars span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__bars span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100vh;
  padding: 24px;
  background: var(--primary);
  color: var(--primary-foreground);
  z-index: 60;
  transition: all 0.3s ease;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mobile-menu a {
  font-size: 22px;
  font-weight: 800;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(23, 23, 23, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(92vw, 420px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-left: 1px solid var(--border);
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header,
.cart-drawer__footer {
  padding: 20px;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cart-drawer__count {
  margin-left: 10px;
  color: var(--accent);
}

.cart-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cart-empty {
  padding: 64px 0;
  text-align: center;
  color: var(--muted-foreground);
}

.cart-empty svg {
  display: block;
  margin: 0 auto 16px;
  opacity: 0.3;
}

.cart-empty__title {
  margin: 0;
  font-weight: 700;
  color: var(--foreground);
}

.cart-empty__text {
  margin: 4px 0 0;
  font-size: 14px;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
}

.cart-item__image {
  width: 80px;
  height: 80px;
  flex: none;
  border-radius: 12px;
  overflow: hidden;
}

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

.cart-item__content {
  flex: 1;
  min-width: 0;
}

.cart-item__content h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.cart-item__content h4 a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cart-item__meta {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-foreground);
}

.cart-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

.cart-qty span {
  width: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.cart-item__total {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
}

.cart-item__remove {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.cart-drawer__footer {
  border-top: 1px solid var(--border);
  margin-top: auto;
  flex-shrink: 0;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-summary span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.cart-summary strong,
.cart-summary .woocommerce-Price-amount {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-clear {
  width: 100%;
  margin-top: 8px;
  padding: 8px 0 0;
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 14px;
  cursor: pointer;
}

.site-main {
  padding: 18px 0 0;
}

.hero-panel,
.info-card,
.content-card,
.feature-card,
.product-card,
.filter-card {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.hero-panel {
  position: relative;
  min-height: 72vh;
  border-radius: 30px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.56));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 72vh;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  font-weight: 800;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 32px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease;
}

.button-primary:hover {
  background: #cfa41a;
}

.button-block {
  width: 100%;
}

.ticker-section {
  margin-top: 18px;
  overflow: hidden;
  background: var(--accent);
  color: var(--accent-foreground);
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  padding: 12px 0;
  width: max-content;
  animation: ticker-scroll 20s linear infinite;
}

.ticker-track span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.section {
  padding: 14px 0 12px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading h2,
.info-card h2,
.content-card h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 400;
}
.info-card h2 {
  margin-top: 14px;
  font-size: 28px;
}

.section-heading p,
.feature-card p,
.info-card p,
.content-card,
.contact-list span,
.filter-value {
  color: var(--muted-foreground);
}

.feature-grid,
.catalog-grid,
.footer-grid,
.filter-grid {
  display: grid;
  gap: 12px;
}

.feature-grid,
.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.info-card,
.content-card {
  border-radius: var(--radius-md);
  padding: 20px;
}

.feature-card h3,
.product-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.feature-icon-svg {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
}

.filter-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.catalog-categories {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 0 8px;
  margin-bottom: 12px;
}

.catalog-category-button {
  flex: none;
  padding: 10px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.catalog-category-button.is-active {
  color: var(--foreground);
  border-bottom-color: var(--accent);
}

.filter-card {
  border-radius: 18px;
  padding: 12px 14px;
}

.filter-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.filter-select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--foreground);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  appearance: none;
  cursor: pointer;
  padding-right: 28px;
}

.filter-select-wrap {
  position: relative;
}

.filter-select-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.filter-range {
  width: 100%;
  margin: 0;
  accent-color: var(--accent);
}

.filter-price-value {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
}

.catalog-results {
  position: relative;
}

.catalog-results.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.catalog-empty {
  padding: 48px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  text-align: center;
}

.catalog-empty h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.catalog-empty p {
  margin: 0;
  color: var(--muted-foreground);
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card:hover,
.feature-card:hover,
.contact-list a:hover {
  transform: translateY(-3px);
}

.product-card:hover,
.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--muted);
}

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

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-body {
  position: relative;
  z-index: 2;
  padding: 16px;
}

.product-meta {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted-foreground);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.price-row strong,
.woocommerce-Price-amount {
  font-size: .875rem;
      font-weight: 800;
      line-height: 1.25rem;
  letter-spacing: -0.04em;
}

.price-row s {
  color: var(--muted-foreground);
}

.product-body h3 {
  min-height: 44px;
}

.product-add-to-cart {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.product-add-to-cart:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-foreground);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 900;
}

.pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d92727;
}

.steps-grid,
.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contacts-card {
  padding: 22px;
  border-radius: 18px;
  margin-bottom: 12px;
}

.contacts-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.contacts-card > p {
  margin: 0;
  line-height: 1.625;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-item i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  background: var(--accent);
  color: var(--accent-foreground);
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 17px;
  font-weight: 700;
}

.contact-list > a > div {
  min-width: 0;
}

.contact-list__action,
.contact-list span {
  color: var(--muted-foreground);
}

.contact-list__action {
  flex-shrink: 0;
  font-size: 17px;
}

.contact-list a:hover {
  background: var(--muted);
}

.site-footer {
  padding-top: 18px;
}

.footer-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-card p,
.footer-card a,
.copyright {
  color: rgba(244, 239, 231, 0.8);
}

.footer-card a {
  display: block;
  margin-bottom: 8px;
}

.copyright {
  margin-top: 14px;
}

.footer-strip {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.page-shell {
  padding-bottom: 24px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.single-product-main {
  padding-bottom: 32px;
}

.single-product-breadcrumbs {
  margin-bottom: 22px;
  color: #8a8a8a;
  font-size: 16px;
}

.single-product-breadcrumbs a {
  color: var(--muted-foreground);
}

.single-product-header {
  margin-bottom: 18px;
}

.single-product-header h1 {
  margin: 0 0 26px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.single-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr) minmax(260px, 0.74fr);
  border: 1px solid #ece8de;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.single-product-card__gallery,
.single-product-card__specs,
.single-product-card__purchase {
  min-width: 0;
}

.single-product-card__gallery,
.single-product-card__specs {
  border-right: 1px solid #ece8de;
}

.single-product-card__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 14px;
  padding: 20px 16px 16px;
}

.single-gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  background: #fff;
}

.single-gallery__main-image {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.single-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid #ece8de;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #8e8e8e;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.single-gallery__arrow--prev {
  left: 18px;
}

.single-gallery__arrow--next {
  right: 18px;
}

.single-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
}

.single-gallery__thumb {
  width: 72px;
  height: 72px;
  border: 1px solid #ece8de;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}

.single-gallery__thumb.is-active {
  border: 2px solid #314042;
}

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

.single-product-card__specs {
  padding: 30px 20px 24px;
}

.single-product-card__specs h2,
.single-product-details h2 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

.single-spec-list,
.single-attributes-table {
  display: grid;
  gap: 16px;
}

.single-spec-list__row,
.single-attributes-table__row {
  display: grid;
     grid-template-columns: minmax(96px, 127px) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid #efe9de;
}

.single-spec-list__row span,
.single-attributes-table__row span {
  color: #9b9b9b;
  font-size: 13px;
  line-height: 1.35;
}

.single-spec-list__row strong,
.single-attributes-table__row strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-word;
}

.single-product-card__categories {
  margin-top: 30px;
}

.single-product-card__categories h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}

.single-product-card__category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-product-card__categories a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #ded5c7;
  border-radius: 999px;
  color: #7a7a7a;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.single-product-card__categories a:hover {
  border-color: var(--accent);
  background: rgba(225, 180, 3, 0.08);
  color: var(--foreground);
}

.single-product-card__purchase {
  display: flex;
  flex-direction: column;
}

.single-purchase-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 20px 14px;
}

.single-purchase-brand {
  font-size: 20px;
}

.single-purchase-stock {
  margin-top: 4px;
  color: #ff8f1f;
}

.single-purchase-stock .out-of-stock {
  color: #ff5b52;
}

.single-purchase-sku {
  color: #919191;
  white-space: nowrap;
}

.single-purchase-price,
.single-purchase-price .woocommerce-Price-amount {
  padding: 10px 20px 24px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.single-purchase-form {
  padding: 0 20px 24px;
}

.single-purchase-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.single-purchase-qty-label {
  margin-bottom: 0;
  font-size: 16px;
}

.single-purchase-qty-wrap .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #ece8de;
  border-radius: 10px;
  min-width: 150px;
  height: 56px;
}

.single-purchase-qty-wrap .screen-reader-text {
  display: none;
}

.single-purchase-qty-wrap .qty {
  width: 54px;
  height: auto;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background: transparent;
}

.single-purchase-button {
  width: 100%;
  margin-top: 20px;
  min-height: 68px;
  padding: 18px 24px;
  font-size: 18px;
}

.single-purchase-total {
  margin-top: auto;
  padding: 28px 20px;
  background: #f4f4f4;
  text-align: center;
  border-top: 1px solid #ece8de;
}

.single-purchase-total div {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.single-purchase-total strong,
.single-purchase-total .woocommerce-Price-amount {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.single-product-details {
  padding-top: 56px;
}

.single-product-tabs {
  display: inline-flex;
  border: 1px solid #ece8de;
  background: #fff;
}

.single-product-tab {
  padding: 20px 40px;
  border: 0;
  border-right: 1px solid #ece8de;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

.single-product-tab:last-child {
  border-right: 0;
}

.single-product-tab.is-active {
  background: #fafafa;
}

.single-product-details__grid {
  display: block;
  margin-top: 48px;
}

.single-product-panel {
  display: none;
}

.single-product-panel.is-active {
  display: block;
}

.single-attributes-table__row {
  padding: 12px 0;
  border-bottom: 1px dotted #e6e6e6;
}

.single-related-products {
  margin-top: 72px;
}

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

.single-related-products__header h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
}

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

.single-related-products__controls {
  display: flex;
  gap: 14px;
}

.single-related-products__controls button {
  width: 64px;
  height: 64px;
  border: 1px solid #ece8de;
  border-radius: 8px;
  background: #fff;
  color: #8c8c8c;
  font-size: 36px;
  line-height: 1;
}

.single-related-products__controls .is-active {
  color: #232323;
}

.single-related-card {
  border: 1px solid #ece8de;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.single-related-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  background: #fff;
}

.single-related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-related-card__body {
  padding: 18px 20px 20px;
}

.single-related-card__rating {
  margin-bottom: 14px;
  color: #e2e2e2;
  font-size: 26px;
  letter-spacing: 4px;
  line-height: 1;
}

.single-related-card__body h3 {
  min-height: auto;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.single-related-card__meta {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.single-related-card__meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.single-related-card__meta-row span {
  color: #9a9a9a;
}

.single-related-card__meta-row strong {
  font-weight: 400;
}

.single-related-card__price .price-row strong,
.single-related-card__price .woocommerce-Price-amount {
  font-size: 26px;
}

.single-related-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 12px;
  align-items: center;
}

.single-related-card .product-add-to-cart {
  margin-top: 10px;
  border-radius: 8px;
  background: #f26c2f;
  border-color: #f26c2f;
  color: #fff;
}

.single-related-card .product-add-to-cart:hover {
  background: #e55c1e;
  border-color: #e55c1e;
}

.single-related-card__qty-box {
  min-height: 58px;
  border: 1px solid #ece8de;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  margin-top: 10px;
}

.single-related-card__qty-box span {
  color: #8f8f8f;
  font-size: 12px;
  text-align: center;
}

.single-related-card__qty-box strong {
  font-size: 16px;
  font-weight: 700;
}

.single-product-reviews {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  padding: 22px;
}

.single-product-reviews #comments {
  margin: 0;
}

.single-product-reviews .woocommerce-Reviews-title,
.single-product-reviews .comment-reply-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.single-product-reviews .commentlist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.single-product-reviews .commentlist li {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.single-product-reviews .comment_container {
  display: block;
}

.single-product-reviews .meta {
  margin: 0 0 10px;
  color: var(--muted-foreground);
  font-size: 14px;
}

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

.single-product-reviews .comment-form {
  display: grid;
  gap: 12px;
}

.single-product-reviews .comment-form input,
.single-product-reviews .comment-form textarea,
.single-product-reviews .comment-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--foreground);
}

.single-product-reviews .comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.single-product-reviews .form-submit {
  margin: 0;
}

.single-product-reviews .submit {
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.single-product-reviews .stars a {
  color: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", Arial, sans-serif;
}

strong,
b {
  font-weight: 700;
}

button,
label {
  font-family: "Inter", Arial, sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .feature-grid,
  .footer-grid,
  .catalog-grid,
  .filter-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .single-product-card__gallery,
  .single-product-card__specs {
    border-right: 0;
    border-bottom: 1px solid #ece8de;
  }

  .single-product-details__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .single-related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-panel,
  .hero-content {
    min-height: 56vh;
  }

  .hero-content {
    padding: 20px;
  }

  .feature-grid,
  .footer-grid,
  .catalog-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .icon-button--search {
    display: none;
  }

  .contact-list a {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-drawer {
    width: min(92vw, 420px);
  }

  .single-product-header h1 {
    font-size: 34px;
  }

  .single-product-actions {
    gap: 16px;
    font-size: 13px;
  }

  .single-product-card__gallery {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .single-gallery {
    min-height: 420px;
  }

  .single-gallery__main-image {
    max-height: 420px;
  }

  .single-gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
  }

  .single-product-card__specs,
  .single-purchase-top,
  .single-purchase-price,
  .single-purchase-form,
  .single-purchase-total {
    padding-left: 18px;
    padding-right: 18px;
  }

  .single-purchase-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-purchase-qty-wrap .quantity {
    min-width: 100%;
  }

  .single-spec-list__row,
  .single-attributes-table__row,
  .single-related-card__meta-row {
    grid-template-columns: 1fr;
  }

  .single-purchase-price,
  .single-purchase-price .woocommerce-Price-amount,
  .single-purchase-total strong,
  .single-purchase-total .woocommerce-Price-amount {
    font-size: 40px;
  }

  .single-product-tab {
    padding: 16px 18px;
    font-size: 16px;
  }

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

  .single-related-card__actions {
    grid-template-columns: 1fr;
  }
}
