/* MCARIS Dövme — catalog theme */

:root {
  --bg: #f4f2ef;
  --bg-deep: #0e1114;
  --bg-card: #ffffff;
  --ink: #14181c;
  --ink-soft: #5a636c;
  --line: #e2ddd6;
  --accent: #b45a2a;
  --accent-hover: #943f18;
  --wa: #25d366;
  --wa-hover: #1ebe57;
  --phone: #0e1114;
  --danger-soft: #8b3a2f;
  --radius: 4px;
  --container: 1240px;
  --font: "Outfit", "Montserrat", system-ui, sans-serif;
  --display: "Montserrat", "Outfit", system-ui, sans-serif;
  --shadow: 0 12px 40px rgba(14, 17, 20, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* Top bar */
.top-bar {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
}

.top-bar-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
}

.top-bar a {
  color: #fff;
}

.top-bar i {
  margin-right: 0.3rem;
  opacity: 0.9;
}

.top-bar .sep {
  opacity: 0.35;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 17, 20, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo {
  height: 34px;
  width: auto;
}

.brand-text {
  display: none;
  flex-direction: column;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.brand-text span {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.65;
  letter-spacing: 0.12em;
}

.site-nav--desktop {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem 0.85rem;
  flex-wrap: nowrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav .nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.site-nav .nav-icon {
  font-size: 0.84em;
  line-height: 1;
  opacity: 0.82;
  flex: 0 0 auto;
}

.site-nav .nav-list > li > a:hover .nav-icon {
  opacity: 1;
}

.site-nav .sub-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: normal;
}

.site-nav .sub-menu .nav-icon {
  width: 1.05em;
  font-size: 0.95em;
  color: var(--accent, #c45a3a);
  opacity: 0.95;
}

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

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus {
  background: var(--bg);
  color: var(--ink);
}

.site-nav .sub-menu a:hover .nav-icon,
.site-nav .sub-menu a:focus .nav-icon {
  color: var(--ink);
  opacity: 1;
}

.site-nav .has-children,
.site-nav .menu-item-has-children {
  position: relative;
}

.site-nav--desktop .has-children > a,
.site-nav--desktop .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.site-nav--desktop .has-children > a::after,
.site-nav--desktop .menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
  line-height: 1;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav--desktop .has-children:hover > a::after,
.site-nav--desktop .menu-item-has-children:hover > a::after {
  opacity: 1;
  transform: translateY(1px);
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
  z-index: 20;
}

.site-nav .has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.header-actions .header-cta.btn-sm {
  min-height: 38px;
  padding: 0 0.85rem;
  font-size: 0.74rem;
  gap: 0.4rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-sm {
  min-height: 40px;
  padding: 0 1rem;
  font-size: 0.78rem;
}

.btn-primary {
  background: #fff;
  color: var(--bg-deep);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--wa-hover);
}

.btn-phone {
  background: var(--phone);
  color: #fff;
}

.btn-phone:hover {
  background: #252b31;
}

.header-actions .btn-phone {
  background: #fff;
  color: #0e1114;
  border: 1px solid #fff;
}

.header-actions .btn-phone:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

.mcaris-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mcaris-cta-group .btn {
  flex: 1 1 200px;
}

/* Hero product slider */
.hero-section {
  position: relative;
  background: var(--bg-deep);
  color: #fff;
  margin: 0;
  overflow: hidden;
}

.hero-product-swiper,
.hero-product-swiper .swiper-wrapper,
.hero-product-swiper .swiper-slide {
  height: 100%;
}

.hero-product-swiper {
  position: relative;
  width: 100%;
  height: clamp(420px, 58vh, 600px);
  border-radius: 0;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  background: #0c1014;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 72% 50%, rgba(55, 68, 78, 0.55) 0%, transparent 62%),
    radial-gradient(ellipse 50% 60% at 18% 70%, rgba(180, 70, 50, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, #0a0d10 0%, #141a20 48%, #0e1318 100%);
}

.hero-slide__media {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: max(0px, calc((100% - var(--container)) / 2));
  right: max(0px, calc((100% - var(--container)) / 2));
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2.5rem 1rem 2.5rem 1rem;
  pointer-events: none;
}

.hero-slide__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(52%, 560px);
  max-height: 100%;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(8, 10, 12, 0.92) 0%, rgba(8, 10, 12, 0.72) 34%, rgba(8, 10, 12, 0.28) 58%, rgba(8, 10, 12, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.25) 0%, transparent 35%, rgba(8, 10, 12, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0 3rem 3.75rem;
  margin-left: auto;
  margin-right: auto;
  width: min(100% - 2rem, var(--container));
  max-width: none;
}

.hero-content > * {
  max-width: min(40%, 380px);
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-subtitle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 16ch;
}

.hero-desc {
  margin: 0 0 1.35rem;
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.hero-price {
  margin: 0 0 1.35rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-price del {
  opacity: 0.55;
  margin-right: 0.45rem;
  font-weight: 500;
}

.hero-price ins {
  background: none;
  text-decoration: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0 1.4rem;
  background: #fff;
  color: #0e1114;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
  background: #f0f0f0;
  color: #0e1114;
}

.hero-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-controls {
  position: absolute;
  left: max(1rem, calc((100% - var(--container)) / 2));
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: auto;
  justify-content: center;
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-pagination {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  height: 22px;
  width: 8px;
  border-radius: 999px;
}

/* Homepage keeps solid header above hero */
body.home .site-header {
  background: rgba(14, 17, 20, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

body.home .top-bar {
  background: var(--bg-deep);
}

/* Product carousel */
.product-slider-section .slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.product-slider-section .slider-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}


.slider-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.slider-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.slider-see-all:hover {
  color: var(--accent);
}

.cat-products-swiper {
  overflow: hidden;
}

/* Trust strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.trust-item i {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(180, 90, 42, 0.12);
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.trust-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

/* Home intro */
.home-intro {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.home-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.home-intro p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.text-link:hover {
  color: var(--accent-hover);
}

/* Home CTA band */
.home-cta-band {
  background:
    linear-gradient(120deg, rgba(8, 10, 12, 0.92), rgba(8, 10, 12, 0.75)),
    var(--bg-deep);
  color: #fff;
  padding: 3.5rem 0;
}

.home-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-cta-band .section-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.home-cta-band h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.home-cta-band p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 980px) {
  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .home-intro__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .slider-header-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .slider-see-all {
    font-size: 0.72rem;
  }
}

.slider-nav {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  flex-shrink: 0;
  border: 1px solid #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.slider-btn {
  width: 48px;
  height: 44px;
  border: none;
  border-right: 1px solid #1a1a1a;
  background: #fff;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.8rem;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.slider-btn:last-child {
  border-right: none;
}

.slider-btn:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.hp-progress {
  position: relative;
  margin-top: 1.5rem;
  height: 2px;
  background: #ddd7cf;
  overflow: hidden;
}

.hp-progress .swiper-pagination-progressbar-fill {
  background: #1a1a1a;
}

.handpicked-swiper {
  overflow: hidden;
  padding-bottom: 0.25rem;
}

.hp-card {
  display: block;
  color: #1a1a1a;
  text-decoration: none;
  height: 100%;
}

.hp-card:hover {
  color: #1a1a1a;
}

.hp-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: #f5f5f3;
  overflow: hidden;
  border-radius: 2px;
}

.hp-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.hp-card:hover .hp-card__media > img {
  transform: scale(1.04);
  opacity: 0.92;
}

.hp-card__body {
  display: block;
  padding: 0.75rem 0.1rem 0.2rem;
}

.hp-card__sku {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8f94;
}

.hp-card__title {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
}

.hp-card__price {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.hp-card__price del {
  opacity: 0.5;
  margin-right: 0.3rem;
  font-weight: 500;
}

.hp-card__price ins {
  background: none;
  text-decoration: none;
}

.hp-card__price .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-head p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  max-width: 36rem;
}

.section--dark {
  background: var(--bg-deep);
  color: #fff;
}

.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.section--muted {
  background: #ebe7e1;
}

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 1.25rem;
  background-color: #14181c;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, 0.15) 0%, rgba(10, 12, 14, 0.82) 100%);
  z-index: 0;
  transition: background 0.25s ease;
}

.cat-card--has-image::before {
  background: linear-gradient(180deg, rgba(10, 12, 14, 0.05) 10%, rgba(10, 12, 14, 0.78) 100%);
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-card:hover::before {
  background: linear-gradient(180deg, rgba(10, 12, 14, 0.1) 0%, rgba(10, 12, 14, 0.88) 100%);
}

.cat-card__count,
.cat-card__name {
  position: relative;
  z-index: 1;
}

.cat-card__count {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.cat-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.3rem;
  line-height: 1.25;
}

/* Product grid — dovmekoltugu.com style */
.product-grid,
ul.products.product-grid,
.woocommerce ul.products.product-grid,
.woocommerce-page ul.products.product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  float: none;
}

.woocommerce ul.products.product-grid::before,
.woocommerce ul.products.product-grid::after,
.woocommerce-page ul.products.product-grid::before,
.woocommerce-page ul.products.product-grid::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products.product-grid li.product,
.woocommerce-page ul.products.product-grid li.product,
ul.products.product-grid li.product-card {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  list-style: none;
}

.product-card__link {
  display: block;
  color: #1a1a1a;
  text-decoration: none;
}

.product-card__link:hover,
.product-card__link:focus {
  color: #1a1a1a;
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: #f5f5f3;
  overflow: hidden;
  border-radius: 2px;
}

.product-card__media > img,
.product-card__link > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-card__link:hover .product-card__media > img {
  opacity: 0.92;
  transform: scale(1.03);
}

.product-watermark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.product-watermark img {
  width: 58%;
  max-width: 240px;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.28;
  transform: rotate(-32deg);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.product-card__body {
  display: block;
  padding: 0.75rem 0.15rem 0.25rem;
}

.product-card__sku {
  display: block;
  margin: 0 0 0.28rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8f94;
}

.product-card__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .product-card__title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  clip: auto !important;
  margin: 0 0 0.4rem !important;
  padding: 0 !important;
  font-family: var(--font) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #1a1a1a !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
}

.product-card__price,
.woocommerce ul.products li.product .price {
  display: block !important;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
}

.product-card__price .price,
.product-card__price del,
.product-card__price ins,
.product-summary .price {
  text-decoration: none;
}

.product-card__price del,
.product-summary .price del {
  opacity: 0.5;
  margin-right: 0.35rem;
  font-weight: 500;
}

.product-card__price ins,
.product-summary .price ins {
  background: none;
  font-weight: 700;
  text-decoration: none;
}

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

.product-summary .product_title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
}

.product-summary .price {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.mcaris-order-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.mcaris-wc-order {
  margin-top: 0.5rem;
}

/* Featured */
.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.featured-media {
  background: #eceae6;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

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

.featured-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.featured-copy p {
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

.featured-features {
  margin: 0 0 1.5rem;
}

.featured-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.featured-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

/* Page banner */
.page-banner {
  background: var(--bg-deep);
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.page-banner h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.page-banner p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
  color: #fff;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0 4rem;
}

.gallery-main {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  background: #eceae6;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.gallery-main .product-watermark img {
  width: 48%;
  max-width: 320px;
  opacity: 0.24;
}

.pswp .pswp__zoom-wrap {
  position: absolute;
}

.pswp .pswp__preloader {
  display: none !important;
}

.pswp .pswp-product-watermark {
  position: absolute;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.pswp .product-watermark img {
  width: 42%;
  max-width: 420px;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.26;
  transform: rotate(-32deg);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.gallery-zoom-hint {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(14, 17, 20, 0.72);
  color: #fff;
  font-size: 0.85rem;
  pointer-events: none;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
}

.gallery-thumbs button {
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #eceae6;
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  border-color: var(--ink);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary .sku,
.product-sku {
  display: block;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.product-sku span {
  margin-right: 0.35rem;
  opacity: 0.75;
}

.product-summary h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
}

.product-summary .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.product-summary .price-current {
  font-size: 1.6rem;
}

.feature-block {
  margin: 0 0 1.75rem;
  padding: 0 0 0 1rem;
  border-left: 2px solid var(--accent);
}

.feature-block__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.feature-block__title i {
  color: var(--accent);
  font-size: 0.9rem;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 280px;
  overflow: auto;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(20, 24, 28, 0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--accent);
}

.feature-list li span {
  flex: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}


.product-description-section {
  padding-top: 0;
}

.product-description,
.prose {
  max-width: none;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

.prose p {
  margin: 0 0 1rem;
}

.prose h2 {
  margin: 2rem 0 0.85rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.page-content {
  max-width: none;
}

.contact-card h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.contact-card h2:first-child {
  margin-top: 0;
}

.contact-card ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.contact-card li {
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}

.contact-card h2 i {
  color: var(--accent);
  font-size: 0.9rem;
}

/* Pagination */
.pagination,
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.pagination ul.page-numbers,
.woocommerce-pagination ul.page-numbers,
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination li,
.woocommerce-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span,
.pagination .page-numbers,
.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.pagination a:hover,
.woocommerce-pagination a.page-numbers:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.pagination .current,
.pagination span.current,
.woocommerce-pagination span.current {
  background: var(--bg-deep);
  color: #fff;
  border-color: var(--bg-deep);
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  margin-bottom: 1rem;
  height: 36px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-col li {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.footer-contact li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact i {
  margin-top: 0.2rem;
  width: 1rem;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.8rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* Float actions */
.float-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-wa,
.float-call {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.float-wa span,
.float-call span {
  display: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.float-wa {
  background: var(--wa);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.float-call {
  background: var(--phone);
  box-shadow: 0 10px 30px rgba(20, 24, 28, 0.35);
}

.float-wa i,
.float-call i {
  font-size: 1.35rem;
  line-height: 1;
}

.float-wa:hover,
.float-call:hover {
  transform: scale(1.06);
  color: #fff;
}

/* Mobile nav drawer */
.site-nav--mobile,
.nav-overlay {
  display: none;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
}

body.nav-open {
  overflow: hidden;
}

/* Empty */
.empty-state {
  padding: 3rem;
  text-align: center;
  color: var(--ink-soft);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-product-swiper {
    height: clamp(480px, 72vh, 640px);
    width: 100%;
  }

  .hero-slide__media {
    left: 1rem;
    right: 1rem;
    width: auto;
    top: auto;
    height: 48%;
    padding: 0.5rem 0 4.5rem;
    align-items: flex-end;
    justify-content: center;
  }

  .hero-slide__img {
    max-height: 100%;
    max-width: min(88%, 360px);
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 10, 12, 0.88) 0%, rgba(8, 10, 12, 0.55) 38%, rgba(8, 10, 12, 0.2) 58%, rgba(8, 10, 12, 0.55) 100%);
  }

  .hero-content {
    padding: 1.75rem 0 52% 3.25rem;
    width: min(100% - 2rem, var(--container));
    max-width: 100%;
    justify-content: flex-start;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero-controls {
    left: max(0.85rem, calc((100% - var(--container)) / 2));
    right: auto;
    top: 28%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
  }

  .hero-pagination {
    flex-direction: column;
  }

  .hero-pagination .swiper-pagination-bullet-active {
    width: 8px;
    height: 22px;
  }

  .product-slider-section .slider-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cat-grid,
  .product-grid,
  ul.products.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .featured,
  .product-detail,
  .contact-grid,
  .footer-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .site-nav--desktop {
    display: none;
  }

  .header-actions .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

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

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

  .nav-toggle span {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(8, 10, 12, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

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

  .site-nav--mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    width: min(88vw, 340px);
    background: #12161a;
    padding: 1.1rem 1.25rem 2rem;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav--mobile.is-open {
    transform: none;
  }

  .site-nav--mobile .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav--mobile .nav-list > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav--mobile .nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 0;
  }

  .site-nav--mobile .menu-item-has-children > a::after,
  .site-nav--mobile .has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
  }

  .site-nav--mobile .menu-item-has-children.is-expanded > a::after,
  .site-nav--mobile .has-children.is-expanded > a::after {
    transform: rotate(180deg);
  }

  .site-nav--mobile .sub-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0.75rem 0.35rem;
    min-width: 0;
  }

  .site-nav--mobile .is-expanded > .sub-menu {
    display: block;
  }

  .site-nav--mobile .sub-menu a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.45rem 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.88rem;
    font-weight: 500;
  }

  /* Bottom sticky contact bar */
  .float-actions {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    gap: 0;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: #0e1114;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  }

  .float-wa,
  .float-call {
    flex: 1 1 50%;
    width: auto;
    height: 54px;
    border-radius: 0;
    box-shadow: none;
    gap: 0.5rem;
  }

  .float-wa span,
  .float-call span {
    display: inline;
  }

  .float-wa:hover,
  .float-call:hover {
    transform: none;
  }

  .site-wrap {
    padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px));
  }

}

@media (max-width: 560px) {
  .top-bar-inner {
    gap: 0.35rem 0.75rem;
  }

  .top-bar-group--left .sep,
  .top-bar-group--left span:last-child {
    display: none;
  }

  .top-bar-group--right .sep,
  .top-bar-group--right span:first-child {
    display: none;
  }

  .cat-grid,
  .product-grid,
  ul.products.product-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.1rem 0.75rem;
  }

  .product-card__body {
    padding: 0.55rem 0.1rem 0.15rem;
  }

  .product-card__title,
  .woocommerce ul.products li.product .product-card__title {
    font-size: 0.75rem !important;
  }
}
