@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #0c1233;
  --indigo-950: #171354;
  --indigo-900: #242176;
  --indigo-700: #3733a3;
  --indigo-500: #625ed0;
  --lavender: #d7d5ff;
  --paper: #f5f6fa;
  --white: #ffffff;
  --muted: #687087;
  --line: #dfe2eb;
  --soft-blue: #ececff;
  --shadow: 0 28px 70px rgba(11, 17, 50, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: min(1380px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

html[dir="ltr"] body {
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.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;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--indigo-900);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.logo-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--indigo-950);
}

.logo-showcase-link {
  display: block;
  width: 100%;
  background: var(--indigo-900);
}

.logo-showcase-link img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(23, 19, 84, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  min-height: 86px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.brand {
  display: block;
  position: relative;
  width: 114px;
  height: 69px;
  padding: 0;
  overflow: hidden;
  border-radius: 17px;
  background: transparent;
  flex-shrink: 0;
}

.brand img {
  position: absolute;
  top: -6.5px;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 84px;
  transform: translateX(-50%);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.main-nav a,
.main-nav .nav-offers {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.main-nav .nav-offers {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.main-nav .nav-offers svg {
  width: 17px;
  height: 17px;
  fill: var(--lavender);
}

.main-nav a::after,
.main-nav .nav-offers::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--lavender);
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav .nav-offers:hover,
.main-nav .nav-offers:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav .nav-offers:hover::after,
.main-nav .nav-offers:focus-visible::after {
  width: 100%;
}

.header-action,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--indigo-900);
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-action:hover,
.header-action:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  background: var(--lavender);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 76px 0 86px;
  overflow: hidden;
  background: var(--indigo-950);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  left: -300px;
  top: -280px;
  border: 1px solid rgba(215, 213, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(215, 213, 255, 0.03),
    0 0 0 140px rgba(215, 213, 255, 0.025),
    0 0 0 210px rgba(215, 213, 255, 0.02);
}

.hero::after {
  content: "DIC";
  position: absolute;
  right: -20px;
  bottom: -105px;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(12rem, 25vw, 28rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
  direction: ltr;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(470px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--lavender);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-kicker > span {
  display: block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-kicker-dark {
  color: var(--indigo-700);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.5rem, 6.2vw, 7.1rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--lavender);
  font-style: normal;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  padding: 10px 0 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
  border-color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-stats div {
  display: grid;
  gap: 2px;
  padding-inline: 20px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.hero-stats strong {
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1.2;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.hero-gallery {
  position: relative;
  min-height: 620px;
}

.hero-product {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.96);
  background: var(--white);
  box-shadow: 0 35px 80px rgba(3, 4, 24, 0.45);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-main {
  z-index: 2;
  right: 5%;
  top: 4%;
  width: 49%;
  height: 84%;
  border-radius: 170px 170px 28px 28px;
}

.hero-product-top {
  z-index: 1;
  left: 4%;
  top: 0;
  width: 40%;
  height: 48%;
  border-radius: 28px;
  transform: rotate(-5deg);
}

.hero-product-bottom {
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 43%;
  height: 47%;
  border: 0;
  border-radius: 28px;
  transform: rotate(4deg);
}

.hero-badge {
  position: absolute;
  z-index: 5;
  right: 44%;
  bottom: 5%;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 6px solid var(--indigo-950);
  border-radius: 50%;
  background: var(--lavender);
  color: var(--indigo-950);
  line-height: 1.4;
  transform: rotate(-8deg);
}

.hero-badge span {
  font-size: 0.74rem;
}

.hero-badge strong {
  font-size: 0.9rem;
}

.about-section {
  padding: 110px max(24px, calc((100% - min(1380px, calc(100% - 48px))) / 2));
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.catalog-heading h2,
.closing-section h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid article {
  min-height: 280px;
  padding: 34px clamp(24px, 3vw, 50px) 38px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid article:first-child {
  border-inline-start: 0;
}

.process-number {
  color: var(--lavender);
  font-size: 0.88rem;
  font-weight: 600;
}

.process-grid h3 {
  margin: 70px 0 10px;
  font-size: 1.7rem;
}

.process-grid p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.catalog {
  padding: 72px 0 130px;
  background: var(--paper);
}

.catalog-shell {
  width: var(--container);
  margin-inline: auto;
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: end;
  gap: 54px;
}

.catalog-heading h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.catalog-intro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.search-box {
  min-height: 64px;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(18, 25, 65, 0.05);
}

.search-box:focus-within {
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 4px rgba(98, 94, 208, 0.12);
}

.search-box svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--indigo-700);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}

.search-box input::placeholder {
  color: #969caf;
}

.catalog-meta {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.results-count {
  margin: 24px 0;
  color: var(--indigo-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.catalog-meta .results-count {
  margin: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--indigo-900);
  color: var(--white);
  cursor: pointer;
  text-align: right;
  box-shadow: 0 16px 40px rgba(12, 18, 51, 0.08);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  outline: none;
}

.category-card--featured {
  grid-column: span 2;
}

.category-visual,
.category-shade {
  position: absolute;
  inset: 0;
}

.category-visual {
  z-index: -2;
  background: linear-gradient(145deg, var(--indigo-700), var(--indigo-950));
}

.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 420ms ease;
}

.category-card:hover .category-visual img,
.category-card:focus-visible .category-visual img {
  transform: scale(1.045);
}

.category-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 18, 51, 0.03) 12%, rgba(12, 18, 51, 0.9) 100%);
}

.category-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.08em;
}

.category-card-body {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  padding: 28px;
}

.category-number {
  display: block;
  margin-bottom: 10px;
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 600;
  direction: ltr;
}

.category-name {
  display: block;
  color: var(--white);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
}

.category-meta {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 600;
}

.category-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.3rem;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, color 180ms ease;
}

.category-card:hover .category-arrow,
.category-card:focus-visible .category-arrow {
  background: var(--white);
  color: var(--indigo-900);
}

.empty-state {
  padding: 80px 20px;
  border: 1px dashed #c9ccda;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.empty-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--indigo-700);
  font-size: 1.5rem;
  font-weight: 600;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.empty-state button,
.load-more {
  min-height: 50px;
  margin-top: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--indigo-900);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #aeb2c1;
  background: transparent;
  color: var(--indigo-900);
  font-weight: 600;
  cursor: pointer;
}

.product-heading {
  margin-bottom: 36px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: right;
  box-shadow: 0 14px 34px rgba(12, 18, 51, 0.055);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(55, 51, 163, 0.38);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  outline: none;
}

.product-card--offer {
  border-color: rgba(55, 51, 163, 0.3);
  box-shadow: 0 16px 38px rgba(55, 51, 163, 0.1);
}

.product-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.94;
  overflow: hidden;
  background: #f1f2f6;
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 14%;
  background: linear-gradient(transparent, rgba(12, 18, 51, 0.08));
  pointer-events: none;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-offer-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 2;
  min-width: 76px;
  min-height: 58px;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 7px 12px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 17px;
  background: linear-gradient(145deg, var(--indigo-700), var(--indigo-950));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(23, 19, 84, 0.3);
  line-height: 1;
}

.product-offer-badge small {
  font-size: 0.66rem;
  font-weight: 600;
}

.product-offer-badge strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.product-card:hover .product-image-wrap img,
.product-card:focus-visible .product-image-wrap img {
  transform: scale(1.02);
}

.product-card-body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 20px;
}

.product-code-wrap {
  display: grid;
  gap: 2px;
}

.product-code-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.product-code {
  color: var(--indigo-900);
  font-size: 1.05rem;
  letter-spacing: 0.035em;
}

.product-action {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--indigo-700);
  font-size: 1.1rem;
  font-weight: 600;
}

.load-more {
  display: block;
  min-width: 180px;
  margin: 38px auto 0;
}

/* The category pager is an invisible observer target: more products load as it nears the viewport. */
#load-more {
  width: 1px;
  min-width: 1px;
  height: 1px;
  min-height: 1px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.closing-section {
  min-height: 470px;
  display: grid;
  place-content: center;
  padding: 80px 24px;
  overflow: hidden;
  background: var(--indigo-900);
  color: var(--white);
  text-align: center;
}

.closing-section .section-kicker {
  justify-content: center;
}

.closing-section h2 {
  font-size: clamp(3.2rem, 7vw, 7.4rem);
}

.closing-section > a {
  justify-self: center;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-weight: 600;
}

.product-dialog {
  width: min(1120px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(2, 5, 30, 0.42);
}

.product-dialog::backdrop {
  background: rgba(4, 7, 26, 0.76);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  max-height: calc(100dvh - 30px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  overflow: auto;
}

.dialog-close {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
}

.dialog-media {
  min-height: 0;
  max-height: calc(100dvh - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px;
  overflow: auto;
  background: #ebedf3;
}

.dialog-image-wrap {
  width: 100%;
  height: min(760px, calc(100dvh - 110px));
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 18px;
  background: var(--white);
}

.dialog-image-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dialog-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.dialog-thumbnail {
  width: 68px;
  aspect-ratio: 3 / 4.94;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.dialog-thumbnail.is-active {
  border-color: var(--indigo-700);
}

.dialog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-details {
  align-self: center;
  padding: 90px 50px 60px;
}

.dialog-details h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.3;
}

.dialog-note {
  margin: 18px 0 30px;
  color: var(--muted);
}

.barcode-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.barcode-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.barcode-card strong {
  display: block;
  margin-top: 5px;
  color: var(--indigo-900);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
}

.copy-code {
  width: 100%;
  min-height: 54px;
  margin-top: 14px;
  border: 0;
  border-radius: 14px;
  background: var(--indigo-900);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.copy-status {
  min-height: 28px;
  margin: 10px 0 0;
  color: var(--indigo-700);
  font-size: 0.83rem;
  font-weight: 500;
  text-align: center;
}

footer {
  min-height: 190px;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr auto;
  align-items: center;
  gap: 34px;
  color: var(--muted);
}

.footer-brand {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.footer-brand img {
  width: 100%;
  height: 46px;
  object-fit: contain;
}

footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
}

:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(220px, 300px) 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.78fr);
    gap: 44px;
  }

  .hero-gallery {
    min-height: 540px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: minmax(190px, 280px) auto;
    gap: 18px;
  }

  .header-action {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.86rem;
  }

  .brand {
    width: 96px;
    height: 58px;
    border-radius: 15px;
  }

  .brand img {
    top: -5.5px;
    height: 71px;
  }

  .hero {
    padding: 64px 0 78px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-gallery {
    width: min(100%, 620px);
    min-height: 610px;
    margin-inline: auto;
  }

  .about-section {
    padding-block: 84px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 0;
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-grid article:first-child {
    border-top: 0;
  }

  .process-grid h3 {
    margin-top: 34px;
  }

  .catalog {
    padding-block: 84px 100px;
  }

  .catalog-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dialog-shell {
    grid-template-columns: 1fr;
  }

  .dialog-media {
    min-height: 0;
  }

  .dialog-image-wrap {
    height: min(64vh, 700px);
  }

  .dialog-details {
    padding: 42px 32px 30px;
  }

  footer {
    min-height: 240px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    padding-block: 36px;
  }

  .footer-brand {
    width: min(100%, 360px);
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 83px;
    height: 50px;
    padding: 0;
    border-radius: 13px;
  }

  .brand img {
    top: -5px;
    height: 61px;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .hero-text {
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .text-link {
    align-self: center;
  }

  .hero-stats {
    margin-top: 38px;
  }

  .hero-stats div {
    padding-inline: 10px;
  }

  .hero-stats strong {
    font-size: 1.35rem;
  }

  .hero-stats span {
    font-size: 0.68rem;
  }

  .hero-gallery {
    min-height: 480px;
  }

  .hero-product-main {
    right: 3%;
    width: 56%;
  }

  .hero-product-top {
    left: 1%;
    width: 42%;
  }

  .hero-product-bottom {
    width: 46%;
  }

  .hero-badge {
    right: 42%;
    width: 98px;
    height: 98px;
    border-width: 4px;
  }

  .about-section {
    padding: 68px 20px;
  }

  .section-heading h2,
  .catalog-heading h2 {
    font-size: 2.75rem;
  }

  .process-grid {
    margin-top: 44px;
  }

  .process-grid article {
    padding-inline: 8px;
  }

  .catalog {
    padding-block: 68px 80px;
  }

  .catalog-meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--featured {
    min-height: 300px;
    grid-column: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-code {
    font-size: 0.88rem;
  }

  .product-action {
    width: 32px;
    height: 32px;
  }

  .dialog-media {
    padding: 12px;
  }

  .dialog-image-wrap {
    height: 62vh;
  }

  .dialog-close {
    top: 10px;
    left: 10px;
  }

  .dialog-details {
    padding: 34px 18px 22px;
  }

  .footer-links {
    gap: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* 2026 company-site direction */
.site-header {
  box-shadow: 0 10px 35px rgba(5, 7, 32, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(23, 19, 84, 0.985);
  box-shadow: 0 16px 48px rgba(5, 7, 32, 0.24);
}

.brand {
  box-shadow: none;
  transition: transform 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px);
}

.header-action span,
.primary-button span,
.outline-button span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.header-action:hover span,
.header-action:focus-visible span,
.primary-button:hover span,
.primary-button:focus-visible span,
.outline-button:hover span,
.outline-button:focus-visible span {
  transform: translateX(-4px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  width: var(--container);
  margin-inline: auto;
  padding: 12px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a,
.mobile-nav .nav-offers {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  text-align: start;
  cursor: pointer;
}

.mobile-nav .nav-offers svg {
  width: 18px;
  height: 18px;
  fill: var(--lavender);
}

.hero {
  min-height: calc(100svh - 86px);
  display: grid;
  align-items: center;
  padding-block: clamp(64px, 8vw, 110px) 112px;
  background:
    radial-gradient(circle at 18% 18%, rgba(98, 94, 208, 0.32), transparent 28%),
    linear-gradient(135deg, #171354 0%, #211a68 48%, #0b0d2d 100%);
}

.hero::before {
  width: min(54vw, 760px);
  height: min(54vw, 760px);
  left: -18vw;
  top: -18vw;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
}

.hero h1 {
  font-size: clamp(3.7rem, 6.4vw, 7rem);
  letter-spacing: -0.06em;
}

.hero h1 em {
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.03em;
  width: 56%;
  height: 0.09em;
  border-radius: 99px;
  background: rgba(215, 213, 255, 0.38);
}

.hero-product {
  border-width: 7px;
  transition: transform 420ms cubic-bezier(0.2, 0.78, 0.2, 1), box-shadow 420ms ease;
}

.hero-gallery:hover .hero-product-main {
  transform: translateY(-8px);
}

.hero-gallery:hover .hero-product-top {
  transform: rotate(-7deg) translate(-4px, -7px);
}

.hero-gallery:hover .hero-product-bottom {
  transform: rotate(6deg) translate(-6px, 5px);
}

.hero-product img {
  object-position: center 26%;
}

.hero-product-main {
  border-radius: 190px 190px 30px 30px;
}

.hero-scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
  transform: translateX(50%);
}

.hero-scroll-cue i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  font-style: normal;
}

.brand-marquee {
  overflow: hidden;
  border-bottom: 1px solid #cbc9f5;
  background: var(--lavender);
  color: var(--indigo-950);
}

.brand-marquee > div {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  min-height: 74px;
  padding-inline: 30px;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 600;
}

.brand-marquee b {
  color: var(--indigo-500);
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(98, 94, 208, 0.18), transparent 34%),
    var(--ink);
}

.about-section::after {
  content: "DIC";
  position: absolute;
  left: -0.08em;
  bottom: -0.3em;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(12rem, 28vw, 32rem);
  font-weight: 600;
  line-height: 1;
  direction: ltr;
  pointer-events: none;
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  align-items: start;
}

.section-lead {
  max-width: 500px;
  margin: 60px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 2;
}

.process-grid article {
  transition: background 220ms ease;
}

.process-grid article:hover {
  background: rgba(255, 255, 255, 0.035);
}

.showcase-section {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
  padding-block: clamp(86px, 9vw, 140px);
}

.showcase-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 6rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.showcase-copy > p:not(.section-kicker) {
  max-width: 470px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.outline-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  padding: 0 24px;
  border: 1px solid var(--indigo-900);
  border-radius: 999px;
  color: var(--indigo-900);
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  background: var(--indigo-900);
  color: var(--white);
  transform: translateY(-2px);
}

.showcase-mosaic {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: var(--indigo-900);
  color: var(--white);
  cursor: pointer;
  text-align: right;
  box-shadow: 0 22px 54px rgba(12, 18, 51, 0.12);
}

.showcase-card--tall {
  grid-row: span 2;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 9, 36, 0.9) 100%);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 500ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.showcase-card:hover img,
.showcase-card:focus-visible img {
  transform: scale(1.045);
}

.showcase-card > span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.showcase-card small,
.showcase-card strong {
  display: block;
}

.showcase-card small {
  color: var(--lavender);
  font-size: 0.82rem;
  font-weight: 600;
}

.showcase-card strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.catalog {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(245, 246, 250, 0.93), rgba(245, 246, 250, 0.98)),
    repeating-linear-gradient(135deg, rgba(55, 51, 163, 0.06) 0 1px, transparent 1px 28px);
}

.catalog-toolbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.catalog-sort-controls,
.product-sort-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.catalog-sort-controls .results-count,
.product-sort-row .results-count {
  margin: 0;
}

.product-sort-row {
  margin-block: 0 24px;
}

.offers-sort-row {
  display: flex;
  justify-content: flex-start;
  margin-block: 0 18px;
}

.code-sort-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--indigo-900);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.code-sort-button:hover,
.code-sort-button:focus-visible {
  border-color: var(--indigo-700);
}

.code-sort-button svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.code-sort-button[hidden] {
  display: none;
}

.catalog-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.catalog-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.catalog-tabs button span {
  display: inline-grid;
  min-width: 24px;
  min-height: 24px;
  place-items: center;
  margin-inline-start: 5px;
  border-radius: 99px;
  background: var(--paper);
  font-size: 0.72rem;
}

.catalog-tabs button.is-active {
  background: var(--indigo-900);
  color: var(--white);
}

.catalog-tabs button.is-active span {
  background: rgba(255, 255, 255, 0.16);
}

.category-card {
  min-height: 350px;
}

.category-card-body {
  background: linear-gradient(180deg, transparent, rgba(9, 11, 42, 0.34));
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100% - min(1380px, calc(100% - 48px))) / 2));
  background:
    radial-gradient(circle at 12% 100%, rgba(98, 94, 208, 0.42), transparent 38%),
    var(--indigo-950);
  color: var(--white);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -320px;
  left: -180px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.014);
}

.contact-copy,
.contact-panel {
  position: relative;
  z-index: 1;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.95;
}

.contact-copy .primary-button {
  margin-top: 32px;
}

.contact-panel {
  align-self: center;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.contact-panel-label {
  margin: 0 0 10px;
  color: var(--lavender);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-panel > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) 1fr;
  gap: 22px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-panel > div:last-child {
  border-bottom: 0;
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
}

.contact-panel strong {
  color: var(--white);
  font-size: 0.94rem;
}

footer {
  min-height: 230px;
  grid-template-columns: minmax(260px, 360px) 1fr auto;
  grid-template-areas:
    "brand text links"
    "brand copyright copyright";
  padding-block: 42px;
}

.footer-brand {
  grid-area: brand;
}

footer > p {
  grid-area: text;
}

.footer-links {
  grid-area: links;
}

footer > small {
  grid-area: copyright;
  align-self: start;
  color: #8a90a3;
  font-size: 0.75rem;
  text-align: center;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  }

  .showcase-section {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    max-width: 780px;
  }

  .showcase-mosaic {
    min-height: 620px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: minmax(190px, 1fr) auto;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    margin-top: 12px;
  }

  .section-heading {
    display: grid;
  }

  .section-lead {
    margin-top: 16px;
  }

  .showcase-mosaic {
    min-height: 560px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "text" "links" "copyright";
  }
}

@media (max-width: 580px) {
  .site-header {
    background: rgba(23, 19, 84, 0.99);
  }

  .hero {
    padding-block: 54px 98px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-gallery {
    min-height: 500px;
  }

  .hero-stats {
    gap: 0;
  }

  .hero-scroll-cue span {
    display: none;
  }

  .brand-marquee > div {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .showcase-section {
    padding-block: 76px;
  }

  .showcase-copy h2,
  .contact-copy h2 {
    font-size: 3.05rem;
  }

  .showcase-mosaic {
    min-height: 720px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.25fr 0.88fr 0.88fr;
  }

  .showcase-card--tall {
    grid-row: auto;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .catalog-tabs {
    width: 100%;
  }

  .catalog-tabs button {
    flex: 1;
    padding-inline: 10px;
  }

  .catalog-toolbar .results-count {
    margin: 0;
  }

  .contact-section {
    padding-inline: 20px;
  }

  .contact-panel > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Company profile, bilingual navigation, values and branch contacts */
.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-toggle {
  min-width: 48px;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  background: var(--white);
  color: var(--indigo-900);
  transform: translateY(-2px);
}

.section-kicker b,
.catalog-tabs b,
.back-button b,
.floating-contact b,
.floating-offers b {
  font: inherit;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-facts article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 28px clamp(22px, 3vw, 46px);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
}

.about-facts article:first-child {
  border-inline-start: 0;
}

.about-facts span {
  color: var(--lavender);
  font-size: 0.76rem;
  font-weight: 600;
}

.about-facts strong {
  color: var(--white);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.values-block {
  padding-top: 104px;
  scroll-margin-top: 110px;
}

.values-only-section .values-block {
  padding-top: 0;
}

.values-heading {
  max-width: 780px;
}

.values-heading h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 4.7vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 52px;
}

.value-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.value-card:hover {
  border-color: rgba(215, 213, 255, 0.46);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.value-card > span {
  color: var(--lavender);
  font-size: 0.76rem;
  font-weight: 600;
}

.value-card h4 {
  margin: 64px 0 10px;
  color: var(--white);
  font-size: clamp(1.14rem, 1.5vw, 1.38rem);
  line-height: 1.35;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.75;
}

.contact-section {
  align-items: start;
}

.contact-summary {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.contact-summary > span {
  display: block;
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-summary > strong {
  display: block;
  margin-top: 9px;
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.4;
}

.contact-summary > p {
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.64);
}

.contact-summary > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.branch-grid {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.branch-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 26px 62px rgba(2, 5, 30, 0.22);
}

.branch-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.branch-number {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--indigo-700);
  font-size: 0.72rem;
  font-weight: 600;
  direction: ltr;
}

.branch-title h3 {
  margin: 0;
  color: var(--indigo-950);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
}

.branch-title p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.branch-hours {
  display: grid;
  grid-template-columns: minmax(86px, 0.38fr) 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.branch-hours > span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.branch-hours p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.branch-hours b {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: start;
}

.branch-actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.whatsapp-link {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f0f8f3;
  color: #145c35;
  transition: background 180ms ease, transform 180ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  background: #ddf2e5;
  transform: translateY(-2px);
}

.whatsapp-link span {
  font-size: 0.72rem;
  font-weight: 600;
}

.whatsapp-link strong {
  justify-self: end;
  color: #104e2d;
  font-size: 0.88rem;
}

.branch-map {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--indigo-700);
  font-size: 0.82rem;
  font-weight: 600;
}

.branch-map b {
  font-size: 1.1rem;
}

.floating-actions {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.floating-contact,
.floating-offers {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-contact {
  background: #16834b;
  box-shadow: 0 14px 36px rgba(5, 30, 18, 0.3);
}

.floating-offers {
  border-color: rgba(255, 255, 255, 0.94);
  background: var(--indigo-700);
  box-shadow: 0 14px 36px rgba(16, 13, 75, 0.34);
  cursor: pointer;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  background: #0f6b3c;
  transform: translateY(-3px);
}

.floating-offers:hover,
.floating-offers:focus-visible {
  background: var(--indigo-500);
  transform: translateY(-3px);
}

.floating-contact > span {
  font-size: 1rem;
}

html[dir="ltr"] body {
  font-family: "Segoe UI", Arial, sans-serif;
}

html[dir="ltr"] .category-card,
html[dir="ltr"] .product-card,
html[dir="ltr"] .showcase-card,
html[dir="ltr"] .offer-preview-card {
  text-align: left;
}

html[dir="ltr"] .main-nav a::after,
html[dir="ltr"] .main-nav .nav-offers::after {
  right: auto;
  left: 0;
}

html[dir="ltr"] .header-action:hover [data-direction-arrow],
html[dir="ltr"] .header-action:focus-visible [data-direction-arrow],
html[dir="ltr"] .primary-button:hover [data-direction-arrow],
html[dir="ltr"] .primary-button:focus-visible [data-direction-arrow],
html[dir="ltr"] .outline-button:hover [data-direction-arrow],
html[dir="ltr"] .outline-button:focus-visible [data-direction-arrow] {
  transform: translateX(4px);
}

html[dir="ltr"] .hero h1,
html[dir="ltr"] .section-heading h2,
html[dir="ltr"] .values-heading h3,
html[dir="ltr"] .showcase-copy h2,
html[dir="ltr"] .contact-copy h2,
html[dir="ltr"] .catalog-heading h2 {
  letter-spacing: -0.035em;
}

html[dir="ltr"] .whatsapp-link strong {
  justify-self: end;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .header-tools {
    grid-column: 2;
  }

  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts article {
    min-height: 120px;
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .about-facts article:first-child {
    border-top: 0;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .header-tools {
    gap: 7px;
  }

  .language-toggle {
    min-width: 42px;
    height: 42px;
    padding-inline: 10px;
    font-size: 0.74rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .values-block {
    padding-top: 76px;
  }

  .values-heading h3 {
    font-size: 2.65rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 205px;
  }

  .value-card h4 {
    margin-top: 44px;
  }

  .branch-card {
    padding: 22px;
  }

  .branch-hours {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .whatsapp-link {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .whatsapp-link strong,
  html[dir="ltr"] .whatsapp-link strong {
    justify-self: start;
  }

  .floating-actions {
    inset-inline-end: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-contact,
  .floating-offers {
    min-height: 48px;
    padding-inline: 14px;
  }

  .floating-contact b,
  .floating-offers b {
    display: none;
  }
}

/* Refinement: modern brand entrance, unified search and branch dashboard */
.logo-showcase {
  min-height: min(670px, 72svh);
  display: grid;
  place-items: center;
  padding: clamp(42px, 6vw, 86px) 24px;
  background:
    radial-gradient(circle at 12% 15%, rgba(98, 94, 208, 0.42), transparent 25%),
    radial-gradient(circle at 88% 76%, rgba(215, 213, 255, 0.14), transparent 28%),
    linear-gradient(138deg, var(--indigo-950), var(--indigo-900) 58%, #121043);
  isolation: isolate;
}

.logo-showcase::after {
  content: "DIC";
  position: absolute;
  inset-inline-end: -0.08em;
  bottom: -0.2em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(12rem, 27vw, 32rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
  direction: ltr;
}

.logo-showcase-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.logo-showcase-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 35%, black 65%, transparent);
}

.logo-showcase-pattern i {
  position: absolute;
  display: block;
  border: 1px solid rgba(215, 213, 255, 0.18);
  border-radius: 50%;
}

.logo-showcase-pattern i:nth-child(1) {
  width: 420px;
  height: 420px;
  inset-inline-start: -180px;
  top: -170px;
  box-shadow: 0 0 0 58px rgba(215, 213, 255, 0.025), 0 0 0 116px rgba(215, 213, 255, 0.018);
}

.logo-showcase-pattern i:nth-child(2) {
  width: 260px;
  height: 260px;
  inset-inline-end: 8%;
  bottom: -170px;
  box-shadow: 0 0 0 42px rgba(215, 213, 255, 0.022), 0 0 0 84px rgba(215, 213, 255, 0.016);
}

.logo-showcase-pattern i:nth-child(3) {
  width: 12px;
  height: 12px;
  inset-inline-end: 18%;
  top: 18%;
  border: 0;
  background: var(--lavender);
  box-shadow: 36px 28px 0 rgba(215, 213, 255, 0.25), -26px 54px 0 rgba(255, 255, 255, 0.18);
}

.logo-showcase-inner {
  width: min(1480px, 100%);
  padding: clamp(18px, 2.2vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(28px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 40px 100px rgba(3, 4, 28, 0.34);
  backdrop-filter: blur(18px);
}

.logo-showcase-topline,
.logo-showcase-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: 6px;
}

.logo-showcase-topline {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
}

.logo-showcase-topline > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.logo-showcase-topline i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 0 0 6px rgba(215, 213, 255, 0.1);
}

.logo-showcase-topline b {
  color: var(--white);
  font: inherit;
}

.logo-showcase-link {
  position: relative;
  padding: clamp(10px, 1.4vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(20px, 2.3vw, 34px);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(3, 4, 28, 0.3);
  transition: transform 280ms cubic-bezier(0.2, 0.78, 0.2, 1), box-shadow 280ms ease;
}

.logo-showcase-link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24%;
  width: 17%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), transparent);
  transform: skewX(-18deg);
  transition: left 600ms ease;
  pointer-events: none;
}

.logo-showcase-link:hover,
.logo-showcase-link:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 34px 86px rgba(3, 4, 28, 0.38);
}

.logo-showcase-link:hover::after,
.logo-showcase-link:focus-visible::after {
  left: 110%;
}

.logo-showcase-link img {
  position: relative;
  z-index: 1;
  border-radius: clamp(12px, 1.4vw, 22px);
}

.logo-showcase-bottom {
  margin-top: 18px;
}

.logo-showcase-bottom p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.logo-city-pills {
  display: flex;
  align-items: center;
  gap: 7px;
}

.logo-city-pills span {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
}

.global-search-results {
  margin-top: 62px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.global-search-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.global-search-heading span {
  color: var(--indigo-700);
  font-size: 0.76rem;
  font-weight: 600;
}

.global-search-heading h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1.25;
}

.global-search-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.product-card--search .product-card-body {
  align-items: end;
}

.product-result-name {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.35;
}

.branch-board {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  padding: clamp(22px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 38px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 255, 255, 0.025) 78px 79px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px rgba(3, 4, 28, 0.2);
  scroll-margin-top: 104px;
}

.branch-board::before {
  content: "";
  position: absolute;
  top: -180px;
  inset-inline-end: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(215, 213, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(215, 213, 255, 0.018), 0 0 0 110px rgba(215, 213, 255, 0.012);
  pointer-events: none;
}

.branch-board-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 6px 6px 28px;
}

.branch-board-heading .section-kicker {
  margin-bottom: 12px;
}

.branch-board-heading h3 {
  max-width: 730px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.branch-board-stats {
  display: flex;
  gap: 10px;
}

.branch-board-stats > span {
  min-width: 138px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.branch-board-stats strong {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2;
}

.branch-board-stats b {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 600;
}

.branch-board .branch-grid {
  margin-top: 0;
}

.branch-card {
  position: relative;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 48px rgba(3, 4, 28, 0.2);
  transition: transform 220ms cubic-bezier(0.2, 0.78, 0.2, 1), box-shadow 220ms ease;
}

.branch-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, transparent, var(--indigo-500), transparent);
}

.branch-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 70px rgba(3, 4, 28, 0.28);
}

.branch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.branch-card-top > span {
  color: var(--indigo-700);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  direction: ltr;
}

.branch-card-top > b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0f8f3;
  color: #145c35;
  font-size: 0.68rem;
  font-weight: 600;
}

.branch-card-top i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #16834b;
  box-shadow: 0 0 0 4px rgba(22, 131, 75, 0.1);
}

.branch-card-top em {
  font-style: normal;
}

@media (max-width: 1120px) {
  .logo-showcase {
    min-height: 560px;
  }

  .branch-board-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .logo-showcase {
    min-height: 500px;
    padding-inline: 16px;
  }

  .logo-showcase-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .branch-board {
    border-radius: 28px;
  }
}

@media (max-width: 580px) {
  .logo-showcase {
    min-height: 440px;
    padding: 24px 12px;
  }

  .logo-showcase-inner {
    padding: 12px;
    border-radius: 24px;
  }

  .logo-showcase-topline {
    font-size: 0.67rem;
  }

  .logo-showcase-bottom p {
    font-size: 0.78rem;
  }

  .logo-city-pills {
    width: 100%;
  }

  .logo-city-pills span {
    flex: 1;
    padding-inline: 7px;
    text-align: center;
  }

  .global-search-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .branch-board {
    margin-inline: -8px;
    padding: 18px;
    border-radius: 24px;
  }

  .branch-board-heading {
    padding-inline: 2px;
  }

  .branch-board-heading h3 {
    font-size: 2.35rem;
  }

  .branch-board-stats {
    width: 100%;
  }

  .branch-board-stats > span {
    min-width: 0;
    flex: 1;
  }
}

/* Branded contact channels and light arrival motion */
.contact-methods {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.contact-method {
  min-width: 0;
  min-height: 154px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 213, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.075);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

a.contact-method {
  transition: transform 200ms cubic-bezier(0.2, 0.78, 0.2, 1), background 200ms ease, border-color 200ms ease;
}

a.contact-method:hover,
a.contact-method:focus-visible {
  border-color: rgba(215, 213, 255, 0.55);
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 213, 255, 0.24), transparent 38%),
    rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: var(--lavender);
  color: var(--indigo-950);
  box-shadow: 0 12px 26px rgba(3, 4, 28, 0.22);
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-method-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-method-copy b {
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-method-copy strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 0.91rem;
  line-height: 1.45;
}

.contact-method-copy small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-method-arrow {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  transition: transform 180ms ease, color 180ms ease;
}

a.contact-method:hover .contact-method-arrow,
a.contact-method:focus-visible .contact-method-arrow {
  color: var(--white);
  transform: translate(-2px, -2px);
}

.contact-number {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px 10px 15px;
  border: 1px solid #e3e2fa;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7f7ff, #efefff);
}

.contact-number > span:first-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.contact-number small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
}

.contact-number strong {
  color: var(--indigo-950);
  font-size: 0.84rem;
  line-height: 1.3;
}

.contact-number-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.contact-number-actions a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d9d8f7;
  border-radius: 13px;
  background: var(--white);
  color: var(--indigo-700);
  box-shadow: 0 6px 16px rgba(23, 19, 84, 0.08);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-number-actions a.is-whatsapp {
  border-color: #d9ebdf;
  background: #eef8f2;
  color: #13703e;
}

.contact-number-actions a:hover,
.contact-number-actions a:focus-visible {
  border-color: var(--indigo-500);
  background: var(--indigo-700);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-number-actions a.is-whatsapp:hover,
.contact-number-actions a.is-whatsapp:focus-visible {
  border-color: #16834b;
  background: #16834b;
}

.contact-number-actions svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.branch-map {
  justify-content: flex-start;
}

.branch-map svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.branch-map b {
  margin-inline-start: auto;
}

.floating-contact > span,
.floating-offers > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.floating-contact svg,
.floating-offers svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Curated offers section and catalogue filter */
.offers-section {
  position: relative;
  padding-block: clamp(82px, 9vw, 138px);
  overflow: hidden;
  scroll-margin-top: 100px;
  border-bottom: 1px solid #d9daf0;
  background:
    radial-gradient(circle at 8% 16%, rgba(98, 94, 208, 0.18), transparent 25%),
    linear-gradient(145deg, #f8f8ff 0%, #eeeefe 58%, #f8f8ff 100%);
}

.offers-section::before {
  content: "10%";
  position: absolute;
  inset-inline-end: -0.05em;
  top: -0.2em;
  color: rgba(55, 51, 163, 0.045);
  font-size: clamp(12rem, 28vw, 31rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1em;
  direction: ltr;
  pointer-events: none;
}

.offers-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
}

.offers-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
  margin-bottom: 42px;
}

.offers-heading-copy {
  max-width: 840px;
}

.offers-heading h2 {
  margin: 0;
  color: var(--indigo-950);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.offers-heading h2 em {
  color: var(--indigo-700);
  font-style: normal;
}

.offers-heading-copy > p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.offers-highlight {
  min-width: 235px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 20px;
  border: 1px solid rgba(55, 51, 163, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--indigo-950);
  box-shadow: 0 18px 42px rgba(23, 19, 84, 0.1);
  backdrop-filter: blur(12px);
}

.offers-highlight > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--indigo-700);
  color: var(--white);
}

.offers-highlight svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.offers-highlight > div {
  display: grid;
  gap: 2px;
}

.offers-highlight strong {
  font-size: 1.5rem;
  line-height: 1;
  direction: ltr;
}

.offers-highlight small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.offers-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.offer-preview-card {
  min-width: 0;
  min-height: 535px;
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(235px, 1.08fr);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(55, 51, 163, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 24px 62px rgba(23, 19, 84, 0.12);
  text-align: start;
  cursor: pointer;
  transition: transform 240ms cubic-bezier(0.2, 0.78, 0.2, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.offer-preview-card:hover,
.offer-preview-card:focus-visible {
  border-color: rgba(55, 51, 163, 0.52);
  box-shadow: 0 34px 78px rgba(23, 19, 84, 0.18);
  transform: translateY(-7px);
  outline: none;
}

.offer-preview-visual {
  position: relative;
  min-width: 0;
  min-height: 535px;
  display: block;
  overflow: hidden;
  border-inline-end: 1px solid var(--line);
  background: #f0f1f7;
}

.offer-preview-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 360ms ease;
}

.offer-preview-card:hover .offer-preview-visual img,
.offer-preview-card:focus-visible .offer-preview-visual img {
  transform: scale(1.018);
}

.offer-preview-discount {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 10px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--indigo-700), var(--indigo-950));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(23, 19, 84, 0.34);
  line-height: 1;
}

.offer-preview-discount small {
  margin-bottom: 3px;
  font-size: 0.68rem;
  font-weight: 600;
}

.offer-preview-discount strong {
  font-size: 1.42rem;
  font-weight: 600;
  direction: ltr;
}

.offer-preview-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3vw, 40px);
}

.offer-preview-category {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--indigo-700);
  font-size: 0.75rem;
  font-weight: 600;
}

.offer-preview-name {
  display: block;
  margin-top: 22px;
  color: var(--indigo-950);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.38;
}

.offer-preview-barcode {
  width: 100%;
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-preview-barcode small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.offer-preview-barcode b {
  color: var(--indigo-900);
  font-size: 1.05rem;
  letter-spacing: 0.045em;
}

.offer-preview-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--indigo-900);
  font-size: 0.9rem;
  font-weight: 600;
}

.offer-preview-action i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--indigo-700);
  color: var(--white);
  font-size: 1.08rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.offer-preview-card:hover .offer-preview-action i,
.offer-preview-card:focus-visible .offer-preview-action i {
  transform: translateX(-3px);
}

html[dir="ltr"] .offer-preview-card:hover .offer-preview-action i,
html[dir="ltr"] .offer-preview-card:focus-visible .offer-preview-action i {
  transform: translateX(3px);
}

.offers-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(55, 51, 163, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.offers-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.offers-footer p b {
  color: var(--indigo-950);
}

.offers-catalog-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--indigo-700);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.offers-catalog-button:hover,
.offers-catalog-button:focus-visible {
  background: var(--indigo-950);
  transform: translateY(-2px);
}

.offers-catalog-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.offers-catalog-button i {
  font-style: normal;
}

.catalog-offers-results {
  margin-top: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.offers-filter-empty {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 56px 20px;
  border: 1px dashed #c9c8e9;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.offers-filter-empty strong {
  color: var(--indigo-950);
  font-size: 1.1rem;
}

.offers-filter-empty span {
  color: var(--muted);
  font-size: 0.9rem;
}

.dialog-offer-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 13px 15px;
  border: 1px solid #d8d7f4;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0efff, #fafaff);
  color: var(--indigo-900);
}

.dialog-offer-note > svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.dialog-offer-note > span {
  display: grid;
  gap: 2px;
}

.dialog-offer-note strong {
  font-size: 1rem;
  font-weight: 600;
}

.dialog-offer-note small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .offers-preview-grid {
    grid-template-columns: 1fr;
  }

  .offer-preview-card {
    grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1.28fr);
  }
}

@media (max-width: 780px) {
  .offers-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .offers-highlight {
    min-width: 0;
    width: min(100%, 310px);
  }

  .offer-preview-card {
    grid-template-columns: minmax(210px, 0.9fr) minmax(220px, 1.1fr);
  }

  .offers-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .offers-catalog-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .offers-section {
    padding-block: 72px;
  }

  .offers-heading h2 {
    font-size: 3.15rem;
  }

  .offer-preview-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 25px;
  }

  .offer-preview-visual {
    min-height: 0;
    aspect-ratio: 3 / 4.94;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-preview-body {
    min-height: 285px;
    padding: 24px;
  }

  .offer-preview-discount {
    width: 78px;
    height: 78px;
  }

  .catalog-tabs button {
    padding-inline: 7px;
    font-size: 0.75rem;
  }
}

/* Offers entry points and WhatsApp branch chooser */
.offers-dialog {
  width: min(960px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

.offers-dialog::backdrop {
  background: rgba(7, 8, 35, 0.76);
  backdrop-filter: blur(9px);
  animation: offersBackdropIn 220ms ease both;
}

.offers-dialog-shell {
  position: relative;
  max-height: calc(100svh - 32px);
  padding: clamp(28px, 4vw, 48px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 4% 0%, rgba(98, 94, 208, 0.16), transparent 30%),
    linear-gradient(145deg, #ffffff, #f5f5ff);
  box-shadow: 0 36px 100px rgba(3, 4, 28, 0.42);
}

.offers-dialog[open] .offers-dialog-shell {
  animation: offersDialogIn 420ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

.offers-dialog-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dbdaf6;
  border-radius: 50%;
  background: var(--white);
  color: var(--indigo-950);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.offers-dialog-close:hover,
.offers-dialog-close:focus-visible {
  background: var(--indigo-700);
  color: var(--white);
  transform: rotate(5deg);
}

.offers-dialog-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding-inline-end: 54px;
}

.offers-dialog-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--indigo-700);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(55, 51, 163, 0.24);
}

.offers-dialog-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.offers-dialog-heading .section-kicker {
  margin-bottom: 8px;
}

.offers-dialog-heading h2 {
  max-width: 680px;
  margin: 0;
  color: var(--indigo-950);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.offers-dialog-heading > div > p:last-child {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.offers-branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 30px;
}

.offers-branch-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #deddf6;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(23, 19, 84, 0.07);
}

.offers-branch-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.offers-branch-title > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--soft-blue);
  color: var(--indigo-700);
  font-size: 0.66rem;
  font-weight: 600;
  direction: ltr;
}

.offers-branch-title h3 {
  margin: 0;
  color: var(--indigo-950);
  font-size: 1.15rem;
  line-height: 1.25;
}

.offers-branch-title p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.offers-numbers {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.offers-numbers a {
  min-height: 61px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid #d9ebdf;
  border-radius: 15px;
  background: #eef8f2;
  color: #136b3c;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.offers-numbers a:hover,
.offers-numbers a:focus-visible {
  border-color: #16834b;
  background: #16834b;
  color: var(--white);
  transform: translateY(-2px);
}

.offers-numbers a > svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.offers-numbers a > span {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.offers-numbers small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.offers-numbers b {
  overflow-wrap: anywhere;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.35;
}

.offers-numbers i {
  color: inherit;
  font-size: 0.8rem;
  font-style: normal;
}

.offers-numbers a:hover small,
.offers-numbers a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes offersBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes offersDialogIn {
  from { opacity: 0; transform: translateY(18px) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 780px) {
  .offers-dialog {
    width: min(620px, calc(100% - 20px));
    max-height: calc(100svh - 20px);
  }

  .offers-dialog-shell {
    max-height: calc(100svh - 20px);
    padding: 26px 20px 22px;
    border-radius: 24px;
  }

  .offers-dialog-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-inline-end: 46px;
  }

  .offers-dialog-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .offers-dialog-heading h2 {
    font-size: 1.75rem;
  }

  .offers-branch-grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
}

.branch-board.is-contact-arrival {
  animation: contactBoardArrival 720ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

.branch-board.is-contact-arrival .contact-method {
  animation: contactTileArrival 560ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

.branch-board.is-contact-arrival .contact-method:nth-child(2) {
  animation-delay: 55ms;
}

.branch-board.is-contact-arrival .contact-method:nth-child(3) {
  animation-delay: 110ms;
}

.branch-board.is-contact-arrival .contact-method:nth-child(4) {
  animation-delay: 165ms;
}

.branch-board.is-contact-arrival .branch-card {
  animation: contactCardArrival 620ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

.branch-board.is-contact-arrival .branch-card:nth-child(2) {
  animation-delay: 75ms;
}

.branch-board.is-contact-arrival .branch-card:nth-child(3) {
  animation-delay: 150ms;
}

@keyframes contactBoardArrival {
  0% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px rgba(3, 4, 28, 0.2); }
  45% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 34px 94px rgba(98, 94, 208, 0.34); }
  100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px rgba(3, 4, 28, 0.2); }
}

@keyframes contactTileArrival {
  from { opacity: 0.25; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes contactCardArrival {
  from { opacity: 0.45; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: 126px;
  }

  .contact-number {
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .branch-board.is-contact-arrival,
  .branch-board.is-contact-arrival .contact-method,
  .branch-board.is-contact-arrival .branch-card,
  .offers-dialog::backdrop,
  .offers-dialog[open] .offers-dialog-shell {
    animation: none;
  }
}

/* Approved footer option 2: a distinct medium brand-indigo finish. */
footer {
  position: relative;
  z-index: 0;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

footer::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background: #312b78;
  transform: translateX(-50%);
}

footer > p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  color: #ffffff;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lavender);
}

footer > small {
  color: rgba(255, 255, 255, 0.62);
}

/* Hero catalog samples: keep the original product artwork while concealing
   the repeated company masthead inside each sample card. */
.hero-product::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 16%;
  pointer-events: none;
  background-color: #fbfbfc;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(31, 26, 104, 0.055) 0,
    rgba(31, 26, 104, 0.055) 1px,
    transparent 1px,
    transparent 7px
  );
  border-bottom: 1px solid rgba(31, 26, 104, 0.07);
}

.hero-product-bottom::after {
  height: 18%;
}

.hero-stats-single {
  grid-template-columns: minmax(180px, 260px);
  max-width: 260px;
}

.hero-stats-single > div {
  padding-inline: 0;
  border-inline-start: 0;
}

@media (max-width: 580px) {
  .hero-stats-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 220px;
  }
}

/* Desktop proportion pass: calmer type, imagery and section rhythm on wide screens. */
@media (min-width: 1121px) {
  :root {
    --container: min(1320px, calc(100% - 96px));
  }

  .logo-showcase {
    min-height: min(570px, 68svh);
    padding-block: 54px;
  }

  .logo-showcase-inner {
    width: min(1320px, 100%);
    padding: 24px;
    border-radius: 34px;
  }

  .logo-showcase-link {
    padding: 16px;
    border-radius: 26px;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 102px;
    height: 62px;
  }

  .brand img {
    height: 76px;
  }

  .hero {
    min-height: 650px;
    padding-block: 62px 86px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.82fr);
    gap: clamp(50px, 5vw, 82px);
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(4rem, 4.7vw, 5.55rem);
    line-height: 1.06;
  }

  .hero-text {
    max-width: 570px;
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.85;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-stats {
    margin-top: 42px;
    padding-top: 22px;
  }

  .hero-gallery {
    min-height: 520px;
  }

  .hero-badge {
    width: 108px;
    height: 108px;
    border-width: 5px;
  }

  .about-section {
    padding-block: 88px;
  }

  .values-heading {
    max-width: 700px;
  }

  .values-heading h3,
  .section-heading h2 {
    font-size: clamp(3.25rem, 4vw, 4.45rem);
    line-height: 1.1;
  }

  .value-grid {
    gap: 14px;
    margin-top: 42px;
  }

  .value-card {
    min-height: 210px;
    padding: 22px;
  }

  .value-card h4 {
    margin-top: 48px;
    font-size: 1.22rem;
  }

  .offers-section {
    padding-block: 92px;
  }

  .offers-heading {
    margin-bottom: 34px;
  }

  .offers-heading-copy {
    max-width: 720px;
  }

  .offers-heading h2 {
    font-size: clamp(3.7rem, 4.7vw, 5.25rem);
    line-height: 1.05;
  }

  .offers-heading-copy > p:last-child {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .offers-preview-grid {
    gap: 16px;
  }

  .offer-preview-card {
    min-height: 455px;
    grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 1.1fr);
    border-radius: 26px;
  }

  .offer-preview-visual {
    min-height: 455px;
  }

  .offer-preview-body {
    padding: 28px;
  }

  .offer-preview-name {
    margin-top: 18px;
    font-size: clamp(1.3rem, 1.55vw, 1.65rem);
  }

  .offer-preview-discount {
    width: 76px;
    height: 76px;
  }

  .catalog {
    padding-block: 88px 104px;
  }

  .catalog-heading h2 {
    font-size: clamp(3.45rem, 4.25vw, 4.75rem);
  }

  .catalog-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 48px;
  }

  .category-card,
  .category-card--featured {
    min-height: 300px;
  }

  .category-card-body {
    padding: 24px;
  }

  .category-name {
    font-size: clamp(1.2rem, 1.35vw, 1.45rem);
  }

  .contact-section {
    gap: clamp(52px, 6vw, 90px);
    padding-block: 96px;
  }

  .contact-copy h2 {
    font-size: clamp(3.7rem, 4.7vw, 5.15rem);
    line-height: 1.07;
  }

  .contact-summary {
    padding: 34px;
  }

  .branch-board {
    padding: 30px;
    border-radius: 32px;
  }

  .branch-board-heading h3 {
    max-width: 620px;
    font-size: clamp(2.6rem, 3.25vw, 3.55rem);
  }

  .contact-method {
    min-height: 136px;
    padding: 18px;
  }

  .contact-method-icon {
    width: 44px;
    height: 44px;
  }

  .branch-card {
    padding: 28px;
  }

  .branch-title h3 {
    font-size: clamp(1.4rem, 1.55vw, 1.7rem);
  }
}

/* Mobile proportion repair: retain the desktop rhythm without tall one-column cards. */
@media (max-width: 580px) {
  .logo-showcase {
    min-height: 360px;
    padding-block: 20px;
  }

  .logo-showcase-inner {
    padding: 10px;
  }

  .logo-showcase-topline {
    margin-bottom: 10px;
  }

  .logo-showcase-bottom {
    gap: 12px;
    margin-top: 12px;
  }

  .hero {
    padding-block: 42px 78px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-stats {
    margin-top: 28px;
    padding-top: 18px;
  }

  .hero-gallery {
    min-height: 390px;
    margin-top: 4px;
  }

  .hero-product {
    border-width: 5px;
  }

  .hero-badge {
    width: 82px;
    height: 82px;
    border-width: 3px;
  }

  .hero-badge span {
    font-size: 0.62rem;
  }

  .hero-badge strong {
    font-size: 0.76rem;
  }

  .about-section {
    padding-block: 56px;
  }

  .values-heading h3,
  .section-heading h2,
  .catalog-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.3rem, 10.5vw, 2.8rem);
    line-height: 1.12;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
  }

  .value-card {
    min-height: 175px;
    padding: 16px;
    border-radius: 17px;
  }

  .value-card h4 {
    margin-top: 28px;
    font-size: 1rem;
  }

  .value-card p {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .offers-section {
    padding-block: 56px;
  }

  .offers-heading {
    gap: 20px;
    margin-bottom: 28px;
  }

  .offers-heading h2 {
    font-size: clamp(2.45rem, 11vw, 3rem);
    line-height: 1.08;
  }

  .offers-heading-copy > p:last-child {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .offers-highlight {
    width: 100%;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .offers-highlight > span {
    width: 44px;
    height: 44px;
  }

  .offer-preview-card {
    min-height: 285px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    border-radius: 20px;
  }

  .offer-preview-visual {
    min-height: 285px;
    aspect-ratio: auto;
    border-inline-end: 1px solid var(--line);
    border-bottom: 0;
  }

  .offer-preview-body {
    min-height: 285px;
    padding: 16px 14px;
  }

  .offer-preview-category {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 0.66rem;
  }

  .offer-preview-name {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .offer-preview-barcode {
    margin-top: 14px;
    padding-block: 11px;
  }

  .offer-preview-action {
    gap: 8px;
    padding-top: 14px;
    font-size: 0.75rem;
  }

  .offer-preview-action i {
    width: 34px;
    height: 34px;
  }

  .offer-preview-discount {
    top: 10px;
    inset-inline-start: 10px;
    width: 58px;
    height: 58px;
    border-width: 2px;
  }

  .offer-preview-discount small {
    font-size: 0.56rem;
  }

  .offer-preview-discount strong {
    font-size: 1rem;
  }

  .catalog {
    padding-block: 56px 72px;
  }

  .catalog-heading {
    gap: 22px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card,
  .category-card--featured {
    min-height: 220px;
    grid-column: auto;
    border-radius: 17px;
  }

  .category-card-body {
    gap: 8px;
    padding: 15px;
  }

  .category-name {
    font-size: 1rem;
  }

  .category-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .contact-section {
    gap: 34px;
    padding-block: 58px;
  }

  .contact-summary {
    padding: 22px;
  }

  .branch-board-heading h3 {
    font-size: 2.15rem;
  }
}
