:root {
  --font-base: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --bg: #f7f3ed;
  --surface: #fffdf9;
  --surface-strong: #f3ede3;
  --line: rgba(64, 52, 42, 0.12);
  --text: #231b16;
  --muted: #62554b;
  --brand: #8d4a2f;
  --brand-deep: #40281d;
  --accent: #b57445;
  --accent-soft: #e8c9ab;
  --danger: #aa4f39;
  --shadow: 0 20px 44px rgba(32, 24, 18, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 74, 47, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(79, 110, 79, 0.08), transparent 24%),
    linear-gradient(180deg, #f9f6f1 0%, #f6f1ea 40%, #efe7dd 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  top: 0 !important;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff !important;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0;
}

.header-band {
  display: block;
  background: linear-gradient(135deg, #2b211b 0%, #4a382f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 2rem;
}

.header-band__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.header-band__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fffefc;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-band__contact-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.header-band__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  margin: 0;
  padding: 0.7rem 0;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.header-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.site-search {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.06);
}

.site-search input[type="search"] {
  width: 15rem;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--brand-deep);
  padding: 0.5rem 0.65rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.site-search input[type="search"]::placeholder {
  color: #999;
}

.site-search input[type="search"]:focus {
  background: transparent;
  outline: none;
}

.site-search input[type="search"]:active {
  background: transparent;
}

.site-search button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #8d4a2f 0%, #b57445 100%);
  color: #fffefb;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  min-height: 38px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.site-search button:hover {
  background: linear-gradient(135deg, #6a3820 0%, #a0623a 100%);
  box-shadow: 0 8px 20px rgba(141, 74, 47, 0.3);
  transform: translateY(-2px);
}

.site-search button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(141, 74, 47, 0.2);
}

.site-search button:focus {
  outline: 2px solid rgba(141, 74, 47, 0.5);
  outline-offset: 2px;
}

.site-search--header {
  flex: 0 1 auto;
  min-width: 0;
}

.site-search--header input[type="search"] {
  width: 12rem;
}

@media (max-width: 640px) {
  .site-search--header {
    max-width: 100%;
  }
  
  .site-search--header input[type="search"] {
    width: 8rem;
  }
  
  .site-search--header button {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding-right: 1.5rem;
}

.brand__media {
    width: 126px;
    height: 58px;
    align-items: center;
    background: linear-gradient(135deg, #fffdf9 0%, #f5eee6 100%);
}

.brand__logo {
  width: 100%;
  height: 100%;

}

.brand__fallback {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand__text {
  display: grid;
  gap: 0.15rem;
}

.brand__text strong {
  font-size: 1rem;
  color: var(--brand-deep);
}

.brand__text span {
  font-size: 0.84rem;
  line-height: 1.3;
  color: var(--muted);
  max-width: 28rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
}

.language-switcher select {
  min-width: 126px;
  border: 1px solid rgba(64, 52, 42, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.7rem 2.25rem 0.7rem 0.95rem;
  box-shadow: 0 10px 22px rgba(32, 24, 18, 0.05);
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  position: relative;
}

.language-switcher select:hover {
  box-shadow: 0 12px 28px rgba(32, 24, 18, 0.1);
  background-color: rgba(255, 255, 255, 0.98);
}

.language-switcher select:focus {
  outline: 2px solid rgba(141, 74, 47, 0.5);
  outline-offset: 2px;
  box-shadow: 0 12px 28px rgba(32, 24, 18, 0.15);
}

.language-switcher select:active {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 16px rgba(32, 24, 18, 0.08);
}

.site-nav__link {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--brand-deep);
}

.nav-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  width: 50px;
  height: 50px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: 1px solid rgba(64, 52, 42, 0.12);
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.06);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.site-header .button-small {
  background: linear-gradient(135deg, #8d4a2f 0%, #b57445 100%);
  color: #fffdf9;
  border-color: rgba(64, 52, 42, 0.08);
  box-shadow: 0 14px 28px rgba(40, 26, 19, 0.12);
}

.site-header .button-small:hover {
  box-shadow: 0 18px 34px rgba(40, 26, 19, 0.16);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #8d4a2f 0%, #b57445 100%);
  color: #fffdf9;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(40, 26, 19, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(40, 26, 19, 0.16);
}

.button-small {
  padding: 0.8rem 1.15rem;
  font-size: 0.92rem;
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf9;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.button-outline {
  background: transparent;
  color: var(--brand);
  border-color: rgba(141, 74, 47, 0.18);
  box-shadow: none;
}

.page-shell {
  padding: 1.5rem 0 4.5rem;
}

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  isolation: isolate;
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.5) 0%, rgba(36, 30, 25, 0.24) 100%);
}

.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.14) saturate(1.03);
}

.hero__video {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.1) 0%, rgba(15, 15, 15, 0.48) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  min-height: calc(100vh - 170px);
}

.hero__copy {
  color: #fff;
  max-width: 56rem;
}

.hero__search-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-search--hero {
  width: min(38rem, 100%);
  background: rgba(255, 255, 255, 0.98);
}

.site-search--hero input[type="search"] {
  width: 100%;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.section-intro .eyebrow,
.page-hero .eyebrow,
.cta-banner .eyebrow,
.text-block .eyebrow {
  color: var(--accent);
}

.hero h1,
.page-hero h1,
.section-intro h2,
.product-detail__title,
.story-card h3,
.cta-banner h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(1.95rem, 3.1vw, 3rem);
  line-height: 1.08;
  margin-top: 1rem;
  max-width: 22rem;
}

.hero__typewriter {
  min-height: 2.3rem;
  margin: 1.1rem 0 0;
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  font-weight: 600;
  color: rgba(255, 248, 239, 0.94);
}

.hero__typewriter::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 0.32rem;
  background: rgba(255, 250, 244, 0.9);
  vertical-align: -0.1em;
  animation: type-caret 0.85s steps(1) infinite;
}

.hero__copy p,
.page-hero p,
.section-intro p,
.text-block p,
.product-card p,
.detail-panel p,
.story-card p,
.quality-card p,
.footer-copy,
.alert,
.modal__copy {
  line-height: 1.75;
}

.hero__copy p {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: 0.98rem;
  color: rgba(255, 248, 239, 0.88);
}

.search-results-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

@keyframes type-caret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.hero-card {
  align-self: center;
  background: rgba(251, 247, 239, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.hero-stat span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.hero-card__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-card__strip img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  padding: 5rem 0;
}

.section--compact {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-intro {
  max-width: 50rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-intro h2 {
  font-size: clamp(1.28rem, 1.9vw, 1.85rem);
  line-height: 1.2;
  margin-top: 0.8rem;
  color: var(--brand-deep);
}

.section-intro p {
  max-width: 42rem;
  font-size: 0.98rem;
}

.section-intro p,
.text-block p,
.product-card p,
.detail-panel p,
.quality-card p,
.story-card p,
.footer-copy {
  color: var(--muted);
}

.section-intro p {
  margin-left: auto;
  margin-right: auto;
}

.intro-grid,
.quality-grid,
.story-grid,
.focus-grid,
.testimonial-grid,
.category-grid,
.stats-grid,
.catalog-grid,
.detail-layout,
.related-grid,
.about-grid {
  display: grid;
  gap: 1.3rem;
}

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

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

.intro-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.text-block {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.text-block p {
  margin: 0 0 1rem;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.feature-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--brand);
}

.feature-item span {
  color: var(--muted);
  line-height: 1.55;
}

.feature-item__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(141, 74, 47, 0.1);
  color: var(--brand);
  font-weight: 800;
  flex: 0 0 auto;
}

.media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.intro-grid .text-block,
.intro-grid .media-card {
  height: 100%;
}

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

.media-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(122, 58, 0, 0.84));
  color: #fff;
}

.media-card__overlay strong {
  display: block;
  font-size: 1.25rem;
}

.media-card__overlay span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-card,
.quality-card,
.story-card,
.detail-panel,
.cta-banner,
.gallery-panel,
.alert {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(176, 89, 0, 0.16);
  border-color: rgba(240, 138, 36, 0.22);
}

.category-card {
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.category-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.category-card__body {
  padding: 1.2rem;
}

.category-card h3,
.quality-card h3,
.story-card h3,
.detail-panel h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--brand-deep);
}

.category-card p,
.quality-card p,
.story-card p,
.detail-panel p {
  margin: 0.7rem 0 0;
  line-height: 1.7;
}

.count-chip {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.quality-grid,
.story-grid,
.related-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quality-card,
.story-card,
.testimonial-card {
  padding: 1.5rem;
}

.quality-card strong {
  display: inline-flex;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(141, 74, 47, 0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.product-marquee:hover .product-marquee__track {
  animation-play-state: paused;
}

.product-marquee__track {
  display: flex;
  width: max-content;
  gap: 1.1rem;
  animation: marquee-scroll 45s linear infinite;
  will-change: transform;
}

.product-marquee--auto {
  margin-top: 0.5rem;
}

.product-marquee--auto .product-marquee__track {
  animation: marquee-scroll 48s linear infinite;
}

.product-marquee--right .product-marquee__track {
  animation-name: marquee-scroll-reverse;
}

.product-marquee--left {
  margin-top: 1.1rem;
}

.product-marquee__group {
  display: flex;
  gap: 1.1rem;
}

.marquee-card {
  width: 290px;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.marquee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(176, 89, 0, 0.18);
  border-color: rgba(240, 138, 36, 0.24);
}

.marquee-card__image {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #f7f3ec;
}

.marquee-card__image img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #fff;
  padding: 0.8rem;
}

.marquee-card__body {
  display: grid;
  gap: 0.7rem;
}

.marquee-card__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(141, 74, 47, 0.12);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.marquee-card__body strong {
  font-size: 1.02rem;
  color: var(--brand-deep);
}

.marquee-card__body span:last-child {
  color: var(--muted);
  line-height: 1.7;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.55rem));
  }
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(calc(-50% - 0.55rem));
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slider-fade-in {
  from {
    opacity: 0.85;
  }
  to {
    opacity: 1;
  }
}

.hero-products-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.hero-products-slider:hover .hero-products-slider__track {
  animation-play-state: paused;
}

.hero-products-slider__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: slider-scroll 50s linear infinite;
  will-change: transform;
}

.hero-products-slider__group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

@keyframes slider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.hero-products-slider .product-card {
  width: 240px;
  flex-shrink: 0;
}

.hero-products-slider .product-card__media {
  aspect-ratio: 4 / 3.2;
}

.hero-products-slider .product-card__body {
  padding: 1rem;
  gap: 0.6rem;
}

.hero-products-slider .product-card h3 {
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero-products-slider .product-card p {
  font-size: 0.85rem;
  line-height: 1.4;
}

.hero-products-slider .product-card__action {
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
}

.hero-products-slider .product-card__discount {
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
}

@media (max-width: 768px) {
  .hero-products-slider .product-card {
    width: 200px;
  }
  
  .hero-products-slider__track {
    gap: 0.8rem;
  }
  
  .hero-products-slider .product-card__body {
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-products-slider .product-card {
    width: 160px;
  }
  
  .hero-products-slider__track {
    gap: 0.6rem;
  }
  
  .hero-products-slider .product-card__body {
    padding: 0.6rem;
    gap: 0.4rem;
  }
  
  .hero-products-slider .product-card h3 {
    font-size: 0.9rem;
  }
}

.experience-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.experience-marquee:hover .experience-marquee__track {
  animation-play-state: paused;
}

.experience-marquee__track {
  display: flex;
  width: max-content;
  gap: 1.1rem;
  animation: marquee-scroll 36s linear infinite;
}

.experience-marquee__group {
  display: flex;
  gap: 1.1rem;
}

.experience-card {
  width: 320px;
  padding: 1.3rem 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.96);
  box-shadow: var(--shadow);
}

.experience-card strong {
  display: block;
  color: var(--brand-deep);
  font-size: 1.05rem;
}

.experience-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.testimonial-card {
  background: rgba(255, 253, 250, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.testimonial-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(141, 74, 47, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
}

.testimonial-card p {
  margin: 1rem 0 0;
  color: var(--brand-deep);
  font-size: 1.02rem;
  line-height: 1.8;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-marquee:hover .testimonial-marquee__track {
  animation-play-state: paused;
}

.testimonial-marquee__track {
  display: flex;
  width: max-content;
  gap: 1.1rem;
  animation: marquee-scroll 34s linear infinite;
}

.testimonial-marquee__group {
  display: flex;
  gap: 1.1rem;
}

.testimonial-card {
  width: 320px;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 1.25rem;
  align-items: start;
}

.coverage-map-wrap {
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.coverage-map {
  position: relative;
  min-width: 760px;
  min-height: 660px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(244, 196, 48, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(139, 184, 229, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(248, 240, 222, 0.92));
  box-shadow: var(--shadow);
}

.coverage-map__svg {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  height: auto;
  max-height: 630px;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 18px 30px rgba(176, 89, 0, 0.14));
}

.coverage-map__svg path {
  fill: var(--coverage-fill, rgba(240, 138, 36, 0.18));
  stroke: rgba(255, 253, 250, 0.94);
  stroke-width: 2.6;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.coverage-map__svg path:nth-of-type(5n + 1) {
  --coverage-fill: #f5c437;
}

.coverage-map__svg path:nth-of-type(5n + 2) {
  --coverage-fill: #ffd565;
}

.coverage-map__svg path:nth-of-type(5n + 3) {
  --coverage-fill: #ffb347;
}

.coverage-map__svg path:nth-of-type(5n + 4) {
  --coverage-fill: #ffe58d;
}

.coverage-map__svg path:nth-of-type(5n + 5) {
  --coverage-fill: #f29b2f;
}

.coverage-map__svg [data-coverage-state] {
  cursor: pointer;
}

.coverage-map__svg [data-coverage-state][data-availability="off"] {
  --coverage-fill: #d7a189;
}

.coverage-map__svg [data-coverage-state]:hover,
.coverage-map__svg [data-coverage-state]:focus-visible,
.coverage-map__svg [data-coverage-state].is-active {
  fill: var(--brand);
  filter: drop-shadow(0 14px 24px rgba(176, 89, 0, 0.26));
  transform: translateY(-2px) scale(1.01);
  outline: none;
}

.coverage-map__svg [data-coverage-state][data-availability="off"]:hover,
.coverage-map__svg [data-coverage-state][data-availability="off"]:focus-visible,
.coverage-map__svg [data-coverage-state][data-availability="off"].is-active {
  fill: var(--danger);
}

.coverage-map__fallback {
  margin: auto;
  color: var(--muted);
  font-weight: 600;
}

.coverage-panel {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.95);
  box-shadow: var(--shadow);
}

.coverage-panel__status {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(141, 74, 47, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
}

.coverage-panel h3 {
  margin: 0;
  font-size: 1.28rem;
  color: var(--brand-deep);
}

.coverage-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.coverage-panel__meta {
  display: grid;
  gap: 0.3rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(52, 39, 18, 0.1);
}

.coverage-panel__meta strong {
  color: var(--brand-deep);
}

.coverage-panel__meta span {
  color: var(--muted);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .product-marquee__track {
    animation: none;
  }

  .product-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .experience-marquee__track {
    animation: none;
  }

  .experience-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .testimonial-marquee__track {
    animation: none;
  }

  .testimonial-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

body[data-performance-mode="lite"] .product-marquee__track,
body[data-performance-mode="lite"] .experience-marquee__track,
body[data-performance-mode="lite"] .testimonial-marquee__track {
  animation: none;
}

body[data-performance-mode="lite"] .product-marquee,
body[data-performance-mode="lite"] .experience-marquee,
body[data-performance-mode="lite"] .testimonial-marquee {
  overflow-x: auto;
  mask-image: none;
  -webkit-mask-image: none;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(80, 102, 79, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(141, 74, 47, 0.06), rgba(255, 255, 255, 0.92));
}

.cta-banner h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  color: var(--brand-deep);
}

.cta-banner p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-hero {
  padding: 2rem 0 1rem;
}

.page-hero__panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(141, 74, 47, 0.06), rgba(80, 102, 79, 0.08)),
    rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  border: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  margin-top: 0.8rem;
  color: var(--brand-deep);
}

.page-hero p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.page-hero__image {
  overflow: hidden;
  border-radius: 24px;
  min-height: 280px;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.filter-chip,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.92);
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.pill {
  padding: 0.42rem 0.72rem;
  font-size: 0.78rem;
  cursor: default;
}

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

.product-card {
  min-width: 0;
}

.product-card.is-hidden {
  display: none;
}

.product-card__link {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 253, 250, 0.95);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card__link:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 138, 36, 0.22);
  box-shadow: 0 22px 50px rgba(176, 89, 0, 0.16);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3.8;
  overflow: hidden;
  background: #f7f3ec;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(141, 74, 47, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.18);
}

.product-card__discount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  background: rgba(255, 87, 34, 0.95);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.18);
  letter-spacing: 0.5px;
}

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

.product-card__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--brand-deep);
}

.product-card p {
  margin: 0;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.2rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-card__meta span {
  flex: 1;
}

.product-card__action {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.product-card__action:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  transform: scale(1.02);
}

.product-card__meta strong {
  color: var(--brand);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.popular-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(64, 52, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(80, 102, 79, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.popular-card__media {
  overflow: hidden;
  border-radius: 22px;
  background: #f7f3ec;
}

.popular-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card__body {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.popular-card__body h3 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--brand-deep);
}

.popular-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.gallery-panel {
  padding: 1rem;
}

.gallery-main {
  aspect-ratio: 4 / 4.4;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f3ec;
}

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

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery-thumb {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
}

.detail-panel {
  padding: 1.7rem;
}

.gallery-and-support {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

.whatsapp-support {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.whatsapp-circle {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Official WhatsApp Color */
  border-radius: 50%;
  text-align: center;
  line-height: 60px; /* Vertically center icon */
  color: white;
  font-size: 35px;
  text-decoration: none;
  
  /* Right Side Positioning */
  position: fixed;
  right: 20px;
  bottom: 20px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.whatsapp-circle:hover {
  background-color: #128C7E; /* Darker green on hover */
}

.whatsapp-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #20ba5c 100%);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
  border: 3px solid #ffffff;
  gap: 0.5rem;
}

.whatsapp-button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:active {
  transform: translateY(-2px) scale(1.02);
}

.whatsapp-icon {
  width: 56px;
  height: 56px;
}

.whatsapp-button span {
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.product-detail__title {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.02;
  color: var(--brand-deep);
}

.product-detail__summary {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.price-box {
  display: grid;
  gap: 0.2rem;
  margin: 1.35rem 0;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(141, 74, 47, 0.08), rgba(243, 237, 227, 0.9));
}

.price-box span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-box strong {
  color: var(--brand-deep);
  font-size: 1.6rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.fact {
  border-radius: 18px;
  padding: 1rem;
  background: rgba(240, 138, 36, 0.06);
}

.fact span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.fact strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--brand-deep);
  line-height: 1.5;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.product-info-card {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.product-info-card--wide {
  grid-column: 1 / -1;
}

.product-info-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.product-info-card h3 {
  margin: 0.55rem 0 0;
  font-size: 1.15rem;
  color: var(--brand-deep);
}

.product-info-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-info-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
}

.product-info-card li {
  line-height: 1.65;
}

.quantity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.6rem;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-control button {
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 1.25rem;
  cursor: pointer;
}

.quantity-control input {
  width: 66px;
  border: 0;
  text-align: center;
  background: transparent;
  font-weight: 700;
  color: var(--brand-deep);
}

.support-note {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.alert {
  padding: 1rem 1.15rem;
  margin-bottom: 1.2rem;
}

.alert strong {
  display: block;
  color: var(--brand-deep);
  margin-bottom: 0.35rem;
}

.alert-success {
  border-color: rgba(240, 138, 36, 0.22);
  background: rgba(231, 244, 235, 0.95);
}

.alert-error {
  border-color: rgba(163, 68, 47, 0.26);
  background: rgba(253, 241, 237, 0.95);
}

.alert p {
  margin: 0;
  color: var(--muted);
}

.alert a {
  color: var(--brand);
  font-weight: 800;
}

.product-spotlight {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(141, 74, 47, 0.12), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(141, 74, 47, 0.14);
}

.product-spotlight strong {
  color: var(--brand-deep);
}

.product-spotlight span {
  color: var(--muted);
  line-height: 1.65;
}

.order-history {
  margin-bottom: 1.2rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(240, 138, 36, 0.12);
  background: rgba(255, 253, 250, 0.9);
  box-shadow: var(--shadow);
}

.order-history__head {
  display: grid;
  gap: 0.25rem;
}

.order-history__head strong {
  color: var(--brand-deep);
}

.order-history__head span {
  color: var(--muted);
  line-height: 1.6;
}

.order-history__list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.order-history__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(240, 138, 36, 0.05);
}

.order-history__item strong {
  color: var(--brand-deep);
}

.order-history__item span {
  color: var(--muted);
  line-height: 1.55;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.modal__scrim {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(12, 19, 14, 0.58);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  width: min(calc(100% - 1.4rem), 760px);
  margin: 5vh auto;
  max-height: min(92vh, calc(100vh - 2rem));
  background: var(--surface);
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(12, 19, 14, 0.22);
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.modal__head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--brand-deep);
}

.modal__copy {
  padding: 0 1.5rem;
  color: var(--muted);
}

.modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  background: rgba(240, 138, 36, 0.08);
  color: var(--brand);
  font-size: 1.6rem;
  cursor: pointer;
  text-decoration: none;
}

.order-form {
  padding: 1rem 1.5rem 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--brand-deep);
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(52, 39, 18, 0.14);
  border-radius: 18px;
  background: #fffcf7;
  padding: 0.95rem 1rem;
  color: var(--text);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.2rem;
}

.form-note {
  color: var(--muted);
  line-height: 1.65;
  max-width: 24rem;
}

@media (max-width: 768px) {
  .modal__dialog {
    width: min(calc(100% - 1rem), 100%);
    margin: 1.2rem auto;
    max-height: calc(100vh - 2rem);
  }

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

  .field--full {
    grid-column: auto;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-note {
    max-width: 100%;
  }
}

.foundation-chat {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: grid;
  justify-items: start;
  gap: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  border: none;
  padding: 0;
}

.floating-whatsapp__button:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  background: #20ba5c;
}

.floating-whatsapp__button:active {
  transform: scale(0.98);
}

.floating-whatsapp__icon {
  width: 48px;
  height: 48px;
}

.floating-whatsapp__button span {
  display: none;
}

.foundation-chat__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  padding: 0.92rem 1.1rem;
  background: #1f1916;
  color: #fffdf9;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(22, 18, 14, 0.22);
  cursor: pointer;
}

.foundation-chat__toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #5dc48a;
  box-shadow: 0 0 0 4px rgba(93, 196, 138, 0.18);
}

.foundation-chat__panel {
  width: min(380px, calc(100vw - 1.5rem));
  max-height: min(74vh, 620px);
  display: grid;
  grid-template-rows: auto auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(64, 52, 42, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(22, 18, 14, 0.16);
  backdrop-filter: blur(16px);
}

.foundation-chat__panel[hidden] {
  display: none !important;
}

.foundation-chat__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(64, 52, 42, 0.08);
}

.foundation-chat__head strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-deep);
}

.foundation-chat__head p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.foundation-chat__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: rgba(64, 52, 42, 0.06);
  color: var(--brand-deep);
  font-size: 1.45rem;
  cursor: pointer;
}

.foundation-chat__messages {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  max-height: 270px;
  overflow-y: auto;
}

.foundation-chat__message {
  display: flex;
}

.foundation-chat__message p {
  margin: 0;
  padding: 0.82rem 0.9rem;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.foundation-chat__message--assistant p {
  max-width: 100%;
  background: rgba(64, 52, 42, 0.06);
  color: var(--text);
}

.foundation-chat__message--user {
  justify-content: flex-end;
}

.foundation-chat__message--user p {
  margin-left: auto;
  background: linear-gradient(135deg, #8d4a2f 0%, #b57445 100%);
  color: #fffdf9;
}

.foundation-chat__prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0 1rem 1rem;
}

.foundation-chat__prompt {
  border: 1px solid rgba(64, 52, 42, 0.12);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--brand-deep);
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.foundation-chat__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  padding: 0 1rem 0.9rem;
}

.foundation-chat__form input {
  border: 1px solid rgba(64, 52, 42, 0.12);
  border-radius: 16px;
  background: #fffdf9;
  padding: 0.85rem 0.9rem;
  color: var(--text);
}

.foundation-chat__form button {
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #8d4a2f 0%, #b57445 100%);
  color: #fffdf9;
  font-weight: 700;
  padding: 0 1rem;
  cursor: pointer;
}

.foundation-chat__note {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(181, 116, 69, 0.18), transparent 28%),
    linear-gradient(135deg, #1f1916 0%, #342821 48%, #4a3a31 100%);
  color: rgba(255, 248, 233, 0.88);
  overflow: clip;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(10, 10, 10, 0.18) 100%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 1.5rem;
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand--footer .brand__text strong,
.footer-title {
  color: #fff7e7;
}

.brand--footer .brand__text span,
.footer-copy,
.footer-links a,
.footer-links span {
  color: rgba(255, 243, 216, 0.82);
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  border-top: 1px solid rgba(255, 241, 212, 0.22);
  margin-top: 2rem;
  padding-top: 1rem;
  color: rgba(255, 244, 221, 0.76);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero__grid,
  .page-hero__panel,
  .intro-grid,
  .detail-layout,
  .cta-banner,
  .about-grid,
  .coverage-layout,
  .popular-card {
    grid-template-columns: 1fr;
  }

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

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

  .quality-grid,
  .story-grid,
  .focus-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .header-band__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.6rem 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(64, 52, 42, 0.12);
    border-radius: 26px;
    box-shadow: 0 22px 42px rgba(24, 20, 16, 0.12);
  }

  .site-search--header {
    display: none;
  }

  .coverage-map {
    min-width: 640px;
    min-height: 560px;
  }

  .coverage-map__svg {
    max-height: 520px;
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .language-switcher select {
    min-width: 114px;
    font-size: 0.88rem;
  }

  .hero__content {
    padding-top: 2rem;
  }

  .hero__grid {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-card__stats,
  .fact-grid,
  .product-info-grid,
  .form-grid,
  .footer-grid,
  .quality-grid,
  .story-grid,
  .focus-grid,
  .related-grid,
  .testimonial-grid,
  .popular-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-base {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-band__content {
    font-size: 0.82rem;
  }

  .header-shell {
    min-height: 74px;
  }

  .header-meta {
    gap: 0.45rem;
  }

  .site-search {
    width: 100%;
  }

  .site-search input[type="search"] {
    width: 100%;
    min-width: 0;
  }

  .brand__media {
    width: 72px;
    height: 48px;
    border-radius: 14px;
  }

  .brand__text span {
    font-size: 0.76rem;
  }

  .page-shell {
    padding-top: 1rem;
  }

  .language-switcher select {
    min-width: 106px;
    padding-left: 0.8rem;
    padding-right: 2rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero h1,
  .page-hero h1,
  .product-detail__title {
    word-break: break-word;
  }

  .hero__typewriter {
    min-height: 2.4rem;
  }

  .catalog-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .marquee-card {
    width: 240px;
  }

  .marquee-card__image img {
    height: 190px;
  }

  .modal__dialog {
    width: min(calc(100% - 0.8rem), 760px);
    margin: 2vh auto;
  }

  .modal__head,
  .modal__copy,
  .order-form {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .form-actions {
    align-items: stretch;
  }

  .foundation-chat {
    left: 0.7rem;
    bottom: 0.7rem;
  }

  .foundation-chat__toggle {
    padding: 0.82rem 0.95rem;
    font-size: 0.88rem;
  }

  .foundation-chat__panel {
    width: min(100vw - 1rem, 380px);
  }

  .floating-whatsapp {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .floating-whatsapp__button {
    width: 76px;
    height: 76px;
  }

  .floating-whatsapp__icon {
    width: 40px;
    height: 40px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .gallery-and-support {
    padding: 0;
    gap: 1rem;
  }

  .whatsapp-button {
    width: 120px;
    height: 120px;
    font-size: 0.78rem;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
  }
}

