:root {
  --bg: #111827;
  --bg-soft: #172033;
  --bg-alt: #f3f0e8;
  --text: #0f172a;
  --text-soft: #475569;
  --text-light: #e2e8f0;
  --border: rgba(15, 23, 42, 0.12);
  --accent: #f97316;
  --accent-strong: #ea580c;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

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

.topbar {
  background: #0b1220;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
  max-height: 140px;
  overflow: visible;
  position: relative;
  z-index: 2;
  transition: max-height 0.28s ease, opacity 0.24s ease, transform 0.24s ease;
  will-change: max-height, opacity, transform;
  backface-visibility: hidden;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.topbar-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  min-width: 0;
}

.topbar-group-left {
  flex: 1 1 520px;
}

.topbar-group-right {
  flex: 1 1 320px;
  justify-content: flex-end;
}

.topbar-chip,
.topbar-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  max-width: 100%;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.35;
}

.topbar-chip-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  opacity: 0.92;
}

.topbar-chip {
  white-space: nowrap;
}

.topbar-chip span,
.topbar-link-pill span {
  min-width: 0;
}

.topbar-address {
  max-width: 420px;
  white-space: normal;
  align-items: flex-start;
}

.topbar-address span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-width: 0;
}

.topbar-link-pill {
  white-space: nowrap;
}

.topbar-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.7rem;
  min-width: 0;
}

.topbar-dropdown {
  position: relative;
}

.topbar-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  user-select: none;
}

.topbar-dropdown-icon {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 0.2s ease;
}

.topbar-dropdown.is-open .topbar-dropdown-icon {
  transform: rotate(180deg);
}

.topbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 140px;
  padding: 0.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 18, 32, 0.98);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  z-index: 80;
}

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

.topbar-dropdown-item {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  color: rgba(226, 232, 240, 0.92);
}

.topbar-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.topbar-dropdown-item.is-current {
  background: rgba(249, 115, 22, 0.16);
  color: #fff;
}

.topbar-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(226, 232, 240, 0.92);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.topbar-social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.topbar-social-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  overflow-anchor: none;
}

.site-header:not(.is-ready) .topbar,
.site-header:not(.is-ready) .nav-shell,
.site-header:not(.is-ready) .brand-logo,
.site-header:not(.is-ready) .brand,
.site-header:not(.is-ready) .brand-mark,
.site-header:not(.is-ready) .site-nav,
.site-header:not(.is-ready) .site-nav a,
.site-header:not(.is-ready) .nav-actions .button-small {
  transition: none !important;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: padding 0.24s ease, gap 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
  will-change: padding, gap, background, box-shadow;
  backface-visibility: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 52px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-logo {
  max-width: 220px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: max-height 0.24s ease, max-width 0.24s ease;
  will-change: max-height, max-width;
  backface-visibility: hidden;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
  transition: gap 0.24s ease;
}

.site-nav a {
  position: relative;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  transition: font-size 0.24s ease, padding 0.24s ease;
}

.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.site-header.is-scrolled .nav-shell {
  padding: 0.62rem 0;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled .brand-logo {
  max-height: 52px;
  max-width: 190px;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .brand-mark {
  min-height: 46px;
}

.site-header.is-scrolled .brand-mark {
  width: 46px;
  height: 46px;
}

.site-header.is-scrolled .site-nav {
  gap: 1rem;
}

.site-header.is-scrolled .site-nav a {
  font-size: 0.95rem;
}

.site-header.is-scrolled .nav-actions .button-small {
  min-height: 42px;
  padding-top: 0.68rem;
  padding-bottom: 0.68rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.92rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.32);
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.button-dark {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}

.button-whatsapp {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.22);
}

.button-call {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.16);
}

.button-offer {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.3);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-small {
  padding: 0.72rem 1.15rem;
}

.icon-only-button {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  flex-shrink: 0;
}

.button-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.button-block {
  width: 100%;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.home-slider {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
}

.home-slider-shell {
  position: relative;
  min-height: min(86vh, 920px);
}

.home-slide {
  display: none;
  position: relative;
  min-height: min(86vh, 920px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-slide.is-active {
  display: block;
}

.home-slide-background-media,
.home-slide-overlay {
  position: absolute;
  inset: 0;
}

.home-slide-background-media {
  overflow: hidden;
}

.home-slide-background-media iframe,
.home-slide-background-media video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.home-slide-background-media iframe {
  transform: scale(1.15);
  pointer-events: none;
}

.home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.62) 34%, rgba(15, 23, 42, 0.28) 62%, rgba(15, 23, 42, 0.5) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.54));
}

.home-slide.is-no-media .home-slide-overlay {
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.22), transparent 26%),
    linear-gradient(135deg, #0f172a 0%, #172554 100%);
}

.home-slide-inner {
  position: relative;
  z-index: 1;
  min-height: min(86vh, 920px);
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.home-slide-copy h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(2.1rem, 4.25vw, 4.05rem);
  line-height: 1.02;
  max-width: 25ch;
  text-shadow: 0 10px 30px rgba(15, 23, 42, 0.28);
}

.home-slide-copy p {
  max-width: 980px;
  margin: 1.25rem 0 0;
  color: #fff;
  font-size: 1.14rem;
}

.home-slide-description,
.home-slide-description p,
.home-slide-description li,
.home-slide-description blockquote {
  color: rgba(226, 232, 240, 0.92);
}

.home-slide-description a {
  color: #fff;
}

.home-slide-copy {
  width: min(100%, 1120px);
}

.home-slide-copy .eyebrow {
  max-width: none;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #f97316;
}

.home-slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-slider-arrow {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-slider-arrow:hover,
.home-slider-dot:hover {
  transform: translateY(-1px);
}

.home-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex: 1;
}

.home-slider-dot {
  width: 44px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-slider-dot.is-active {
  background: var(--accent);
  transform: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 30%),
    linear-gradient(135deg, #101828 0%, #1e293b 100%);
  color: #fff;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.hero-grid,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
  padding: 5rem 0 4.75rem;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 1.05;
  max-width: 11ch;
}

.hero-copy p,
.page-hero p {
  max-width: 680px;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.08rem;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fdba74;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats li {
  min-width: 170px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
}

.hero-stats span {
  color: rgba(226, 232, 240, 0.8);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card,
.sidebar-card,
.form-card,
.info-card,
.product-card,
.blog-card,
.gallery-card,
.empty-state,
.cta-box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  width: min(100%, 430px);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-card h2 {
  margin: 0.7rem 0 1rem;
  font-size: 1.9rem;
  line-height: 1.1;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  padding-left: 1.4rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fdba74;
}

.page-hero .container {
  padding: 1.4rem 0 1.55rem;
}

.page-hero-simple .container {
  padding-bottom: 1.4rem;
}

.category-page-hero {
  background-position: center;
  background-size: cover;
}

.product-page-hero {
  background-position: center;
  background-size: cover;
}

.about-page-hero {
  background-position: center;
  background-size: cover;
}

.about-page-hero h1 {
  color: var(--about-hero-title, #fff);
  font-size: clamp(2.2rem, 4.6vw, var(--about-hero-size, 48px));
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.86);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
}

.page-breadcrumb a:hover {
  color: #fdba74;
}

.page-breadcrumb-separator {
  color: rgba(226, 232, 240, 0.55);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  max-width: none;
}

.page-hero .button {
  margin-top: 1rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head-tight {
  margin-bottom: 1.25rem;
}

.section-head h2,
.split-section h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.split-section,
.contact-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 2rem;
}

.home-about-section {
  background: var(--home-about-bg, #ffffff);
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.home-about-visual {
  position: relative;
}

.home-about-image-stack {
  position: relative;
  min-height: 540px;
  padding: 0 3.2rem 3.6rem 0;
}

.home-about-image-main,
.home-about-image-overlay img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.home-about-image-main {
  min-height: 540px;
}

.home-about-image-overlay {
  position: absolute;
  right: 0;
  top: 2rem;
  width: min(44%, 260px);
}

.home-about-image-overlay img {
  aspect-ratio: 4 / 4.4;
}

.home-about-image-placeholder {
  min-height: 540px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.16), rgba(15, 23, 42, 0.08));
  border: 1px solid rgba(148, 163, 184, 0.24);
  display: grid;
  place-content: center;
  gap: 0.7rem;
  text-align: center;
  color: var(--home-about-title, #0f172a);
  padding: 2rem;
}

.home-about-image-placeholder span {
  color: var(--home-about-accent, #f97316);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.home-about-image-placeholder strong {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.home-about-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 0;
  min-width: 180px;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: var(--home-about-accent, #f97316);
  color: #fff;
  box-shadow: 0 22px 40px rgba(249, 115, 22, 0.28);
}

.home-about-badge strong {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1;
}

.home-about-badge span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.88);
}

.home-about-copy h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 3.6vw, var(--home-about-title-size, 42px));
  line-height: 1.06;
  color: var(--home-about-title, #0f172a);
}

.home-about-section .section-kicker {
  color: var(--home-about-accent, #f97316);
}

.home-about-rich-text,
.home-about-rich-text p {
  color: var(--home-about-subtitle, #475569);
  font-size: clamp(1rem, 1.5vw, var(--home-about-text-size, 18px));
}

.home-about-rich-text {
  margin-top: 1.2rem;
}

.home-about-stats-grid {
  margin-top: 1.7rem;
}

.home-about-stat-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.home-about-stat-card strong {
  color: var(--home-about-title, #0f172a);
}

.home-about-stat-card span:not(.home-about-stat-icon) {
  color: var(--home-about-subtitle, #475569);
}

.home-about-stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3rem;
  background: rgba(249, 115, 22, 0.12);
  background: color-mix(in srgb, var(--home-about-accent, #f97316) 12%, white);
  color: var(--home-about-accent, #f97316);
}

.home-about-stat-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.about-content-section {
  background: var(--about-section-bg, #ffffff);
}

.about-content-grid,
.about-mv-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.about-content-grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 2.2rem;
  align-items: start;
}

.about-content-image-stack {
  position: relative;
  min-height: 420px;
  max-width: 420px;
  padding: 0 0 3.2rem 2.2rem;
}

.about-content-main-image,
.about-content-small-image img,
.about-mv-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.about-content-main-image,
.about-content-main-placeholder {
  min-height: 420px;
}

.about-content-small-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(34%, 170px);
}

.about-content-small-image img {
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 8px solid rgba(255, 255, 255, 0.92);
}

.about-content-main-placeholder,
.about-mv-placeholder {
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.15), rgba(15, 23, 42, 0.08));
  border: 1px solid rgba(148, 163, 184, 0.24);
  display: grid;
  place-content: center;
  gap: 0.65rem;
  text-align: center;
  padding: 2rem;
}

.about-content-main-placeholder span,
.about-mv-placeholder span {
  color: var(--about-section-kicker, #f97316);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.about-content-main-placeholder strong,
.about-mv-placeholder strong {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  color: var(--about-section-title, #0f172a);
}

.about-content-badge {
  position: absolute;
  right: 1rem;
  bottom: 1.2rem;
  min-width: 180px;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.2);
}

.about-content-badge strong {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.about-content-badge span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.84);
}

.about-content-copy .section-kicker,
.about-mv-copy .section-kicker {
  color: var(--about-section-kicker, #f97316);
}

.about-content-copy h2,
.about-mv-head h2 {
  margin: 0.45rem 0 0;
  line-height: 1.06;
  color: var(--about-section-title, #0f172a);
}

.about-content-copy h2 {
  font-size: clamp(2rem, 3.7vw, var(--about-section-title-size, 40px));
}

.about-content-rich-text,
.about-content-rich-text p {
  color: var(--about-section-text, #475569);
}

.about-content-rich-text {
  margin-top: 1.2rem;
}

.about-mv-section {
  background: var(--about-mv-bg, #fff7ed);
}

.about-mv-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.about-mv-head .section-kicker {
  color: var(--about-mv-accent, #f97316);
}

.about-mv-visual img,
.about-mv-placeholder {
  min-height: 520px;
}

.about-mv-head h2 {
  font-size: clamp(1.95rem, 3.4vw, var(--about-mv-title-size, 36px));
  color: var(--about-mv-title, #0f172a);
}

.about-mv-copy .section-kicker {
  color: var(--about-mv-accent, #f97316);
}

.about-mv-rows {
  display: grid;
  gap: 1.7rem;
}

.about-mv-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: center;
}

.about-mv-row-reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
}

.about-mv-visual {
  max-width: 460px;
}

.about-mv-row-reverse .about-mv-visual {
  margin-left: auto;
}

.about-mv-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.about-mv-card {
  padding: 1.35rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(249, 115, 22, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.about-mv-card h3 {
  margin: 0 0 0.55rem;
  color: var(--about-mv-title, #0f172a);
}

.about-mv-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.about-mv-card-copy,
.about-mv-card-copy p,
.about-mv-card-copy li {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.about-mv-card-copy p {
  margin: 0;
}

.about-mv-card-copy p + p,
.about-mv-card-copy ul,
.about-mv-card-copy ol {
  margin-top: 0.85rem;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.stats-panel {
  display: grid;
  gap: 1rem;
}

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

.stat-card {
  padding: 1.4rem 1.3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3.1vw, 2.7rem);
  line-height: 1;
  color: #0f172a;
}

.stat-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-soft);
}

.contact-highlight {
  padding: 1.7rem;
}

.contact-highlight p {
  margin-bottom: 0;
}

.info-card,
.form-card,
.sidebar-card,
.empty-state,
.cta-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.6rem;
}

.info-card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 14px;
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.product-card,
.blog-card,
.gallery-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}

.gallery-card-clickable {
  position: relative;
  cursor: zoom-in;
}

.gallery-card-media {
  position: relative;
}

.card-media,
.gallery-card img,
.gallery-card video,
.detail-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-image {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-card-trigger {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.gallery-card-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(15, 23, 42, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-card-clickable:hover .gallery-card-trigger::before,
.gallery-card-clickable:focus-within .gallery-card-trigger::before {
  opacity: 1;
}

.gallery-card-trigger-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.gallery-card-trigger-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

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

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.gallery-lightbox-content {
  max-width: min(1200px, 100%);
  margin: 0 auto;
}

.gallery-lightbox-media {
  border-radius: 30px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.42);
}

.gallery-lightbox-media img,
.gallery-lightbox-media video,
.gallery-lightbox-media iframe {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #020617;
}

.gallery-lightbox-media iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-size: 1.6rem;
  line-height: 1;
}

.card-placeholder,
.detail-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  aspect-ratio: 4 / 3;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(15, 23, 42, 0.05)),
    linear-gradient(135deg, #fff, #f8fafc);
}

.card-placeholder span,
.detail-placeholder span {
  display: block;
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.card-placeholder strong,
.detail-placeholder strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.5rem;
}

.detail-placeholder {
  border-radius: 24px;
  border: 1px solid var(--border);
}

.card-body {
  padding: 1.45rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.blog-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.card-body h2,
.card-body h3,
.article-content h2,
.info-card h2,
.info-card h3,
.sidebar-card h2,
.form-card h2,
.cta-box h2 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p,
.info-card p,
.form-card p,
.sidebar-card p,
.empty-state p,
.cta-box p,
.post-meta-line,
.rich-text p {
  color: var(--text-soft);
}

.blog-card .card-body p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .text-link {
  margin-top: auto;
}

.blog-page-section-gap {
  margin-top: 2.25rem;
}

.home-slide-description p:last-child {
  margin-bottom: 0;
}

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

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.category-showcase-card,
.category-detail-box,
.category-faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.category-showcase-card {
  overflow: hidden;
}

.category-showcase-link,
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.product-search-form {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.product-search-field {
  flex: 1 1 320px;
}

.product-search-field input {
  width: 100%;
  min-height: 54px;
  padding: 0.92rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--text);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.product-search-field input:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.44);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.product-card-body-minimal {
  padding: 1rem 1rem 1.1rem;
}

.product-card-body-minimal h2 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.category-showcase-card.is-active {
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: 0 22px 48px rgba(249, 115, 22, 0.14);
}

.category-showcase-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-showcase-body {
  padding: 1rem 1rem 0.9rem;
}

.category-showcase-body h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 1.02rem;
}

.category-showcase-actions {
  padding: 0 1rem 1rem;
}

.home-category-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-category-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 320px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 0.35rem 0;
  scrollbar-width: none;
}

.home-category-track::-webkit-scrollbar {
  display: none;
}

.home-category-card {
  display: block;
  position: relative;
  min-height: 330px;
  border-radius: 30px;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18);
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.82));
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(15, 23, 42, 0.22);
}

.home-category-media,
.home-category-media img,
.home-category-placeholder {
  width: 100%;
  height: 100%;
}

.home-category-media img {
  display: block;
  object-fit: cover;
}

.home-category-placeholder {
  display: grid;
  align-content: end;
  gap: 0.45rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.home-category-placeholder span {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #fdba74;
  font-weight: 700;
}

.home-category-placeholder strong {
  font-size: 1.25rem;
  line-height: 1.15;
}

.home-category-meta {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-category-meta h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  color: #fff;
}

.home-category-icon,
.category-scroll-button {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3rem;
}

.home-category-icon {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(12px);
}

.home-category-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.category-scroll-button {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #0f172a;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  cursor: pointer;
}

.category-scroll-button[disabled] {
  opacity: 0.45;
  cursor: default;
}

.category-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font-weight: 600;
}

.category-chip.is-active,
.category-chip:hover {
  border-color: rgba(249, 115, 22, 0.28);
  background: rgba(249, 115, 22, 0.08);
  color: #c2410c;
}

.product-card-link {
  height: 100%;
}

.product-card-link .text-link {
  margin-top: auto;
}

.category-detail-box {
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.category-faq-shell {
  margin-top: 2rem;
}

.category-faq-list {
  display: grid;
  gap: 0.9rem;
}

.category-faq-item {
  padding: 1.2rem 1.35rem;
}

.category-faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.category-faq-item p {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
}

.product-specs-card {
  margin-top: 1.4rem;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.product-specs-card h2 {
  margin-top: 0;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.product-spec-table th,
.product-spec-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  vertical-align: top;
  text-align: left;
}

.product-spec-table tr:last-child th,
.product-spec-table tr:last-child td {
  border-bottom: 0;
}

.product-spec-table th {
  width: 34%;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
}

.product-spec-table td {
  color: var(--text-soft);
  background: #fff;
}

.product-detail-stack {
  display: grid;
  gap: 1.4rem;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.product-gallery-panel,
.product-summary-panel {
  min-width: 0;
}

.product-summary-panel {
  display: grid;
  gap: 1.15rem;
}

.product-detail-section {
  padding: 1.7rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.product-gallery-viewer {
  display: grid;
  gap: 0.9rem;
}

.product-gallery-stage-wrap {
  position: relative;
}

.product-gallery-stage,
.product-gallery-empty {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.product-gallery-stage img,
.product-gallery-empty {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.product-gallery-empty {
  display: grid;
  place-content: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(15, 23, 42, 0.04));
}

.product-gallery-empty span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.product-gallery-empty strong {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3.1rem;
  height: 3.1rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.product-gallery-nav.is-prev {
  left: 1rem;
}

.product-gallery-nav.is-next {
  right: 1rem;
}

.product-gallery-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.product-gallery-thumb.is-active {
  border-color: rgba(249, 115, 22, 0.72);
}

.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

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

.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.product-video-shell {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.product-video-frame {
  margin-top: 0;
}

.product-contact-layout .form-card,
.product-contact-layout .info-card {
  height: 100%;
}

.product-contact-layout {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.product-contact-info-shell,
.product-contact-form-card {
  height: 100%;
}

.product-contact-info-shell {
  padding: 1.45rem;
  background: linear-gradient(180deg, #fffaf5, #ffffff);
}

.product-contact-info-list {
  display: grid;
  gap: 0.8rem;
}

.product-contact-info-box {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.product-contact-info-box strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.product-contact-info-box a,
.product-contact-info-box span {
  display: block;
  color: var(--text);
  line-height: 1.55;
}

.product-contact-form-card {
  padding: 2rem;
}

.product-contact-form-grid {
  gap: 1rem;
}

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

.product-contact-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0.8rem;
}

.product-contact-info-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
}

.product-contact-info-card h2 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.product-contact-info-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.compact-frame iframe,
.video-frame iframe {
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
}

.compact-frame iframe {
  border-radius: 0;
}

.video-frame {
  margin-top: 1.2rem;
}

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

.filter-button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 0.72rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

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

.post-date,
.post-meta-line {
  display: inline-flex;
  gap: 1rem;
  font-size: 0.94rem;
}

.article-head {
  max-width: 860px;
}

.article-content,
.article-sidebar {
  display: grid;
  gap: 1.25rem;
}

.sidebar-link {
  display: block;
  padding: 0.82rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 600;
}

.sidebar-link:first-of-type {
  border-top: 0;
}

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

.contact-hero {
  background-position: center;
  background-size: cover;
}

.contact-hero .container {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: stretch;
}

.contact-hero-copy {
  display: grid;
  align-content: center;
  gap: 0.85rem;
}

.contact-hero-description {
  max-width: 58ch;
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
}

.contact-hero-card {
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(16px);
}

.contact-hero-card h2 {
  margin: 0.55rem 0 1.25rem;
  color: #fff;
  font-size: 1.65rem;
}

.contact-hero-meta {
  display: grid;
  gap: 0.95rem;
}

.contact-hero-meta a,
.contact-hero-meta div {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-meta strong {
  color: #fff;
}

.contact-hero-meta span {
  color: rgba(226, 232, 240, 0.88);
}

.contact-info-section {
  padding-top: 2.2rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.45rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.contact-card-icon,
.contact-showcase-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.contact-card-icon svg,
.contact-showcase-item-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-body h2 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.contact-card-body p {
  margin: 0 0 0.8rem;
}

.contact-quick-card {
  min-height: 100%;
}

.contact-quick-value {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-connect-section {
  position: relative;
}

.contact-connect-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.6rem;
  align-items: stretch;
}

.contact-connect-panel {
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(160deg, #101828, #1f2937);
  color: #fff;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.24);
}

.contact-connect-panel .section-kicker,
.contact-connect-panel h2,
.contact-connect-panel .contact-connect-copy,
.contact-connect-panel .contact-connect-copy p,
.contact-connect-panel .contact-connect-copy strong,
.contact-connect-panel .contact-connect-copy span,
.contact-connect-panel .contact-connect-copy li {
  color: #fff !important;
}

.contact-connect-panel h2 {
  margin: 0.6rem 0 1rem;
  color: #fff;
}

.contact-connect-copy,
.contact-connect-copy p {
  color: #fff;
}

.contact-connect-copy p:last-child {
  margin-bottom: 0;
}

.contact-connect-form {
  margin-top: 1.35rem;
  gap: 0.95rem;
}

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

.contact-connect-form label span {
  color: rgba(226, 232, 240, 0.92);
}

.contact-connect-form input,
.contact-connect-form textarea {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-connect-form input::placeholder,
.contact-connect-form textarea::placeholder {
  color: rgba(226, 232, 240, 0.55);
}

.contact-connect-form input:focus,
.contact-connect-form textarea:focus {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.contact-connect-map {
  min-width: 0;
}

.contact-connect-map .contact-map-frame,
.contact-map-placeholder {
  height: 100%;
  min-height: 460px;
}

.contact-map-placeholder {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.6rem;
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.1);
}

.contact-map-placeholder p {
  margin: 0;
}

.contact-map-section {
  padding-top: 0;
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.1);
}

.contact-map-frame iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.contact-home-shell .section-head {
  margin-bottom: 1.7rem;
}

.contact-home-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.contact-home-info-card,
.contact-home-form-card {
  height: 100%;
}

.contact-home-info-card {
  background: linear-gradient(180deg, #fffaf5, #ffffff);
  padding: 1.8rem;
}

.contact-home-info-card h2 {
  margin-bottom: 0.6rem;
}

.contact-home-info-card > p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.contact-home-info-list {
  display: grid;
  gap: 0.9rem;
}

.contact-home-info-row {
  display: block;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.contact-home-info-row strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contact-home-info-row a,
.contact-home-info-row span {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-home-form-card {
  padding: 2.1rem;
}

.contact-home-form-card h2 {
  margin-bottom: 0.55rem;
}

.contact-home-form-card > p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  max-width: 620px;
}

.contact-home-form-grid {
  gap: 1.05rem;
}

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

.contact-home-form-grid textarea {
  min-height: 180px;
}

.stack-form {
  display: grid;
  gap: 1rem;
}

.stack-form label {
  display: grid;
  gap: 0.45rem;
}

.stack-form input,
.stack-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
}

.stack-form textarea,
.admin-form textarea {
  resize: vertical;
}

.alert {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert-success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.alert-error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.empty-state {
  text-align: center;
}

.cta-box {
  margin-top: 1.6rem;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.86);
}

.newsletter-band {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
}

.newsletter-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
}

.newsletter-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.4rem;
  align-items: center;
}

.newsletter-copy {
  display: grid;
  gap: 0.35rem;
}

.newsletter-copy h2 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.08;
  white-space: nowrap;
}

.newsletter-copy p {
  max-width: 560px;
  margin: 0.35rem 0 0;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-card {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 56px rgba(124, 45, 18, 0.22);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

.newsletter-form input {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.newsletter-note {
  margin: 0.7rem 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
}

.rich-text p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.rich-text div,
.rich-text ul,
.rich-text ol,
.rich-text blockquote,
.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.rich-text ul,
.rich-text ol {
  padding-left: 1.25rem;
}

.rich-text a {
  color: var(--primary);
  text-decoration: underline;
}

.rich-text blockquote {
  margin-left: 0;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 4px solid rgba(249, 115, 22, 0.32);
  color: var(--text-soft);
}

.site-footer {
  padding: 4rem 0 1.4rem;
  background: #0b1220;
  color: rgba(226, 232, 240, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin-top: 0;
}

.site-footer a {
  color: inherit;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.footer-brand-logo {
  max-width: min(220px, 100%);
  max-height: 72px;
  object-fit: contain;
}

.footer-brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-about {
  margin-top: 1rem;
  color: rgba(226, 232, 240, 0.8);
}

.footer-about p:last-child {
  margin-bottom: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 1.35rem 0 1rem;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.7), rgba(255, 255, 255, 0.08));
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(226, 232, 240, 0.92);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-column-title {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-link-list li {
  margin: 0;
}

.footer-link-list a {
  color: rgba(226, 232, 240, 0.82);
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.footer-contact-list {
  display: grid;
  gap: 1rem;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.14);
  color: #fb923c;
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer-contact-content {
  display: grid;
  gap: 0.2rem;
}

.footer-contact-content strong {
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-content a,
.footer-contact-content span {
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.55;
  word-break: break-word;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.72);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-content-grid,
  .about-mv-grid,
  .about-mv-row,
  .about-mv-row-reverse,
  .product-overview-grid,
  .home-about-grid,
  .split-section,
  .contact-layout,
  .article-layout,
  .footer-grid,
  .card-grid-4,
  .card-grid-3,
  .gallery-grid,
  .category-showcase-grid,
  .product-gallery-grid,
  .contact-card-grid,
  .contact-connect-grid,
  .contact-hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-panel {
    justify-content: flex-start;
  }

  .newsletter-shell {
    grid-template-columns: 1fr;
  }

  .newsletter-copy h2 {
    white-space: normal;
  }

  .about-content-image-stack {
    padding-left: 0;
  }

  .home-category-shell {
    gap: 0.75rem;
  }

  .category-scroll-button {
    width: 2.65rem;
    height: 2.65rem;
    flex-basis: 2.65rem;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "menu menu"
      "actions actions";
    padding: 0.78rem 0;
    gap: 0.75rem;
  }

  .brand {
    grid-area: brand;
    min-height: 44px;
  }

  .nav-toggle {
    display: block;
    grid-area: toggle;
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.06);
  }

  .site-nav {
    grid-area: menu;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding-top: 0.7rem;
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.75rem 0;
  }

  .nav-actions {
    display: none;
  }

  .site-header.is-menu-open .nav-actions {
    display: flex;
    grid-area: actions;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.15rem;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-group,
  .topbar-group-right {
    width: 100%;
    justify-content: center;
  }

  .topbar-utility {
    width: 100%;
    justify-content: center;
  }

  .topbar-dropdown-menu {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 720px) {
  .nav-shell {
    gap: 0.65rem;
  }

  .brand-logo {
    max-width: min(156px, 100%);
    max-height: 48px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    justify-content: stretch;
    gap: 0.7rem;
  }

  .nav-actions .button-small {
    min-width: 0;
    min-height: 40px;
  }

  .nav-actions .button-offer {
    flex: 1 1 220px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.04em;
    padding: 0.72rem 1rem;
  }

  .card-grid-4,
  .card-grid-3,
  .gallery-grid,
  .about-content-grid,
  .about-mv-grid,
  .about-mv-row,
  .about-mv-row-reverse,
  .category-showcase-grid,
  .product-gallery-grid,
  .product-overview-grid,
  .home-about-grid,
  .split-section,
  .contact-layout,
  .article-layout,
  .footer-grid,
  .contact-panel,
  .contact-card-grid,
  .contact-connect-grid,
  .contact-hero-inner,
  .product-contact-form-row,
  .contact-home-form-row,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .blog-card-media {
    min-height: 200px;
  }

  .home-about-image-stack {
    min-height: auto;
    padding: 0 0 5rem;
  }

  .about-content-image-stack {
    min-height: auto;
    padding: 0 0 5rem;
  }

  .about-mv-head {
    margin-bottom: 1.4rem;
  }

  .about-mv-visual {
    max-width: none;
  }

  .home-about-image-main,
  .home-about-image-placeholder,
  .about-content-main-image,
  .about-content-main-placeholder,
  .product-gallery-stage img,
  .product-gallery-empty,
  .about-mv-visual img,
  .about-mv-placeholder {
    min-height: 360px;
  }

  .home-about-image-overlay {
    width: min(48%, 220px);
  }

  .about-content-small-image {
    width: min(40%, 180px);
  }

  .home-category-shell {
    display: block;
  }

  .home-category-track {
    grid-auto-columns: minmax(240px, 82vw);
    padding-bottom: 0.25rem;
  }

  .category-scroll-button {
    display: none;
  }

  .gallery-lightbox-dialog {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .gallery-lightbox-nav.is-prev {
    left: 1rem;
  }

  .gallery-lightbox-nav.is-next {
    right: 1rem;
  }

  .section,
  .hero-grid {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .page-hero .container {
    padding-top: 1.15rem;
    padding-bottom: 1.25rem;
  }

  .contact-hero .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-hero-card,
  .contact-connect-panel {
    padding: 1.35rem;
  }

  .contact-map-frame iframe {
    height: 360px;
  }

  .contact-connect-map .contact-map-frame,
  .contact-map-placeholder {
    min-height: 360px;
  }

  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
  }

  .product-spec-table th {
    border-bottom: 0;
    padding-bottom: 0.45rem;
  }

  .product-spec-table td {
    padding-top: 0.35rem;
  }

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

  .hero-copy h1,
  .home-slide-copy h2,
  .page-hero h1 {
    max-width: none;
  }

  .hero-stats li {
    min-width: calc(50% - 0.5rem);
  }

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

  .home-slider-shell {
    min-height: 74vh;
  }

  .home-slider-controls {
    flex-wrap: wrap;
    justify-content: center;
    bottom: 1.4rem;
  }

  .home-slide,
  .home-slide-inner {
    min-height: 74vh;
  }

  .home-slide-inner {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .home-slide-copy h2 {
    font-size: clamp(1.85rem, 5.5vw, 3.2rem);
    max-width: none;
  }

  .home-slide-copy p {
    max-width: none;
  }

  .newsletter-band {
    padding: 3.5rem 0;
  }
}

@media (max-width: 520px) {
  .product-search-form {
    align-items: stretch;
  }

  .product-search-field,
  .product-search-form .button {
    width: 100%;
  }

  .hero-stats li {
    min-width: 100%;
  }

  .home-slide,
  .home-slide-inner,
  .home-slider-shell {
    min-height: 68vh;
  }

  .home-slide-inner {
    padding-top: 4.8rem;
    padding-bottom: 5.6rem;
  }

  .home-slide-copy p {
    font-size: 1rem;
  }

  .home-slide-copy .eyebrow {
    font-size: 0.92rem;
  }

  .home-slider-arrow {
    width: 46px;
    height: 46px;
  }

  .home-slider-dot {
    width: 30px;
  }
}

[dir="rtl"] body,
[dir="rtl"] .site-header,
[dir="rtl"] .site-footer,
[dir="rtl"] .page-hero,
[dir="rtl"] .page-section,
[dir="rtl"] .card-body,
[dir="rtl"] .empty-state,
[dir="rtl"] .contact-card,
[dir="rtl"] .product-contact-panel,
[dir="rtl"] .newsletter-shell,
[dir="rtl"] .footer-grid {
  text-align: right;
}

[dir="rtl"] .topbar-inner,
[dir="rtl"] .nav-shell,
[dir="rtl"] .section-head,
[dir="rtl"] .contact-layout,
[dir="rtl"] .contact-connect-grid,
[dir="rtl"] .contact-home-layout,
[dir="rtl"] .product-overview-grid,
[dir="rtl"] .about-content-layout,
[dir="rtl"] .about-mv-row,
[dir="rtl"] .footer-grid,
[dir="rtl"] .newsletter-shell {
  direction: rtl;
}

[dir="rtl"] .topbar-dropdown-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .nav-actions,
[dir="rtl"] .topbar-socials,
[dir="rtl"] .topbar-group-left,
[dir="rtl"] .topbar-group-right {
  flex-direction: row-reverse;
}

[dir="rtl"] .page-breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-form-row,
[dir="rtl"] .contact-home-form-row,
[dir="rtl"] .product-contact-form-row {
  direction: rtl;
}

[dir="rtl"] .product-gallery-nav.is-prev,
[dir="rtl"] .gallery-lightbox-nav.is-prev {
  left: auto;
  right: 1rem;
}

[dir="rtl"] .product-gallery-nav.is-next,
[dir="rtl"] .gallery-lightbox-nav.is-next {
  right: auto;
  left: 1rem;
}

[dir="rtl"] .page-breadcrumb-separator,
[dir="rtl"] .topbar-dropdown-icon,
[dir="rtl"] .product-gallery-nav svg,
[dir="rtl"] .gallery-lightbox-nav svg,
[dir="rtl"] .category-scroll-button svg {
  transform: scaleX(-1);
}
