:root {
  --color-red: #b91c1c;
  --color-red-deep: #7f1515;
  --color-black: #101010;
  --color-charcoal: #1f2933;
  --color-gray-900: #111827;
  --color-gray-700: #374151;
  --color-gray-500: #6b7280;
  --color-gray-300: #d1d5db;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-white: #ffffff;
  --color-surface: #fafafa;
  --color-surface-dark: #16181d;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 14px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-gray-900);
  background:
    radial-gradient(circle at top left, rgba(185, 28, 28, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  line-height: 1.65;
  overflow-x: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.05;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
  color: var(--color-gray-700);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--muted {
  background: var(--color-gray-100);
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.96), rgba(17, 24, 39, 0.96)),
    url("../images/hero5.jpg") center/cover no-repeat;
  color: var(--color-white);
}

.section--dark p,
.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(209, 213, 219, 0.8);
}

.topbar {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.topbar--light {
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-gray-700);
  border-bottom: 1px solid rgba(209, 213, 219, 0.65);
}

.topbar__inner,
.topbar__contact-list,
.navbar,
.hero__trust,
.product-card__actions,
.cta-band__actions,
.footer-social,
.stacked-actions {
  display: flex;
  gap: 1rem;
}

.topbar__inner {
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0 0.9rem;
}

.topbar__contact-list {
  flex: 1;
  justify-content: center;
  gap: 1.6rem;
}

.topbar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 16rem;
}

.topbar__item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-900);
}

.topbar__item small,
.topbar__item small a {
  display: block;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--color-gray-700);
}

.topbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 50%;
  border: 1px solid rgba(185, 28, 28, 0.16);
  background: rgba(185, 28, 28, 0.06);
  color: var(--color-red);
  font-size: 0.9rem;
}

.topbar__quote-button {
  min-width: 154px;
  padding-inline: 1.45rem;
  white-space: nowrap;
}

.brand--header img {
  width: 205px;
}

.navbar-wrap {
  display: flex;
  justify-content: center;
  padding: 0.4rem 0 0.8rem;
}

.navbar {
  align-items: center;
  justify-content: space-between;
  width: min(760px, calc(100% - 180px));
  margin-top: 0;
  padding: 0.78rem 1rem 0.85rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 0 0 22px 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.brand img {
  width: 170px;
  height: auto;
}

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

.site-nav a {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-charcoal);
  position: relative;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  width: 3rem;
  padding: 0.5rem;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--color-gray-900);
}

.button,
.button--ghost,
.button--ghost-light,
.button--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.95rem 1.35rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button {
  background: linear-gradient(135deg, var(--color-red), #e03131);
  color: var(--color-white);
  box-shadow: 0 16px 28px rgba(185, 28, 28, 0.22);
}

.button i {
  margin-left: 0.65rem;
  font-size: 0.95em;
}

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

.button--ghost {
  border-color: rgba(17, 24, 39, 0.15);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-gray-900);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.button--light {
  background: var(--color-white);
  color: var(--color-red);
}

.button--small {
  padding: 0.8rem 1rem;
  font-size: 0.94rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow--dark {
  color: var(--color-red);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(122deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.62)),
    url("../images/hero1.jpg") center/cover no-repeat;
  color: var(--color-white);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 0 -10%;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.26), transparent 66%);
}

.hero__grid,
.product-hero,
.split-panel,
.contact-layout,
.inquiry-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__grid,
.product-hero {
  grid-template-columns: 1.15fr 0.95fr;
  min-height: calc(100vh - 120px);
  padding: 5rem 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.hero__content p,
.page-hero__content p,
.hero__trust {
  color: rgba(255, 255, 255, 0.8);
}

.hero__trust {
  flex-wrap: wrap;
  font-weight: 700;
  margin-top: 1rem;
}

.hero__trust span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero__visual,
.product-hero__visual,
.media-card {
  position: relative;
}

.hero__visual img,
.product-hero__visual img,
.media-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero__card {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: 22rem;
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-gray-900);
  box-shadow: var(--shadow-card);
}

.hero__card p {
  color: var(--color-gray-700);
  margin-bottom: 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.4rem;
}

.split-panel,
.contact-layout,
.inquiry-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-column-grid,
.footer-grid,
.office-grid,
.map-grid {
  display: grid;
  gap: 1.5rem;
}

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

.info-card-grid,
.feature-grid,
.service-grid,
.brand-grid,
.project-grid,
.product-grid,
.category-grid,
.testimonial-grid,
.stats-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-grid,
.service-grid,
.brand-grid,
.project-grid,
.product-grid,
.category-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card,
.feature-card,
.service-card,
.brand-card,
.contact-info__card,
.detail-card,
.mission-card,
.office-card,
.map-card,
.testimonial-card,
.stat-card,
.timeline__content,
.product-card,
.project-card,
.category-card,
.cta-inline,
.brand-chip {
  background: var(--color-white);
  border: 1px solid rgba(209, 213, 219, 0.8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.feature-card,
.service-card,
.brand-card,
.contact-info__card,
.detail-card,
.mission-card,
.office-card,
.map-card,
.info-card,
.stat-card,
.brand-chip,
.cta-inline {
  padding: 1.6rem;
}

.section--dark .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.section--dark .feature-card p {
  color: rgba(255, 255, 255, 0.75);
}

.category-card,
.product-card,
.project-card {
  overflow: clip;
}

.category-card img,
.product-card img,
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.category-card__content,
.product-card__body,
.project-card__body {
  padding: 1.5rem;
}

.product-card__brand {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--color-red);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  color: var(--color-red);
}

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

.brand-chip {
  display: grid;
  gap: 0.35rem;
}

.brand-chip span {
  color: var(--color-gray-700);
}

.stats-section {
  padding-top: 0;
}

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--color-red);
}

.testimonial-card {
  padding: 1.6rem;
  margin: 0;
}

.testimonial-card footer {
  display: grid;
  gap: 0.15rem;
  margin-top: 1.4rem;
  font-style: normal;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.96), rgba(127, 21, 21, 0.96)),
    url("../images/hero4.webp") center/cover no-repeat;
  color: var(--color-white);
}

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

.cta-band p,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  padding: 7rem 0 4rem;
  min-height: 26rem;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.page-hero--about {
  background:
    linear-gradient(122deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.55)),
    url("../images/hero3.webp") center/cover no-repeat;
}

.page-hero--products,
.page-hero--category {
  background:
    linear-gradient(122deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.5)),
    url("../images/hero5.jpg") center/cover no-repeat;
}

.products-hero {
  position: relative;
  overflow: visible;
  min-height: 650px;
  padding: 4.8rem 0 3rem;
  background:
    url("../images/main_hero.png") center/cover no-repeat;
  color: var(--color-gray-900);
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 28%, rgba(255, 255, 255, 0.8) 42%, rgba(255, 255, 255, 0.42) 56%, rgba(255, 255, 255, 0.1) 70%, rgba(255, 255, 255, 0.02) 82%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.products-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 650px;
}

.products-hero__content {
  max-width: 35rem;
  padding: 2rem 0 1rem;
}

.products-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  color: var(--color-gray-700);
  font-size: 1rem;
  font-weight: 700;
}

.products-hero__breadcrumb span:last-child,
.products-hero__breadcrumb a:hover {
  color: var(--color-red);
}

.products-hero h1 {
  max-width: 11.4ch;
  margin-bottom: 0;
  color: #22252b;
  font-size: clamp(3.2rem, 5.9vw, 4.95rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.products-hero h1 span {
  display: inline-block;
  color: var(--color-red);
  white-space: nowrap;
}

.products-hero__divider {
  width: 4rem;
  height: 4px;
  margin: 1.25rem 0 1.05rem;
  border-radius: 999px;
  background: var(--color-red);
}

.products-hero p {
  max-width: 27rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #3f4653;
}

.products-hero__visual {
  display: none;
}

.products-hero__visual img {
  display: none;
}

.products-catalog-section {
  padding-top: 1.4rem;
  background:
    radial-gradient(circle at left center, rgba(185, 28, 28, 0.05), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.products-catalog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.products-catalog-header h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: var(--color-gray-900);
}

.products-catalog-header__line {
  width: 2.1rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-red);
}

.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  column-gap: 1.2rem;
  row-gap: 1.35rem;
  margin-bottom: 1.4rem;
}

.products-catalog-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 1.35rem 1.15rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(251, 252, 253, 1) 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  color: var(--color-gray-900);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.products-catalog-item:hover,
.products-catalog-item.is-active {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.24);
  box-shadow: 0 22px 44px rgba(229, 57, 53, 0.12), 0 16px 34px rgba(15, 23, 42, 0.08);
}

.products-catalog-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(229, 57, 53, 0.12), rgba(229, 57, 53, 0.06));
  box-shadow: inset 0 0 0 1px rgba(229, 57, 53, 0.1);
  color: #e53935;
  font-size: 1.7rem;
}

.products-catalog-item__title {
  display: block;
  min-height: 3.1rem;
  margin-bottom: 0.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.products-catalog-item__meta {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--color-gray-500);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.products-catalog-item__list {
  display: grid;
  gap: 0.42rem;
  width: 100%;
  flex: 1 1 auto;
  align-content: start;
  min-height: 8.6rem;
}

.products-catalog-item__list span {
  position: relative;
  display: block;
  padding-left: 1rem;
  color: var(--color-gray-700);
  font-size: 0.88rem;
  line-height: 1.48;
}

.products-catalog-item__list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.7);
}

.products-catalog-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  color: #e53935;
  font-size: 0.88rem;
  font-weight: 800;
}

.products-catalog-item__count {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
}

.products-catalog-item__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.08);
  box-shadow: inset 0 0 0 1px rgba(229, 57, 53, 0.08);
}

.products-category-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--color-gray-900);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.products-category-link:hover,
.products-category-link.is-active {
  transform: translateY(-1px);
  color: var(--color-red);
  background: linear-gradient(90deg, rgba(185, 28, 28, 0.08), rgba(185, 28, 28, 0.03));
  border-color: rgba(185, 28, 28, 0.14);
  box-shadow: inset 0 0 0 1px rgba(185, 28, 28, 0.08);
}

.products-category-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: rgba(185, 28, 28, 0.07);
  color: var(--color-red);
  font-size: 1rem;
}

.products-sidebar__help {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
  padding: 1.4rem 1.3rem;
}

.products-sidebar__help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 18px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 1.45rem;
}

.products-sidebar__help h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
  line-height: 1.18;
}

.products-sidebar__help p {
  margin: 0;
}

.products-main {
  min-width: 0;
}

.products-main__viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  background: transparent;
  color: var(--color-red);
  font-weight: 800;
  cursor: pointer;
}


.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.products-page-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.products-page-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 28, 28, 0.2);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
}

.products-page-card.is-hidden {
  display: none;
}

.products-page-card__media {
  display: grid;
  place-items: center;
  min-height: 215px;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.products-page-card__media img {
  width: 100%;
  height: 175px;
  object-fit: contain;
}

.products-page-card__body {
  padding: 0.95rem 1rem 1rem;
}

.products-page-card__body h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.products-page-card__body p {
  min-height: 7.1rem;
  margin-bottom: 1rem;
  font-size: 0.96rem;
  line-height: 1.72;
}

.products-page-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.products-page-card__footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-red);
  font-size: 0.92rem;
  font-weight: 800;
}

.products-page-card__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-red), #f02c2c);
  color: var(--color-white) !important;
  box-shadow: 0 10px 18px rgba(185, 28, 28, 0.22);
}

.products-support-band {
  padding: 1.1rem 0;
  background: linear-gradient(90deg, #c91616 0%, #e02929 52%, #c91616 100%);
  color: var(--color-white);
  box-shadow: 0 24px 46px rgba(185, 28, 28, 0.18);
}

.products-support-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.products-support-band__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.products-support-band__stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  position: relative;
}

.products-support-band__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: rgba(255, 255, 255, 0.24);
}

.products-support-band__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
}

.products-support-band__stat strong {
  display: block;
  color: var(--color-white);
  font-size: 1.18rem;
}

.products-support-band__stat span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.products-support-band__call {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.products-support-band__call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.25rem;
}

.products-support-band__call small {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.products-support-band__call strong {
  display: block;
  color: var(--color-white);
  font-size: 1.8rem;
}

.category-catalog-view {
  background:
    radial-gradient(circle at top right, rgba(229, 57, 53, 0.05), transparent 18%),
    linear-gradient(180deg, #fdfdfd 0%, #f7f7f7 100%);
}

.category-catalog-page {
  padding: 3rem 0 4.5rem;
}

.catalog-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--color-gray-500);
  font-size: 0.95rem;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.catalog-breadcrumb a:hover,
.catalog-breadcrumb span:last-child {
  color: var(--color-red);
}

.catalog-titlebar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.catalog-titlebar__copy {
  max-width: 42rem;
}

.catalog-titlebar__eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--color-red);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.catalog-titlebar h1 {
  margin-bottom: 0.55rem;
  font-size: clamp(2.45rem, 4vw, 3.4rem);
  color: var(--color-gray-900);
}

.catalog-titlebar p {
  max-width: 38rem;
  margin: 0;
  color: var(--color-gray-700);
}

.catalog-sort select {
  min-width: 220px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 14px;
  background: #fff;
  color: var(--color-gray-900);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.catalog-titlebar--flow {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.catalog-flow-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.catalog-flow-back {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 999px;
  background: #fff;
  color: var(--color-gray-900);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.catalog-stage {
  margin-bottom: 1.6rem;
}

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

.catalog-stage__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(239, 17, 17, 0.08);
  color: var(--color-red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-stage__header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  color: var(--color-gray-900);
}

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

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

.catalog-stage-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(223, 229, 239, 0.95);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-stage-card:hover {
  transform: translateY(-7px);
  border-color: rgba(239, 17, 17, 0.32);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.catalog-stage-card__media {
  position: relative;
  display: flex;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.7) 0%, rgba(255, 255, 255, 1) 100%);
}

.catalog-stage-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.catalog-stage-card:hover .catalog-stage-card__media img {
  transform: scale(1.04);
}

.catalog-stage-card__badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef1111, #ff4d4d);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 18px rgba(239, 17, 17, 0.24);
}

.catalog-stage-card__body {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 0.5rem;
  padding: 0.95rem 1rem 1rem;
}

.catalog-stage-card__body h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
}

.catalog-stage-card__body p {
  margin: 0;
  color: var(--color-gray-700);
  font-size: 0.86rem;
  line-height: 1.6;
}

.catalog-stage-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.2rem;
}

.catalog-stage-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  color: #64748b;
}

.catalog-stage-card__meta i {
  color: #9aa7ba;
  font-size: 0.82rem;
}

.catalog-stage-card__footer small {
  color: inherit;
  font-size: 0.79rem;
  font-weight: 700;
}

.catalog-stage-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.58rem 0.88rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef1111, #ff2d2d);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 20px rgba(239, 17, 17, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.catalog-stage-card__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 24px rgba(239, 17, 17, 0.24);
}

.catalog-products-stage {
  display: grid;
  gap: 1.15rem;
}

.catalog-products-stage__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.catalog-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 8.5rem;
}

.catalog-panel {
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.catalog-panel h2 {
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-sidebar__all {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--color-gray-900);
  font-size: 0.94rem;
  font-weight: 800;
}

.catalog-sidebar__all.is-active {
  color: var(--color-red);
}

.catalog-brand-filter {
  margin-bottom: 1rem;
}

.catalog-brand-dropdown {
  position: relative;
}

.catalog-brand-dropdown summary {
  list-style: none;
}

.catalog-brand-dropdown summary::-webkit-details-marker {
  display: none;
}

.catalog-brand-dropdown__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 14px;
  background: #fff;
  color: var(--color-gray-900);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.catalog-brand-dropdown[open] .catalog-brand-dropdown__summary {
  border-color: rgba(239, 17, 17, 0.2);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.catalog-brand-dropdown__summary i {
  color: var(--color-gray-500);
  font-size: 0.84rem;
  transition: transform 0.2s ease;
}

.catalog-brand-dropdown[open] .catalog-brand-dropdown__summary i {
  transform: rotate(180deg);
}

.catalog-brand-dropdown__selected {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 1.8rem;
  min-width: 0;
}

.catalog-brand-dropdown__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.55rem);
  z-index: 20;
  display: grid;
  gap: 0.45rem;
  max-height: 20rem;
  padding: 0.7rem;
  overflow-y: auto;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.catalog-brand-dropdown__option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 3.35rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.catalog-brand-dropdown__option:hover,
.catalog-brand-dropdown__option.is-active {
  border-color: rgba(239, 17, 17, 0.16);
  background: rgba(239, 17, 17, 0.05);
}

.catalog-brand-dropdown__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.3rem;
}

.catalog-brand-dropdown__logo img {
  display: block;
  max-width: 138px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.catalog-brand-dropdown__fallback,
.catalog-brand-dropdown__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(239, 17, 17, 0.08);
  color: var(--color-red);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.catalog-brand-dropdown__fallback {
  min-width: 3rem;
}

.catalog-category-tree {
  display: grid;
  gap: 0.9rem;
}

.catalog-category-group {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.catalog-category-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.catalog-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-gray-900);
  font-size: 0.96rem;
  font-weight: 800;
}

.catalog-category-link small {
  color: var(--color-gray-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.catalog-category-link.is-active,
.catalog-category-link:hover,
.catalog-subcategory-list a.is-active,
.catalog-subcategory-list a:hover {
  color: var(--color-red);
}

.catalog-subcategory-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.7rem;
  padding-left: 0.2rem;
}

.catalog-subcategory-list a {
  color: var(--color-gray-700);
  font-size: 0.9rem;
}

.catalog-accordion {
  display: grid;
  gap: 0.55rem;
}

.catalog-accordion__item {
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.catalog-accordion__item:last-child {
  border-bottom: 0;
}

.catalog-accordion__item--link {
  padding-bottom: 0.85rem;
}

.catalog-accordion__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0 0.85rem;
  list-style: none;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
}

.catalog-accordion__item summary::-webkit-details-marker {
  display: none;
}

.catalog-accordion__item[open] summary {
  color: var(--color-red);
}

.catalog-accordion__item summary i {
  transition: transform 0.2s ease;
}

.catalog-accordion__item[open] summary i {
  transform: rotate(45deg);
}

.catalog-accordion__body {
  display: grid;
  gap: 0.45rem;
  padding: 0 0 0.9rem 0.2rem;
}

.catalog-accordion__body span,
.catalog-accordion__body a {
  color: var(--color-gray-700);
  font-size: 0.9rem;
}

.catalog-subcategory-link {
  color: var(--color-gray-700);
  font-weight: 600;
}

.catalog-subcategory-link--open {
  margin-top: 0.15rem;
  color: var(--color-gray-900);
  font-weight: 800;
}

.catalog-subcategory-link.is-active,
.catalog-subcategory-link:hover,
.catalog-subcategory-link--open:hover {
  color: var(--color-red);
}

.catalog-main {
  min-width: 0;
}

.catalog-open-category {
  margin-top: 0.3rem;
  color: var(--color-red);
  font-weight: 800;
}

.catalog-brochure {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(229, 57, 53, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(253, 248, 248, 1));
}

.catalog-brochure__icon,
.catalog-brochure__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  background: rgba(229, 57, 53, 0.08);
  color: var(--color-red);
}

.catalog-brochure__copy strong,
.catalog-contact-item strong {
  display: block;
  color: var(--color-gray-900);
}

.catalog-brochure__copy small,
.catalog-contact-item small {
  color: var(--color-gray-500);
  line-height: 1.5;
}

.catalog-contact-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

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

.catalog-contact-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.08);
  color: var(--color-red);
}

.catalog-contact-button {
  width: 100%;
}

.catalog-main {
  min-width: 0;
}

.catalog-results {
  margin-bottom: 1rem;
}

.catalog-results p {
  margin: 0;
  color: var(--color-gray-500);
  font-size: 0.95rem;
  font-weight: 700;
}

.catalog-empty {
  padding: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.catalog-empty h2 {
  margin-bottom: 0.45rem;
}

.catalog-empty p,
.catalog-empty__text {
  color: var(--color-gray-700);
}

.contact-form__error {
  display: block;
  margin-top: 0.42rem;
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.catalog-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(223, 229, 239, 0.95);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(239, 17, 17, 0.045), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.catalog-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 17, 17, 0.28);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.14);
}

.catalog-product-card__media {
  display: grid;
  place-items: center;
  height: 208px;
  padding: 1rem 1rem 0.4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.catalog-product-card__media img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.catalog-product-card:hover .catalog-product-card__media img {
  transform: scale(1.03);
}

.catalog-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 0.85rem 1rem 1rem;
}

.catalog-product-card__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.58rem;
  min-height: 1.9rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(239, 17, 17, 0.08);
  color: var(--color-red);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.catalog-product-card__body h2 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
}

.catalog-product-card__body p {
  margin-bottom: 1rem;
  color: #5b6472;
  font-size: 0.86rem;
  line-height: 1.58;
}

.catalog-product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  min-height: 3rem;
  padding: 0.84rem 0.96rem;
  border: 1px solid rgba(239, 17, 17, 0.16);
  border-radius: 13px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  color: var(--color-gray-900);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.catalog-product-card__button:hover {
  color: var(--color-red);
  transform: translateY(-1px);
  border-color: rgba(239, 17, 17, 0.34);
  box-shadow: 0 14px 26px rgba(185, 28, 28, 0.12);
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.catalog-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 10px;
  background: #fff;
  color: var(--color-gray-900);
  font-weight: 800;
}

.catalog-pagination__item.is-active,
.catalog-pagination__item:hover {
  border-color: rgba(229, 57, 53, 0.24);
  background: var(--color-red);
  color: var(--color-white);
}

.catalog-features-band {
  padding: 0 0 4.5rem;
}

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

.catalog-feature-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.catalog-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.08);
  color: var(--color-red);
}

.page-hero--product {
  background:
    linear-gradient(122deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.68)),
    url("../images/hero2.jpg") center/cover no-repeat;
}

.catalog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
}

.catalog-back-link:hover {
  color: #fff;
}

.product-gallery-wrap {
  padding-top: 0;
}

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

.product-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.product-gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 1rem;
}

.detail-richtext p {
  color: var(--color-gray-700);
  line-height: 1.8;
}

.product-meta-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.product-meta-stack div {
  display: grid;
  gap: 0.2rem;
}

.product-meta-stack strong {
  color: var(--color-gray-900);
}

.product-meta-stack span {
  color: var(--color-gray-700);
}

.product-detail-page {
  padding: 2.5rem 0 0;
  background:
    radial-gradient(circle at top left, rgba(185, 28, 28, 0.07), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff9f9 100%);
  overflow-x: clip;
}

.product-detail-page .container,
.product-related-section .container {
  max-width: 100%;
  overflow-x: clip;
}

.product-detail-breadcrumb {
  margin-bottom: 1.5rem;
}

.product-detail-shell {
  display: grid;
  gap: 1.8rem;
  min-width: 0;
}

.product-detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.5rem;
  align-items: start;
  min-width: 0;
}

.product-showcase,
.product-summary,
.product-quote-card,
.product-inquiry-panel {
  min-width: 0;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.product-showcase {
  padding: 1.05rem;
}

.product-showcase__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 455px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(185, 28, 28, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-showcase__stage img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: transform 0.32s ease;
}

.product-showcase__stage:hover img {
  transform: scale(1.035);
}

.product-showcase__zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.3rem;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.product-showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.product-showcase__thumb {
  padding: 0.4rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-showcase__thumb.is-active,
.product-showcase__thumb:hover {
  border-color: rgba(229, 57, 53, 0.35);
  box-shadow: 0 12px 22px rgba(185, 28, 28, 0.12);
  transform: translateY(-2px);
}

.product-showcase__thumb img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.product-summary {
  padding: 1.55rem 1.55rem 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(185, 28, 28, 0.07), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
}

.product-summary__eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.product-summary__eyebrow,
.product-summary__brand {
  display: inline-flex;
  margin-bottom: 0;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-summary__eyebrow {
  background: rgba(239, 17, 17, 0.08);
  color: var(--color-red);
}

.product-summary__brand {
  background: rgba(15, 23, 42, 0.06);
  color: var(--color-gray-600);
}

.product-summary h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.8rem, 4.4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.product-summary__lead {
  margin-bottom: 1.3rem;
  color: var(--color-gray-700);
  font-size: 1.02rem;
  line-height: 1.78;
}

.product-highlights,
.product-highlights--facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.product-highlight {
  padding: 1rem 1rem;
  border-radius: 18px;
  background: #fff8f8;
  border: 1px solid rgba(229, 57, 53, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-highlight:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 57, 53, 0.22);
  box-shadow: 0 14px 28px rgba(185, 28, 28, 0.08);
}

.product-highlight--fact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem;
}

.product-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 16px;
  background: rgba(239, 17, 17, 0.08);
  color: var(--color-red);
  font-size: 1rem;
}

.product-highlight small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-gray-500);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-highlight strong {
  color: var(--color-gray-900);
  font-size: 0.96rem;
}

.product-summary__actions,
.product-quote-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product-summary__actions--sticky {
  position: static;
  bottom: auto;
  padding-top: 0.15rem;
}

.product-summary__actions--sticky .button {
  flex: 1 1 220px;
  justify-content: center;
}

.product-detail-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.55rem;
  align-items: start;
}

.product-tabs {
  display: grid;
  gap: 1.15rem;
  min-width: 0;
}

.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0.45rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  width: fit-content;
}

.product-tabs__button {
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--color-gray-900);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.product-tabs__button.is-active {
  border-color: rgba(229, 57, 53, 0.24);
  background: linear-gradient(135deg, var(--color-red), #ef4444);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(185, 28, 28, 0.2);
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel.is-active {
  display: block;
}

.product-tabs__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.55rem;
  align-items: stretch;
  min-width: 0;
}

.product-tabs__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.detail-card--full {
  width: 100%;
}

.detail-card--feature-panel {
  padding: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(229, 57, 53, 0.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
}

.product-feature-intro {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.product-feature-intro .detail-richtext {
  margin: 0;
}

.product-feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-left: 0;
  list-style: none;
}

.product-feature-list li {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: start;
  gap: 0.9rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9f9 100%);
  color: var(--color-gray-700);
  font-weight: 600;
  line-height: 1.65;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.product-feature-list__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(239, 17, 17, 0.08);
  color: var(--color-red);
  box-shadow: inset 0 0 0 1px rgba(239, 17, 17, 0.08);
}

.product-quote-card {
  position: relative;
  overflow: hidden;
  padding: 1.65rem;
  background:
    radial-gradient(circle at bottom left, rgba(229, 57, 53, 0.12), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

.product-quote-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.12), transparent 70%);
  pointer-events: none;
}

.product-quote-card h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.product-quote-card p {
  margin-bottom: 1rem;
  color: var(--color-gray-700);
  font-size: 1rem;
  line-height: 1.8;
}

.product-quote-card__trust {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.product-quote-card__trust span {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-gray-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-quote-card__trust span::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--color-red);
}

.product-quote-card__contact {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.product-quote-card__contact strong {
  color: var(--color-red);
  font-size: 1.3rem;
}

.product-quote-card__contact span {
  color: var(--color-gray-700);
}

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

.spec-grid--cards {
  gap: 1rem;
}

.spec-grid--cards > div {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
}

.spec-grid--cards dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.spec-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  background: rgba(239, 17, 17, 0.08);
  color: var(--color-red);
  font-size: 0.88rem;
}

.product-inquiry-panel {
  position: sticky;
  top: 8.8rem;
  overflow: hidden;
  padding: 1.45rem 1.3rem 1.3rem;
  background:
    radial-gradient(circle at top right, rgba(239, 17, 17, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

.product-inquiry-panel__header {
  margin-bottom: 1rem;
}

.product-inquiry-panel__header h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.product-inquiry-panel__header p {
  margin: 0;
  color: var(--color-gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-form--product {
  width: 100%;
  margin-left: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.contact-form--product .button {
  width: 100%;
}

.product-related-section {
  padding-top: 1.35rem;
}

.product-related-section .section-heading--row {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.product-related-section .eyebrow {
  margin-bottom: 0.45rem;
}

.product-related-section .section-heading--row h2 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.product-related-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 1.15rem;
  max-width: 100%;
  overflow-x: auto;
  padding: 0.15rem 0 0.45rem;
  scroll-snap-type: x mandatory;
}

.product-related-slider::-webkit-scrollbar {
  height: 8px;
}

.product-related-slider::-webkit-scrollbar-thumb {
  background: rgba(185, 28, 28, 0.24);
  border-radius: 999px;
}

.product-card--related {
  min-width: 0;
  scroll-snap-align: start;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.product-card--related img {
  height: 220px;
  object-fit: cover;
}

.product-card--related .product-card__body {
  padding: 1.1rem 1.05rem 1.1rem;
}

.product-card--related .product-card__brand {
  margin-bottom: 0.55rem;
}

.product-card--related h3 {
  font-size: 1.28rem;
  line-height: 1.08;
  margin-bottom: 0.5rem;
}

.product-card--related p {
  min-height: 4.8rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.62;
}

.product-card--related .button {
  width: 100%;
  justify-content: center;
}

.page-hero--services {
  background:
    linear-gradient(122deg, rgba(17, 24, 39, 0.9), rgba(127, 21, 21, 0.55)),
    url("../images/hero4.webp") center/cover no-repeat;
}

.services-hero__content {
  max-width: 34rem;
}

.services-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.services-hero__breadcrumb a:hover,
.services-hero__breadcrumb span:last-child {
  color: var(--color-white);
}

.services-hero__content h1 {
  margin-bottom: 0.8rem;
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.hero-accent {
  color: var(--color-red);
}

.services-hero__content p {
  max-width: 29rem;
  color: rgba(255, 255, 255, 0.84);
}

.services-showcase {
  padding-top: 2.8rem;
  background:
    radial-gradient(circle at top left, rgba(229, 57, 53, 0.06), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff9f8 100%);
}

.section-heading--services {
  margin-inline: auto;
  text-align: center;
}

.section-heading--services .eyebrow {
  color: var(--color-red);
}

.section-heading--services h2 {
  margin-bottom: 0.7rem;
}

.section-heading--services p {
  max-width: 35rem;
  margin-inline: auto;
}

.services-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.service-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.72);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.service-feature-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1rem;
}

.service-feature-card__icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 14px;
  background: rgba(229, 57, 53, 0.1);
  color: var(--color-red);
  font-size: 1rem;
}

.service-feature-card__index {
  color: rgba(229, 57, 53, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-feature-card h2 {
  margin-bottom: 0.7rem;
  color: var(--color-gray-900);
  font-size: 1.18rem;
  line-height: 1.28;
}

.service-feature-card p {
  margin: 0;
  color: var(--color-gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-feature-card__image-wrap {
  margin: 0 1.05rem 1.05rem;
  overflow: hidden;
  border-radius: 16px;
  min-height: 120px;
}

.service-feature-card__image-wrap img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.services-process {
  background:
    radial-gradient(circle at top right, rgba(229, 57, 53, 0.05), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.services-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 1.1rem 2.2rem;
  align-items: center;
  justify-items: center;
  position: relative;
}

.services-process__card {
  position: relative;
  width: 100%;
  max-width: 180px;
  min-height: 100%;
  padding: 0.4rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.services-process__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.services-process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin: 1.15rem auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f5f7fb 70%, #eef2f7 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: var(--color-gray-900);
  font-size: 1.45rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.services-process__card h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-gray-900);
}

.services-process__card p {
  margin: 0;
  color: var(--color-gray-500);
  font-size: 0.84rem;
  line-height: 1.55;
}

.services-process__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(148, 163, 184, 0.95);
  font-size: 1rem;
}

.services-process__card:not(:last-child)::after {
  content: "\f061";
  position: absolute;
  top: 3.55rem;
  right: -1.75rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(148, 163, 184, 0.9);
  font-size: 1rem;
}

.page-hero--brands {
  background:
    linear-gradient(122deg, rgba(16, 16, 16, 0.88), rgba(17, 24, 39, 0.55)),
    url("../images/hero1.jpg") center/cover no-repeat;
}

.brands-hero {
  position: relative;
  min-height: 24rem;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.86) 0%, rgba(16, 16, 16, 0.52) 42%, rgba(16, 16, 16, 0.2) 100%),
    url("../images/hero1.jpg") center/cover no-repeat;
}

.brands-hero__content {
  padding: 3.2rem 0 3rem;
  color: var(--color-white);
}

.brands-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.brands-hero__breadcrumb a:hover,
.brands-hero__breadcrumb span:last-child {
  color: var(--color-white);
}

.brands-hero h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--color-white);
}

.brands-hero p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.brands-showcase {
  padding-top: 2.6rem;
  background:
    radial-gradient(circle at top left, rgba(229, 57, 53, 0.06), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}

.section-heading--brands h2 span {
  color: var(--color-red);
}

.section-heading--brands::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: var(--color-red);
}

.brands-grid--showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.4rem;
}

.brands-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.brands-card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 57, 53, 0.9);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}

.brands-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.08);
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brands-card__logo {
  display: grid;
  place-items: center;
  min-height: 7.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.75);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.brands-card__logo img,
.brands-card__logo-image {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

.brands-card__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
}

.brands-card__wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  text-align: center;
}

.brands-card__fallback.is-hidden {
  display: none;
}

.brands-card__wordmark strong {
  color: var(--color-gray-900);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brands-card h3 {
  margin-bottom: 0.6rem;
  color: var(--color-gray-900);
  font-size: 1.18rem;
  font-weight: 800;
  text-align: center;
}

.brands-card p {
  margin-bottom: 1.35rem;
  color: var(--color-gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}

.brands-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: auto;
  align-self: center;
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(229, 57, 53, 0.24);
  border-radius: 12px;
  background: #fff;
  color: var(--color-red);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.brands-card__button:hover {
  background: linear-gradient(135deg, var(--color-red), #ef4444);
  color: var(--color-white);
}

.page-hero--projects {
  background:
    linear-gradient(122deg, rgba(16, 16, 16, 0.88), rgba(185, 28, 28, 0.45)),
    url("../images/hero3.webp") center/cover no-repeat;
}

.project-hero {
  position: relative;
  min-height: 30rem;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.56) 38%, rgba(10, 10, 10, 0.16) 100%),
    url("../images/project/OLP16.jpg") center/cover no-repeat;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
}

.project-hero__content {
  max-width: 34rem;
}

.project-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.project-hero__breadcrumb span:last-child,
.project-hero__breadcrumb a:hover {
  color: var(--color-white);
}

.project-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3.25rem, 6vw, 5rem);
  line-height: 0.96;
}

.project-hero h1 span {
  color: #ff4136;
}

.project-hero__divider {
  width: 4rem;
  height: 4px;
  margin: 1.35rem 0 1.1rem;
  border-radius: 999px;
  background: var(--color-red);
}

.project-hero p {
  max-width: 24rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.project-gallery-section {
  padding-top: 2.9rem;
  background:
    radial-gradient(circle at top left, rgba(185, 28, 28, 0.05), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.project-gallery__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-bottom: 2.5rem;
}

.project-filter {
  min-width: 118px;
  padding: 0.9rem 1.2rem 0.85rem;
  border: 0;
  border-bottom: 5px solid transparent;
  border-radius: 12px 12px 0 0;
  background: transparent;
  color: var(--color-gray-900);
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.project-filter:hover,
.project-filter.is-active {
  color: var(--color-red);
  background: rgba(185, 28, 28, 0.04);
  border-color: var(--color-red);
}

.project-filter:hover {
  transform: translateY(-1px);
}

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

.project-gallery-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.project-gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 28, 28, 0.2);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
}

.project-gallery-card.is-hidden {
  display: none;
}

.project-gallery-card__media {
  position: relative;
}

.project-gallery-card__media img {
  width: 100%;
  height: 228px;
  object-fit: cover;
}

.project-gallery-card__tag {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.92);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.project-gallery-card__tag::before {
  content: "\f1b3";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.76rem;
}

.project-gallery-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.95rem 0.9rem 0.9rem;
}

.project-gallery-card__body h2 {
  margin-bottom: 0.4rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.project-gallery-card__body p {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--color-gray-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.project-gallery-card__body p i {
  color: var(--color-red);
}

.project-gallery-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), #f02c2c);
  color: var(--color-white);
  box-shadow: 0 10px 18px rgba(185, 28, 28, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-gallery-card__action:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 26px rgba(185, 28, 28, 0.28);
}

.project-featured {
  position: relative;
  margin: 1.6rem auto 0;
  max-width: 46rem;
  padding: 1rem;
  border-radius: 26px;
  background: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.project-featured.is-hidden {
  display: none;
}

.project-featured__close {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.92);
  color: var(--color-white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.project-featured__frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.project-featured__frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.project-featured__nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-gray-900);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  transform: translateY(-50%);
  cursor: pointer;
}

.project-featured__nav--prev {
  left: 1rem;
}

.project-featured__nav--next {
  right: 1rem;
}

.project-featured__meta {
  padding: 1rem 0.45rem 0.4rem;
}

.project-featured__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--color-red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.project-featured__meta h2 {
  margin-bottom: 0.4rem;
  font-size: 2rem;
}

.project-featured__meta p {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--color-gray-500);
  font-weight: 700;
}

.project-featured__meta p i {
  color: var(--color-red);
}

.project-featured__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
  padding-top: 0.45rem;
}

.project-featured__thumb {
  padding: 0.18rem;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.project-featured__thumb.is-active,
.project-featured__thumb:hover {
  border-color: var(--color-red);
  transform: translateY(-2px);
}

.project-featured__thumb img {
  width: 100%;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

.page-hero--contact {
  background:
    linear-gradient(122deg, rgba(16, 16, 16, 0.9), rgba(127, 21, 21, 0.62)),
    url("../images/hero4.webp") center/cover no-repeat;
}

.page-hero--plain {
  background:
    linear-gradient(122deg, rgba(16, 16, 16, 0.95), rgba(17, 24, 39, 0.75)),
    url("../images/hero5.jpg") center/cover no-repeat;
}

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

.detail-list {
  margin: 0;
  padding-left: 1.2rem;
}

.detail-list li {
  margin-bottom: 0.7rem;
}

.spec-grid {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.spec-grid div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.spec-grid dt {
  font-weight: 800;
}

.spec-grid dd {
  margin: 0;
  color: var(--color-gray-700);
  text-align: right;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid rgba(209, 213, 219, 0.8);
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-gray-300);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--color-gray-900);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(185, 28, 28, 0.15);
  border-color: var(--color-red);
}

.product-inquiry-section .inquiry-layout {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.product-inquiry-section .inquiry-layout > div:first-child {
  max-width: none;
}

.product-inquiry-section .inquiry-layout > div:first-child h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.04;
}

.product-inquiry-section .contact-form {
  width: 100%;
  margin-left: 0;
  padding: 1.55rem;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

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

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

.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-sm);
}

.contact-hero__divider,
.contact-page__divider {
  width: 3.25rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-red);
}

.contact-hero__divider {
  margin: 1.1rem 0 1rem;
}

.page-hero--contact {
  min-height: 23rem;
  background:
    linear-gradient(90deg, rgba(22, 24, 29, 0.86) 0%, rgba(22, 24, 29, 0.72) 38%, rgba(22, 24, 29, 0.4) 100%),
    url("../images/hero4.webp") center/cover no-repeat;
}

.page-hero--contact .page-hero__content {
  max-width: 28rem;
}

.page-hero--contact h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.95;
}

.page-hero--contact h1 span {
  color: var(--color-red);
}

.page-hero--contact p {
  max-width: 24rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-page {
  padding-top: 3.7rem;
}

.contact-page__heading {
  max-width: 36rem;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.contact-page__heading h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
}

.contact-page__heading .contact-page__divider {
  margin: 0 auto;
}

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

.contact-office-card,
.contact-map-card,
.contact-message-card,
.contact-cta-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.contact-office-card {
  display: grid;
  gap: 1.25rem;
  min-height: 100%;
  padding: 1.55rem;
}

.contact-office-card__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-office-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(185, 28, 28, 0.16);
  background: rgba(185, 28, 28, 0.06);
  color: var(--color-red);
  font-size: 1.35rem;
}

.contact-office-card__header h3 {
  margin-bottom: 0.3rem;
  font-size: 1.42rem;
  line-height: 1.12;
}

.contact-office-card__city {
  color: var(--color-gray-500);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-office-card__body {
  display: grid;
  gap: 0.9rem;
}

.contact-office-card__body p {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.85rem;
  align-items: start;
  margin: 0;
  color: var(--color-gray-700);
  font-size: 0.96rem;
  line-height: 1.7;
}

.contact-office-card__body i {
  color: var(--color-red);
  margin-top: 0.25rem;
}

.contact-office-card__body a:hover {
  color: var(--color-red);
}

.contact-office-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  width: fit-content;
  padding: 0.78rem 1.1rem;
  border: 1px solid rgba(185, 28, 28, 0.22);
  border-radius: 12px;
  color: var(--color-red);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-office-card__action:hover {
  transform: translateY(-2px);
  background: var(--color-red);
  color: var(--color-white);
}

.contact-connect-section {
  background:
    radial-gradient(circle at top right, rgba(185, 28, 28, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.contact-connect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.contact-map-card {
  overflow: hidden;
  min-height: 100%;
  padding: 0;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.contact-message-card {
  display: grid;
  gap: 1.45rem;
  padding: 1.8rem;
}

.contact-message-card__header h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

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

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

.contact-field span {
  font-weight: 700;
  color: var(--color-gray-700);
}

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

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fff;
  color: var(--color-gray-900);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

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

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: 2px solid rgba(185, 28, 28, 0.15);
  border-color: rgba(185, 28, 28, 0.35);
}

.contact-message-card__submit {
  width: 100%;
  min-height: 54px;
  justify-content: center;
}

.contact-cta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.4rem;
}

.contact-cta-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.5rem;
}

.contact-cta-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 1.75rem;
}

.contact-cta-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.contact-cta-card p {
  margin-bottom: 0.8rem;
}

.contact-cta-card strong {
  display: block;
  color: var(--color-gray-900);
  font-size: 1.2rem;
  line-height: 1.45;
}

.contact-cta-card .button {
  width: fit-content;
  min-height: 48px;
  margin-top: 0.2rem;
}

.timeline {
  display: grid;
  gap: 1.25rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline__year {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-red), #e03131);
  color: var(--color-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-steps article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid rgba(209, 213, 219, 0.8);
  box-shadow: var(--shadow-card);
}

.process-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.14), rgba(17, 24, 39, 0.06));
  color: var(--color-red);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.cta-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.flash {
  padding: 0.9rem 0;
  font-weight: 700;
}

.flash--success {
  background: #dcfce7;
  color: #166534;
}

.flash--error {
  background: #fee2e2;
  color: #991b1b;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(185, 28, 28, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  color: var(--color-gray-900);
  padding-top: 2rem;
}

.site-footer p {
  color: var(--color-gray-700);
}

.footer-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.8rem;
  padding: 2.1rem 2.2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(201, 22, 22, 0.96), rgba(184, 20, 20, 0.94)),
    url("../images/hero1.jpg") right center/cover no-repeat;
  color: var(--color-white);
  box-shadow: 0 28px 50px rgba(185, 28, 28, 0.18);
  overflow: hidden;
}

.footer-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-red);
  font-size: 2rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.footer-cta__content {
  position: relative;
  padding-left: 1.8rem;
}

.footer-cta__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.footer-cta__content .eyebrow {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-cta__content h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--color-white);
}

.footer-cta__content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.footer-cta__button {
  min-width: 194px;
  box-shadow: none;
}

.footer-main {
  padding-top: 3.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.9fr 0.95fr 0.95fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.footer-company {
  padding-right: 1rem;
}

.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 1.2rem;
}

.footer-company p {
  max-width: 21rem;
  font-size: 1rem;
  line-height: 1.9;
}

.footer-social {
  margin-top: 1.2rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: var(--color-white);
  color: var(--color-gray-900);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--color-red);
  border-color: rgba(185, 28, 28, 0.2);
}

.footer-column h2 {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
}

.footer-column h2::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 3px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: var(--color-red);
}

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

.footer-links li {
  display: flex;
  align-items: center;
}

.footer-links li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(107, 114, 128, 0.8);
  margin-right: 0.8rem;
  font-size: 0.82rem;
}

.footer-links a {
  color: var(--color-gray-700);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-red);
  transform: translateX(2px);
}

.footer-column--contact h2 {
  margin-bottom: 1.7rem;
}

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

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

.footer-contact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 1.2rem;
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  line-height: 1.15;
}

.footer-contact-item p {
  margin-bottom: 0.3rem;
  line-height: 1.75;
}

.footer-contact-item a:hover {
  color: var(--color-red);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.footer-newsletter__content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 1.8rem;
}

.footer-newsletter__content h3 {
  margin-bottom: 0.45rem;
  font-size: 1.8rem;
}

.footer-newsletter__content p {
  margin-bottom: 0;
}

.footer-newsletter__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 39rem);
}

.footer-newsletter__form input {
  flex: 1;
  min-width: 16rem;
  padding: 1.05rem 1.3rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: 18px;
  background: var(--color-white);
  color: var(--color-gray-900);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.footer-newsletter__form input:focus {
  outline: 2px solid rgba(185, 28, 28, 0.18);
  border-color: rgba(185, 28, 28, 0.28);
}

.footer-newsletter__form .button {
  white-space: nowrap;
}

.footer-bottom-bar {
  background: #12151b;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.45rem 0 1.7rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom__links,
.footer-payments {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom__links a:hover {
  color: var(--color-white);
}

.footer-payments span {
  color: rgba(255, 255, 255, 0.82);
}

.footer-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.1rem;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-gray-900);
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.footer-payments .footer-payment-badge {
  color: var(--color-gray-900);
}

.footer-payment-badge img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 20px;
}

.footer-payment-badge--visa {
  color: #1a4fb3;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-payments .footer-payment-badge--visa {
  color: #1a4fb3;
}

.footer-payment-badge--mastercard {
  gap: 0.45rem;
  padding-inline: 0.7rem 0.8rem;
  text-transform: lowercase;
  color: #111827;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-payment-badge__mc {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 1.55rem;
  height: 1rem;
}

.footer-payment-badge__mc i {
  position: absolute;
  top: 50%;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 50%;
  transform: translateY(-50%);
}

.footer-payment-badge__mc i:first-child {
  left: 0;
  background: #eb001b;
}

.footer-payment-badge__mc i:last-child {
  right: 0;
  background: #f79e1b;
  mix-blend-mode: multiply;
}

.footer-payment-badge--paypal {
  gap: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer-payment-badge--paypal span:first-child {
  color: #003087;
}

.footer-payment-badge--paypal span:last-child {
  color: #009cde;
}

.quick-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  z-index: 45;
}

.quick-actions__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.88);
  color: var(--color-white);
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

.quick-actions__item i {
  font-size: 1.45rem;
}

.quick-actions__item--whatsapp {
  width: 3.8rem;
  height: 3.8rem;
  padding: 0;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
}

.quick-actions__item--primary {
  background: var(--color-red);
}

.home-page {
  background:
    radial-gradient(circle at top right, rgba(185, 28, 28, 0.06), transparent 22%),
    radial-gradient(circle at 12% 22%, rgba(185, 28, 28, 0.045), transparent 18%),
    linear-gradient(180deg, #fefefe 0%, #f7f5f4 100%);
}

.home-section {
  padding: 4.75rem 0;
}

.home-section--soft {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.home-hero {
  position: relative;
  overflow: visible;
  min-height: 650px;
  padding: 4.8rem 0 3rem;
  background:
    url("../images/main_hero.png") center/cover no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 28%, rgba(255, 255, 255, 0.8) 42%, rgba(255, 255, 255, 0.42) 56%, rgba(255, 255, 255, 0.1) 70%, rgba(255, 255, 255, 0.02) 82%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 650px;
}

.home-hero__content {
  max-width: 35rem;
  padding: 2rem 0 1rem;
}

.home-hero .eyebrow {
  margin-bottom: 1.1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(185, 28, 28, 0.14);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.home-hero__content h1 {
  max-width: 11.4ch;
  color: #22252b;
  font-size: clamp(3.2rem, 5.9vw, 4.95rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
}

.home-hero__content h1 span {
  display: inline-block;
  color: var(--color-red);
  white-space: nowrap;
}

.home-hero__content p {
  max-width: 27rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #3f4653;
  margin-bottom: 1.85rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.home-hero__actions .button {
  min-height: 56px;
  padding-inline: 1.55rem;
}

.home-hero__actions .button--ghost {
  border: 1.5px solid rgba(185, 28, 28, 0.42);
  color: var(--color-gray-900);
  background: #fff;
}

.home-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.home-hero__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.6rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  color: #2b313c;
  font-size: 0.88rem;
  font-weight: 700;
}

.home-hero__highlights i {
  color: var(--color-red);
}

.home-hero__dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
}

.home-hero__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(39, 39, 42, 0.22);
}

.home-hero__dots span.is-active {
  background: var(--color-red);
}

.about-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.7rem;
  align-items: center;
}

.about-showcase__gallery {
  display: grid;
  grid-template-columns: 1.28fr 0.88fr;
  gap: 0.85rem;
}

.about-showcase__gallery img,
.about-showcase__stat {
  min-height: 168px;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.about-showcase__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-showcase__gallery img:first-child,
.about-showcase__gallery img:nth-child(3) {
  min-height: 185px;
}

.about-showcase__stat {
  display: grid;
  place-items: center;
  align-content: center;
  background: linear-gradient(145deg, #2c2f36, #17191f);
  color: var(--color-white);
  text-align: center;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-showcase__stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: #ff4b4b;
  margin-bottom: 0.35rem;
}

.about-showcase__stat span {
  max-width: 7ch;
  font-size: 0.95rem;
  font-weight: 700;
}

.about-showcase__content h2 {
  max-width: none;
  font-size: clamp(2.2rem, 3.3vw, 3.15rem);
  line-height: 1.02;
  margin-bottom: 0.9rem;
}

.about-showcase__content h2 span {
  display: block;
  white-space: nowrap;
}

.about-showcase__content p {
  max-width: 37rem;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.section-heading--compact {
  max-width: 48rem;
}

.about-overview {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.about-overview__content h2 {
  margin-bottom: 0.9rem;
}

.about-overview__content > p {
  max-width: 42rem;
}

.about-overview__points {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-overview__point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.about-overview__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 16px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 1.3rem;
}

.about-overview__point h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.about-overview__point p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about-overview__gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.about-overview__gallery img,
.about-overview__badge {
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.about-overview__gallery img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}

.about-overview__gallery img:first-child {
  grid-row: span 2;
  min-height: 100%;
}

.about-overview__badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.6rem;
  background: linear-gradient(135deg, var(--color-red), #e03131);
  color: var(--color-white);
}

.about-overview__badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.about-overview__badge span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.about-stats__card {
  padding: 1.9rem 1.3rem;
  border-radius: 22px;
  background: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  text-align: center;
}

.about-stats__card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-red);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.95rem, 4vw, 2.8rem);
  line-height: 1;
}

.about-stats__card span {
  color: var(--color-gray-700);
  font-weight: 700;
}

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

.about-story-card {
  padding: 2rem 1.8rem;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: var(--color-white);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.about-story-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

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

.about-story-card--accent {
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.96), rgba(127, 21, 21, 0.96)),
    url("../images/hero4.webp") center/cover no-repeat;
  color: var(--color-white);
}

.about-story-card--accent h2,
.about-story-card--accent .eyebrow,
.about-story-card--accent p {
  color: var(--color-white);
}

.about-story-card--accent p {
  color: rgba(255, 255, 255, 0.92);
}

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

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

.about-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 0.95rem;
}

.about-value-card p {
  margin: 0;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading--center p {
  margin-inline: auto;
}

.about-hero {
  position: relative;
  overflow: clip;
  padding: 2.3rem 0 0.8rem;
  background:
    radial-gradient(circle at 14% 28%, rgba(185, 28, 28, 0.09), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 26%, rgba(255, 255, 255, 0.22) 58%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 34%, rgba(255, 255, 255, 0.22) 62%, rgba(255, 255, 255, 0.04) 100%),
    url("../images/hero1.jpg") center/cover no-repeat;
  opacity: 0.9;
  z-index: 0;
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 1.5rem;
  min-height: 395px;
}

.about-hero__content {
  padding: 1.2rem 0 1.5rem;
  max-width: min(28rem, 100%);
}

.about-hero__content h1 {
  max-width: 9.5ch;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 4.9vw, 4.75rem);
  line-height: 0.98;
  color: #22252b;
}

.about-hero__content h1 span {
  display: block;
  white-space: nowrap;
}

.about-hero__content h1 span:last-child {
  color: var(--color-red);
}

.about-hero__content p {
  max-width: 31rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #404654;
  margin-bottom: 1.2rem;
}

.about-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

.about-hero__breadcrumb a:hover {
  color: var(--color-red);
}

.about-hero__breadcrumb span:last-child {
  color: var(--color-red);
}

.about-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.2rem;
  align-items: center;
}

.about-story__image-wrap {
  position: relative;
}

.about-story__image-wrap img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-card);
}

.about-story__stat {
  position: absolute;
  left: -1.6rem;
  bottom: -1rem;
  display: grid;
  gap: 0.45rem;
  padding: 1.45rem 1.35rem;
  min-width: 152px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-red), #e03131);
  color: var(--color-white);
  box-shadow: 0 20px 38px rgba(185, 28, 28, 0.22);
}

.about-story__stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.about-story__stat span {
  max-width: 8ch;
  font-weight: 700;
  line-height: 1.45;
}

.about-story__content h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.2vw, 2.95rem);
  line-height: 1.12;
}

.about-story__content > p {
  max-width: 35rem;
  margin-bottom: 1rem;
}

.about-story__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.6rem;
  margin-top: 1.8rem;
}

.about-story__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.about-story__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: var(--color-red);
  background: rgba(185, 28, 28, 0.08);
  font-size: 1.05rem;
}

.about-story__feature h3 {
  margin-bottom: 0.25rem;
  font-size: 1.08rem;
}

.about-story__feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-ceo-message {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.about-ceo-message__image-wrap {
  position: relative;
}

.about-ceo-message__image-wrap img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  box-shadow: var(--shadow-card);
}

.about-ceo-message__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.35rem;
  justify-items: start;
  padding: 1.25rem 1.1rem;
  width: 145px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ef4444 0%, var(--color-red) 100%);
  color: var(--color-white);
  box-shadow: 0 20px 38px rgba(185, 28, 28, 0.22);
}

.about-ceo-message__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1rem;
}

.about-ceo-message__badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.about-ceo-message__badge span:last-child {
  font-weight: 700;
  line-height: 1.45;
}

.about-ceo-message__content {
  padding: 1.4rem 0;
}

.about-ceo-message__content h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.about-ceo-message__content h2 span {
  color: var(--color-red);
}

.about-ceo-message__divider {
  width: 3.1rem;
  height: 3px;
  margin-bottom: 1.35rem;
  border-radius: 999px;
  background: var(--color-red);
}

.about-ceo-message__content h3 {
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
}

.about-ceo-message__content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.82;
}

.about-ceo-message__signature {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-red);
}

.about-ceo-message__signature strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.about-ceo-message__signature span {
  color: var(--color-red);
  font-weight: 700;
}

.about-mission-section {
  padding-top: 4.5rem;
}

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

.about-mission-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 1.8rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.about-mission-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.06);
  color: var(--color-red);
  font-size: 2rem;
}

.about-mission-card h3 {
  margin-bottom: 0.45rem;
}

.about-mission-card p {
  margin: 0;
}

.about-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.about-journey::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(209, 213, 219, 0.9);
}

.about-journey__item {
  position: relative;
  text-align: center;
  padding-top: 0.2rem;
}

.about-journey__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(185, 28, 28, 0.18);
  background: var(--color-white);
  color: var(--color-red);
  font-size: 1.1rem;
}

.about-journey__item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.about-journey__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-clients-band {
  position: relative;
  overflow: clip;
  padding: 4.6rem 0;
  background:
    linear-gradient(135deg, rgba(18, 21, 27, 0.92), rgba(18, 21, 27, 0.88)),
    url("../images/hero2.jpg") center/cover no-repeat;
  color: var(--color-white);
}

.about-clients-band .section-heading {
  max-width: 42rem;
}

.about-clients-band .section-heading h2 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.about-clients-band__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.4rem;
}

.about-clients-band__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.4rem 1rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.about-clients-band__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.7rem;
  height: 4.7rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 2.35rem;
}

.about-clients-band__stat strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1;
}

.about-clients-band__stat span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 700;
}

.about-showcase__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
  margin: 1.25rem 0 1.6rem;
}

.about-showcase__points span {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.about-showcase__points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

.button--about {
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  font-size: 0.9rem;
  box-shadow: 0 12px 22px rgba(185, 28, 28, 0.18);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.home-page .section-heading h2,
.why-home__content h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.15rem);
  line-height: 1.02;
}

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

.category-card--compact {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card--compact:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 28, 28, 0.18);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12), 0 14px 28px rgba(185, 28, 28, 0.08);
}

.category-card--compact img {
  height: 178px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.category-card--compact .category-card__content {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.1rem 1rem 1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 28, 28, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.category-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.category-card--compact h3 {
  min-height: 2.7rem;
  font-size: 1.32rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.category-card--compact p {
  font-size: 0.9rem;
  line-height: 1.62;
  min-height: 4.45rem;
  margin-bottom: 1rem;
  color: #596273;
}

.category-card--compact .text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  margin-top: auto;
  padding: 0.62rem 0.9rem;
  border-radius: 12px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.category-card--compact .text-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.78rem;
}

.category-card--compact:hover .text-link {
  background: linear-gradient(135deg, #ef1111, #ff3b30);
  color: #fff;
  transform: translateY(-1px);
}

.catalog-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 5.5rem 1rem;
}

.catalog-flow span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 28, 28, 0.16), rgba(185, 28, 28, 0.55), rgba(185, 28, 28, 0.16));
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05rem;
  align-items: stretch;
}

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1rem 1rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.99));
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 28, 28, 0.2);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
}

.catalog-card__code {
  position: absolute;
  top: -0.8rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-red), #e03131);
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(185, 28, 28, 0.22);
}

.catalog-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  margin: 1.1rem 0 1rem;
  border-radius: 20px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 1.8rem;
}

.catalog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--color-gray-500);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.catalog-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  line-height: 1.08;
}

.catalog-card__list {
  margin: 0;
  padding-left: 1rem;
  color: var(--color-gray-700);
}

.catalog-card__list li {
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.catalog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.catalog-card__footer span {
  color: var(--color-gray-500);
  font-size: 0.84rem;
  font-weight: 700;
}


.brand-strip--logos {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.brand-strip--logos .brand-chip {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 92px;
  text-align: center;
  padding: 1.25rem 1rem;
}

.brand-strip--logos .brand-chip strong {
  font-size: 1.35rem;
}

.section-heading--brand-showcase {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2rem;
}

.brand-showcase {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.9rem;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
  padding: 0.2rem 0 0.45rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.brand-showcase::-webkit-scrollbar {
  display: none;
}

.brand-showcase-wrap {
  position: relative;
  max-width: 100%;
  padding-inline: 3.2rem;
}

.brand-chip--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 180px;
  min-height: 78px;
  padding: 1rem 1.1rem;
  text-align: center;
  border-color: rgba(209, 213, 219, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  scroll-snap-align: start;
}

.brand-chip__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
}

.brand-chip__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.brand-chip__logo {
  width: 100%;
  max-width: 152px;
  height: 46px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-chip__fallback.is-hidden,
.brand-chip__logo.is-hidden {
  display: none;
}

.brand-chip--logo:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 28, 28, 0.24);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.brand-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.brand-showcase__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.18);
}

.brand-showcase__dots .is-active {
  background: var(--color-red);
}

.brand-showcase__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-gray-900);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  transform: translateY(calc(-50% - 0.8rem));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.brand-showcase__arrow:hover {
  transform: translateY(calc(-50% - 0.8rem)) scale(1.04);
  border-color: rgba(185, 28, 28, 0.3);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.brand-showcase__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.brand-showcase__arrow--prev {
  left: 0;
}

.brand-showcase__arrow--next {
  right: 0;
}

.why-home__content {
  text-align: center;
}

.why-home__content h2 {
  margin-bottom: 0.8rem;
}

.why-home__intro,
.section-heading--testimonials p {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1.03rem;
  line-height: 1.75;
}

.why-home__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.why-home__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.5rem 1.35rem 1.45rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-home__item:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 28, 28, 0.22);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.why-home__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 1.55rem;
  box-shadow: inset 0 0 0 1px rgba(185, 28, 28, 0.08);
}

.why-home__item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
  font-weight: 800;
}

.why-home__item p {
  margin-bottom: 0;
  color: var(--color-gray-700);
  font-size: 0.96rem;
  line-height: 1.7;
}

.home-stats-band {
  position: relative;
  overflow: clip;
  padding: 1rem 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 86% 50%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(90deg, #c91616 0%, #e02929 52%, #c91616 100%);
  color: var(--color-white);
  box-shadow: 0 26px 48px rgba(185, 28, 28, 0.2);
}

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

.why-home__stat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: 1.45rem 1.3rem;
  min-height: 124px;
  text-align: left;
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why-home__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -0.5rem;
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.why-home__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3.7rem;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  font-size: 1.7rem;
  color: var(--color-white);
}

.why-home__stat-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.why-home__stat-copy {
  display: grid;
  gap: 0.3rem;
}

.why-home__stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.04em;
}

.why-home__stat span {
  display: block;
  max-width: 10ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.testimonials-home {
  position: relative;
}

.section-heading--testimonials {
  max-width: 46rem;
}

.testimonial-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-grid--home .testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.65rem 1.55rem 1.5rem;
  border-radius: 22px;
  border-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.testimonial-grid--home .testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 28, 28, 0.2);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
}

.testimonial-card__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.08);
  color: var(--color-red);
  font-size: 1.2rem;
}

.testimonial-grid--home .testimonial-card p {
  margin-bottom: 1.5rem;
  color: var(--color-gray-700);
  font-size: 0.98rem;
  line-height: 1.8;
  flex: 1;
}

.testimonial-grid--home .testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.14), rgba(185, 28, 28, 0.04));
  color: var(--color-red);
  font-size: 1.9rem;
}

.testimonial-card__meta {
  display: grid;
  gap: 0.2rem;
}

.testimonial-card__meta strong {
  color: var(--color-gray-900);
  font-size: 1rem;
}

.testimonial-card__meta span {
  color: var(--color-gray-500);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.admin-page {
  background: #f6f7fb;
  color: #111827;
}

.admin-page--login {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 251, 0.96)),
    radial-gradient(circle at top left, rgba(239, 17, 17, 0.12), transparent 30%),
    #f6f7fb;
}

.admin-page h1,
.admin-page h2,
.admin-page h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.admin-login-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 480px);
  min-height: 100vh;
}

.admin-login-page__media,
.admin-login-page__panel {
  position: relative;
  min-width: 0;
}

.admin-login-page__media {
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.48)),
    url("../images/hero1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.admin-login-page__media::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  backdrop-filter: blur(8px);
}

.admin-login-page__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(239, 17, 17, 0.34), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 22%);
}

.admin-login-page__copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding: 2.25rem;
  color: #fff;
}

.admin-login-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-login-page__copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.admin-login-page__copy p {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.admin-login-page__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-login-card {
  width: min(100%, 430px);
  padding: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.admin-login-card__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.admin-login-card__logo img {
  width: 170px;
  height: auto;
}

.admin-login-card__header {
  margin-bottom: 1.35rem;
}

.admin-login-card__header h2 {
  margin: 0 0 0.45rem;
  font-size: 2rem;
}

.admin-login-card__header p,
.admin-login-card__footer {
  margin: 0;
  color: #6b7280;
}

.admin-login-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: 16px;
  background: rgba(254, 242, 242, 0.9);
  color: #b91c1c;
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-login-alert--success {
  border-color: rgba(34, 197, 94, 0.18);
  background: rgba(240, 253, 244, 0.96);
  color: #15803d;
}

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

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

.admin-field > span:first-child {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111827;
}

.admin-field input {
  width: 100%;
  min-width: 0;
  padding: 0.98rem 1rem;
  border: 1px solid rgba(209, 213, 219, 1);
  border-radius: 16px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-field input:focus {
  border-color: rgba(239, 17, 17, 0.45);
  box-shadow: 0 0 0 4px rgba(239, 17, 17, 0.08);
}

.admin-field small {
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-field__hint {
  color: #64748b !important;
  font-weight: 600 !important;
}

.admin-password-field {
  position: relative;
  display: block;
}

.admin-password-field input {
  padding-right: 3.25rem;
}

.admin-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #6b7280;
  transform: translateY(-50%);
  cursor: pointer;
}

.admin-login-form__options,
.admin-checkbox {
  display: flex;
  align-items: center;
}

.admin-login-form__options {
  justify-content: space-between;
  gap: 1rem;
  margin: 0.15rem 0 0.25rem;
}

.admin-login-form__options a {
  color: #ef1111;
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-checkbox {
  gap: 0.55rem;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-checkbox input {
  width: 1rem;
  height: 1rem;
  accent-color: #ef1111;
}

.admin-login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.5rem;
  padding: 1rem 1.2rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #ef1111, #ff2d2d);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(239, 17, 17, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.admin-login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 36px rgba(239, 17, 17, 0.28);
}

.admin-login-submit:disabled {
  cursor: wait;
  opacity: 0.85;
}

.admin-login-submit__loader {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: admin-spin 0.75s linear infinite;
}

.admin-login-submit.is-loading .admin-login-submit__loader {
  display: inline-block;
}

.admin-login-submit.is-loading .admin-login-submit__label {
  opacity: 0.92;
}

.admin-login-card__footer {
  margin-top: 1.35rem;
  text-align: center;
  font-size: 0.84rem;
}

@keyframes admin-spin {
  to {
    transform: rotate(360deg);
  }
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100vh;
  padding: 0.9rem 0.9rem 1rem;
  border-right: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: 10px 0 24px rgba(15, 23, 42, 0.03);
}

.admin-sidebar__brand {
  padding: 0 0.05rem 0.75rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.admin-sidebar__logo {
  display: block;
}

.admin-sidebar__logo img {
  width: 146px;
  height: auto;
}

.admin-sidebar__nav {
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  gap: 0.95rem;
  overflow-y: auto;
  padding-right: 0.15rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.admin-sidebar__nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.admin-sidebar__group {
  display: grid;
  gap: 0.1rem;
}

.admin-sidebar__group p {
  margin: 0 0 0.28rem;
  padding: 0 0.5rem;
  color: #7b8494;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-sidebar__link,
.admin-sidebar__logout {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.55rem;
  padding: 0.62rem 0.85rem;
  border-radius: 14px;
  color: #2d3748;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.admin-sidebar__link span,
.admin-sidebar__logout span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  font-size: 0.95rem;
  color: #5f6b7c;
}

.admin-sidebar__link:hover,
.admin-sidebar__logout:hover {
  background: rgba(239, 17, 17, 0.045);
  color: #ef1111;
}

.admin-sidebar__link.is-active {
  background: #ff2222;
  color: #fff;
  box-shadow: 0 14px 26px rgba(239, 17, 17, 0.18);
}

.admin-sidebar__link.is-active span {
  color: #fff;
}

.admin-sidebar__logout {
  margin-top: auto;
  color: #4b5563;
}

.admin-main {
  min-width: 0;
  max-width: 100%;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.9rem 1.1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.admin-topbar--mobile {
  display: none;
}

.admin-topbar__title {
  display: grid;
  gap: 0.12rem;
}

.admin-topbar__title strong {
  font-size: 0.98rem;
  color: #111827;
}

.admin-topbar__title small {
  color: #6b7280;
  font-size: 0.78rem;
}

.admin-topbar__left,
.admin-topbar__right,
.admin-topbar__icons,
.admin-dashboard__hero,
.admin-dashboard__hero-actions,
.admin-panel__header,
.admin-status-list__item,
.admin-activity-item,
.admin-service-item,
.admin-product-cell,
.admin-breadcrumb,
.admin-profile,
.admin-summary-card {
  display: flex;
  align-items: center;
}

.admin-topbar__right {
  gap: 1rem;
  min-width: 0;
}

.admin-menu-toggle,
.admin-icon-button,
.admin-pill-button,
.admin-mini-button,
.admin-add-button,
.admin-profile {
  border: 0;
  background: transparent;
}

.admin-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  color: #1f2937;
  font-size: 1.1rem;
}

.admin-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 18rem);
}

.admin-search input {
  width: 100%;
  min-width: 14rem;
  padding: 0.95rem 2.9rem 0.95rem 1rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 14px;
  background: #fff;
  outline: none;
}

.admin-search span {
  position: absolute;
  right: 1rem;
  color: #9ca3af;
}

.admin-topbar__icons {
  gap: 0.55rem;
}

.admin-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  color: #1f2937;
  font-size: 1.1rem;
}

.admin-icon-button strong {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  min-width: 1.1rem;
  padding: 0.08rem 0.25rem;
  border-radius: 999px;
  background: #ef1111;
  color: #fff;
  font-size: 0.65rem;
  line-height: 1.3;
}

.admin-profile {
  gap: 0.85rem;
  padding: 0.2rem;
  cursor: pointer;
  min-width: 0;
}

.admin-profile__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f2937, #475569);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-profile__text {
  display: grid;
  text-align: left;
  min-width: 0;
}

.admin-profile__text strong {
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.admin-profile__text small {
  color: #6b7280;
  font-size: 0.8rem;
}

.admin-dashboard {
  padding: 1.25rem 1.9rem 2rem;
  min-width: 0;
  max-width: 100%;
}

.admin-db-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 16px;
  background: rgba(255, 251, 235, 0.96);
  color: #b45309;
  font-weight: 700;
}

.admin-inline-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-weight: 700;
}

.admin-inline-alert--success {
  background: rgba(240, 253, 244, 0.96);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.admin-inline-alert--error {
  background: rgba(254, 242, 242, 0.96);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.admin-dashboard__hero {
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.35rem;
  min-width: 0;
}

.admin-dashboard__hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.admin-breadcrumb {
  gap: 0.65rem;
  color: #6b7280;
  font-size: 0.92rem;
}

.admin-breadcrumb strong {
  color: #ef1111;
}

.admin-dashboard__hero-actions {
  gap: 1rem;
}

.admin-catalog-heading {
  display: grid;
  gap: 0.35rem;
  max-width: 34rem;
}

.admin-catalog-heading--minimal {
  gap: 0.15rem;
}

.admin-catalog-heading--minimal .admin-catalog-heading__eyebrow,
.admin-catalog-heading--minimal p {
  display: none;
}

.admin-catalog-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(239, 17, 17, 0.08);
  color: #ef1111;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-catalog-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.65;
}

.admin-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 14px;
  background: #fff;
  font-weight: 700;
}

.admin-add-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.98rem 1.35rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #ef1111, #ff2d2d);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(239, 17, 17, 0.22);
}

.admin-summary-grid,
.admin-grid {
  display: grid;
  gap: 1.3rem;
}

.admin-summary-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 1.3rem;
}

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

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

.admin-summary-grid--brands {
  margin-bottom: 1.3rem;
}

.admin-summary-card {
  gap: 1rem;
  min-width: 0;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.admin-summary-card--brand {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  padding: 1.35rem 1.2rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(239, 17, 17, 0.04), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfe 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.admin-summary-card--brand::after {
  content: "";
  position: absolute;
  inset: auto -20px -28px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 17, 17, 0.08), transparent 70%);
  pointer-events: none;
}

.admin-summary-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.admin-summary-card__icon--rose {
  background: rgba(239, 17, 17, 0.08);
  color: #ef1111;
}

.admin-summary-card__icon--blue {
  background: rgba(37, 99, 235, 0.09);
  color: #2563eb;
}

.admin-summary-card__icon--green {
  background: rgba(34, 197, 94, 0.09);
  color: #16a34a;
}

.admin-summary-card__icon--purple {
  background: rgba(147, 51, 234, 0.09);
  color: #9333ea;
}

.admin-summary-card__icon--amber {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.admin-summary-card__body {
  min-width: 0;
}

.admin-summary-card__body p,
.admin-summary-card__body a {
  margin: 0;
}

.admin-summary-card__body p {
  color: #6b7280;
  font-size: 0.95rem;
}

.admin-summary-card__body strong {
  display: block;
  margin: 0.15rem 0 0.2rem;
  font-size: 2rem;
  line-height: 1;
}

.admin-summary-card--brand .admin-summary-card__body p {
  max-width: 9ch;
  font-size: 0.92rem;
  line-height: 1.55;
}

.admin-summary-card--brand .admin-summary-card__body strong {
  margin-top: 0.3rem;
  font-size: 2.05rem;
  font-weight: 800;
}

.admin-summary-card__body a {
  color: #ef1111;
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-grid--analytics {
  grid-template-columns: minmax(0, 2.2fr) minmax(300px, 1.15fr) minmax(280px, 1.2fr);
  margin-bottom: 1.3rem;
  align-items: stretch;
}

.admin-grid--tables {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
}

.admin-panel {
  padding: 1.35rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.admin-grid--analytics .admin-panel {
  min-height: 430px;
}

.admin-panel__header {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-panel__header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.admin-pill-button,
.admin-mini-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-weight: 700;
}

.admin-mini-button {
  color: #374151;
  font-size: 0.9rem;
}

.admin-pill-button--active {
  border-color: rgba(239, 17, 17, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 243, 243, 1) 100%);
  color: #ef1111;
  box-shadow: 0 10px 22px rgba(239, 17, 17, 0.1);
}

.admin-line-chart {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.admin-line-chart__axis {
  display: grid;
  align-content: space-between;
  padding-top: 0.25rem;
  color: #6b7280;
  font-size: 0.85rem;
}

.admin-line-chart__stage {
  position: relative;
  height: 250px;
}

.admin-line-chart__grid {
  position: absolute;
  inset: 0 0 1.8rem;
  border-left: 1px solid rgba(226, 232, 240, 1);
  border-bottom: 1px solid rgba(226, 232, 240, 1);
  background-image:
    linear-gradient(to right, rgba(226, 232, 240, 0.75) 1px, transparent 1px),
    linear-gradient(to top, rgba(226, 232, 240, 0.75) 1px, transparent 1px);
  background-size: 19% 100%, 100% 20%;
}

.admin-line-chart svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 210px;
  margin-top: 0.2rem;
}

.admin-line-chart__labels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  color: #6b7280;
  font-size: 0.85rem;
}

.admin-status-chart {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  justify-items: center;
  min-height: 360px;
  padding-top: 0.35rem;
}

.admin-donut-chart {
  width: 172px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#2563eb 0 35%, #ef1111 35% 66%, #f59e0b 66% 89%, #22c55e 89% 100%);
  position: relative;
}

.admin-donut-chart::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.8);
}

.admin-status-list {
  width: 100%;
  display: grid;
  gap: 1rem;
}

.admin-status-list__item {
  justify-content: space-between;
  gap: 1rem;
}

.admin-status-list__label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.admin-status-list__item strong {
  color: #6b7280;
  font-size: 0.92rem;
}

.admin-status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}

.admin-status-dot--new { background: #2563eb; }
.admin-status-dot--progress { background: #ef1111; }
.admin-status-dot--replied { background: #f59e0b; }
.admin-status-dot--closed { background: #22c55e; }

.admin-activity-list,
.admin-service-list {
  display: grid;
}

.admin-panel#recent-enquiries {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100%;
}

.admin-panel#recent-enquiries .admin-activity-list {
  max-height: 340px;
  padding-right: 0.35rem;
  overflow-y: auto;
}

.admin-panel#recent-enquiries .admin-activity-list::-webkit-scrollbar {
  width: 8px;
}

.admin-panel#recent-enquiries .admin-activity-list::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.9);
  border-radius: 999px;
}

.admin-panel#recent-enquiries .admin-activity-list::-webkit-scrollbar-thumb {
  background: rgba(239, 17, 17, 0.24);
  border-radius: 999px;
}

.admin-activity-item,
.admin-service-item {
  gap: 0.9rem;
  padding: 0.95rem 0;
}

.admin-activity-item + .admin-activity-item,
.admin-service-item + .admin-service-item {
  border-top: 1px solid rgba(226, 232, 240, 0.75);
}

.admin-activity-item__avatar,
.admin-service-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
}

.admin-activity-item__body {
  min-width: 0;
  flex: 1;
}

.admin-activity-item__body strong,
.admin-activity-item__body span {
  display: block;
}

.admin-activity-item__body span {
  color: #6b7280;
  font-size: 0.92rem;
}

.admin-activity-item__meta {
  display: grid;
  justify-items: end;
  gap: 0.25rem;
}

.admin-activity-item__meta small {
  color: #6b7280;
}

.admin-activity-item__indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ef1111;
}

.admin-activity-item__indicator--new { background: #2563eb; }
.admin-activity-item__indicator--progress { background: #ef1111; }
.admin-activity-item__indicator--replied { background: #f59e0b; }
.admin-activity-item__indicator--closed { background: #22c55e; }

.admin-empty-state {
  margin: 0;
  color: #6b7280;
  font-weight: 700;
}

.admin-table-wrap {
  overflow-x: auto;
}

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

.admin-table th,
.admin-table td {
  padding: 0.95rem 0.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  vertical-align: middle;
}

.admin-table th {
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-product-cell {
  gap: 0.8rem;
  min-width: 16rem;
}

.admin-product-cell img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.admin-product-cell span {
  font-weight: 700;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-badge--active {
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
}

.admin-badge--inactive {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.admin-service-item span {
  flex: 1;
  font-weight: 700;
}

.admin-catalog-page {
  position: relative;
}

.admin-dashboard__hero--catalog {
  margin-bottom: 1.1rem;
}

.admin-catalog-toolbar,
.admin-catalog-table-panel {
  margin-bottom: 1.25rem;
}

.admin-catalog-toolbar {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.admin-catalog-toolbar__form,
.admin-catalog-toolbar__actions,
.admin-catalog-table-panel__top,
.admin-catalog-table-panel__bottom,
.admin-catalog-table-panel__count,
.admin-category-cell,
.admin-table-actions,
.admin-modal-card__header,
.admin-modal-form__footer {
  display: flex;
  align-items: center;
}

.admin-catalog-toolbar__form,
.admin-catalog-table-panel__top,
.admin-catalog-table-panel__bottom {
  justify-content: space-between;
  gap: 1rem;
}

.admin-catalog-toolbar__form {
  flex-wrap: wrap;
}

.admin-catalog-search {
  position: relative;
  flex: 1 1 420px;
}

.admin-catalog-search input,
.admin-catalog-select,
.admin-catalog-table-panel__count select,
.admin-modal-form select,
.admin-field select,
.admin-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(221, 228, 239, 0.95);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  outline: none;
}

.admin-catalog-search input {
  min-height: 3.15rem;
  padding-left: 1rem;
  padding-right: 3rem;
  font-size: 0.96rem;
}

.admin-catalog-search span {
  position: absolute;
  right: 1rem;
  top: 50%;
  color: #94a3b8;
  transform: translateY(-50%);
}

.admin-catalog-select {
  width: 180px;
  min-height: 3.15rem;
  padding: 0.86rem 0.95rem;
  color: #1f2937;
  font-size: 0.92rem;
}

.admin-catalog-toolbar__actions {
  gap: 0.8rem;
}

.admin-collections-toolbar {
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
}

.admin-collections-toolbar__form {
  display: grid;
  grid-template-columns: minmax(300px, 2.3fr) repeat(2, minmax(160px, 0.75fr)) max-content;
  gap: 0.8rem;
  align-items: center;
}

.admin-products-toolbar__form {
  grid-template-columns: minmax(260px, 2.15fr) repeat(3, minmax(140px, 0.72fr)) max-content;
}

.admin-collections-toolbar__search,
.admin-collections-toolbar__select {
  min-width: 0;
}

.admin-collections-toolbar .admin-catalog-search input,
.admin-collections-toolbar .admin-catalog-select {
  min-height: 3.2rem;
  border: 1px solid rgba(221, 228, 239, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.admin-collections-toolbar .admin-catalog-search input {
  padding-left: 1rem;
  padding-right: 3.2rem;
  font-size: 1rem;
}

.admin-collections-toolbar .admin-catalog-search span {
  right: 1.1rem;
  color: #94a3b8;
  font-size: 1rem;
}

.admin-collections-toolbar .admin-catalog-select {
  width: 100%;
  min-width: 0;
  padding: 0.86rem 0.95rem;
  font-size: 0.92rem;
  color: #1f2937;
}

.admin-collections-toolbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  white-space: nowrap;
}

.admin-collections-toolbar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.2rem;
  padding: 0.82rem 1rem;
  border-radius: 16px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.admin-collections-toolbar__button--apply {
  border-color: transparent;
  background: linear-gradient(135deg, #ef1111, #ff2d2d);
  color: #fff;
  box-shadow: 0 14px 26px rgba(239, 17, 17, 0.16);
}

.admin-collections-toolbar__button--reset {
  border: 1px solid rgba(221, 228, 239, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #475569;
}

.admin-collections-toolbar__button--reset i {
  color: #64748b;
}

.admin-enquiry-toolbar__form {
  display: grid;
  grid-template-columns: minmax(260px, 2.8fr) repeat(3, minmax(108px, 0.78fr)) max-content;
  gap: 0.65rem;
  align-items: center;
}

.admin-enquiry-toolbar {
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.admin-enquiry-toolbar__primary,
.admin-enquiry-toolbar__secondary {
  display: contents;
}

.admin-enquiry-toolbar__search,
.admin-enquiry-toolbar__select,
.admin-enquiry-toolbar__date {
  min-width: 0;
}

.admin-enquiry-toolbar__select {
  max-width: 136px;
}

.admin-enquiry-toolbar__date {
  max-width: 152px;
}

.admin-enquiry-toolbar .admin-catalog-search input,
.admin-enquiry-toolbar .admin-catalog-select,
.admin-enquiry-toolbar .admin-date-field input {
  min-height: 2.85rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.admin-enquiry-toolbar .admin-catalog-search input {
  padding-left: 0.95rem;
  padding-right: 2.75rem;
  font-size: 0.95rem;
}

.admin-enquiry-toolbar .admin-catalog-search span {
  right: 1rem;
  color: #94a3b8;
}

.admin-enquiry-toolbar .admin-catalog-select,
.admin-enquiry-toolbar .admin-date-field input {
  font-size: 0.88rem;
}

.admin-date-field--compact {
  gap: 0;
}

.admin-date-field--compact span {
  display: none;
}

.admin-enquiry-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
  white-space: nowrap;
}

.admin-enquiry-toolbar__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.72rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.admin-enquiry-toolbar__button--icon {
  width: 2.85rem;
  min-width: 2.85rem;
  border-color: transparent;
  background: linear-gradient(135deg, #ef1111, #ff2d2d);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 17, 17, 0.16);
}

.admin-enquiry-toolbar__button--icon i {
  font-size: 0.88rem;
}

.admin-enquiry-toolbar__button--reset {
  width: 2.85rem;
  min-width: 2.85rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #475569;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.admin-enquiry-toolbar__button--reset i {
  color: #64748b;
  font-size: 0.85rem;
}

.admin-add-button--small {
  min-height: 3rem;
  padding: 0.82rem 1.15rem;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(239, 17, 17, 0.18);
}

.admin-reset-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #374151;
  font-weight: 700;
}

.admin-catalog-table-panel__top,
.admin-catalog-table-panel__bottom {
  margin-bottom: 0.95rem;
}

.admin-catalog-table-panel__bottom {
  margin-top: 0.95rem;
  margin-bottom: 0;
}

.admin-catalog-table-panel__top p,
.admin-catalog-table-panel__bottom p {
  margin: 0;
  color: #475569;
  font-weight: 700;
}

.admin-catalog-table-panel__count {
  gap: 0.7rem;
  color: #475569;
}

.admin-catalog-table-panel__count select {
  width: 80px;
  padding-block: 0.7rem;
}

.admin-catalog-table-panel__top p,
.admin-catalog-table-panel__bottom p,
.admin-catalog-table-panel__count {
  font-size: 0.92rem;
}

.admin-table--categories td {
  padding-block: 0.8rem;
}

.admin-table--brands td {
  padding-block: 0.9rem;
}

.admin-table--brands td:nth-child(2) strong {
  color: #111827;
  font-size: 1rem;
}

.admin-table--services td {
  padding-block: 0.9rem;
}

.admin-table--products th:first-child,
.admin-table--products td:first-child {
  width: 2.6rem;
}

.admin-table--products th:nth-child(2),
.admin-table--products td:nth-child(2) {
  width: 5.5rem;
}

.admin-table--products td {
  padding-block: 0.95rem;
}

.admin-table--enquiries td {
  padding-block: 0.9rem;
}

.admin-table--enquiries {
  table-layout: fixed;
}

.admin-table--enquiries th,
.admin-table--enquiries td {
  padding-inline: 0.4rem;
}

.admin-table--enquiries th:nth-child(1),
.admin-table--enquiries td:nth-child(1) {
  width: 18%;
}

.admin-table--enquiries th:nth-child(2),
.admin-table--enquiries td:nth-child(2) {
  width: 19%;
}

.admin-table--enquiries th:nth-child(3),
.admin-table--enquiries td:nth-child(3) {
  width: 24%;
}

.admin-table--enquiries th:nth-child(4),
.admin-table--enquiries td:nth-child(4) {
  width: 19%;
}

.admin-table--enquiries th:nth-child(5),
.admin-table--enquiries td:nth-child(5) {
  width: 11%;
}

.admin-table--enquiries th:nth-child(6),
.admin-table--enquiries td:nth-child(6) {
  width: 9%;
}

.admin-table-muted {
  color: #64748b;
  font-size: 0.84rem;
}

.admin-enquiry-person,
.admin-enquiry-contact,
.admin-enquiry-subject {
  display: grid;
  gap: 0.2rem;
}

.admin-enquiry-person {
  min-width: 0;
}

.admin-enquiry-contact {
  min-width: 0;
}

.admin-enquiry-subject {
  min-width: 0;
}

.admin-enquiry-person strong,
.admin-enquiry-subject strong {
  color: #111827;
  font-size: 0.96rem;
}

.admin-enquiry-person span,
.admin-enquiry-contact span,
.admin-enquiry-subject span {
  color: #64748b;
  font-size: 0.87rem;
  line-height: 1.45;
}

.admin-enquiry-contact a {
  color: #111827;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-enquiry-related {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.admin-enquiry-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.admin-enquiry-badge--new {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.admin-enquiry-badge--progress {
  background: rgba(245, 158, 11, 0.16);
  color: #d97706;
}

.admin-enquiry-badge--replied {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.admin-enquiry-badge--closed {
  background: rgba(34, 197, 94, 0.13);
  color: #16a34a;
}

.admin-enquiry-badge--quote {
  background: rgba(239, 17, 17, 0.1);
  color: #ef1111;
}

.admin-enquiry-badge--general {
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
}

.admin-catalog-table-panel__count-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-enquiry-inline-stats {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 0.9rem;
}

.admin-enquiry-inline-stats strong {
  color: #111827;
}

.admin-modal-open {
  overflow: hidden;
}

.admin-confirm-modal[hidden] {
  display: none;
}

.admin-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.admin-confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
}

.admin-confirm-modal__dialog {
  position: relative;
  width: min(100%, 430px);
  padding: 2rem 1.75rem 1.55rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
  text-align: center;
}

.admin-confirm-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 999px;
  background: #fff;
  color: #64748b;
}

.admin-confirm-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(254, 226, 226, 0.95), rgba(254, 242, 242, 0.85));
  color: #dc2626;
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(252, 165, 165, 0.4);
}

.admin-confirm-modal__dialog h3 {
  margin: 0;
  color: #111827;
  font-size: 1.45rem;
}

.admin-confirm-modal__dialog p {
  margin: 0.8rem 0 0;
  color: #64748b;
  line-height: 1.65;
}

.admin-confirm-modal__actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.admin-confirm-modal__button {
  min-width: 132px;
  min-height: 3rem;
  padding: 0.82rem 1.1rem;
  border-radius: 14px;
  font-weight: 800;
}

.admin-confirm-modal__button--ghost {
  border: 1px solid rgba(226, 232, 240, 1);
  background: #fff;
  color: #334155;
}

.admin-confirm-modal__button--danger {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #ef1111, #dc2626);
  color: #fff;
  box-shadow: 0 16px 30px rgba(239, 17, 17, 0.25);
}

.admin-collection-products-trigger {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ef1111;
  font-weight: 800;
  line-height: 1;
}

.admin-collection-products-trigger:hover {
  color: #dc2626;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.admin-collection-products-trigger:focus-visible {
  outline: 2px solid rgba(239, 17, 17, 0.25);
  outline-offset: 4px;
  border-radius: 6px;
}

.admin-collection-products-empty {
  color: #94a3b8;
  font-weight: 700;
}

.admin-collection-products-modal[hidden] {
  display: none;
}

.admin-collection-products-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.admin-collection-products-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
}

.admin-collection-products-modal__dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: min(82vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
}

.admin-collection-products-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 999px;
  background: #fff;
  color: #64748b;
}

.admin-collection-products-modal__header {
  display: grid;
  gap: 0.35rem;
  padding: 1.6rem 1.75rem 1.2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.admin-collection-products-modal__header p {
  margin: 0;
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-collection-products-modal__header h3 {
  margin: 0;
  color: #111827;
  font-size: 1.45rem;
}

.admin-collection-products-modal__count {
  color: #64748b;
  font-weight: 700;
}

.admin-collection-products-modal__body {
  display: grid;
  gap: 0.9rem;
  max-height: calc(min(82vh, 760px) - 120px);
  padding: 1.2rem 1.75rem 1.75rem;
  overflow-y: auto;
}

.admin-collection-products-modal__empty {
  margin: 0;
  padding: 2rem 1rem;
  border: 1px dashed rgba(203, 213, 225, 1);
  border-radius: 20px;
  color: #64748b;
  text-align: center;
}

.admin-collection-products-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  background: #fff;
}

.admin-collection-products-item__content {
  display: grid;
  gap: 0.4rem;
}

.admin-collection-products-item__content strong {
  color: #111827;
}

.admin-collection-products-item__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 0.88rem;
}

.admin-collection-products-item__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: capitalize;
}

.admin-collection-products-item__status--active {
  background: rgba(34, 197, 94, 0.13);
  color: #16a34a;
}

.admin-collection-products-item__status--inactive {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.admin-collection-products-item__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-enquiry-status-stack {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.admin-date-field {
  display: grid;
  gap: 0.35rem;
  min-width: 150px;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-date-field input {
  width: 100%;
  min-width: 0;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 14px;
  background: #fff;
  outline: none;
}

.admin-product-thumb {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.admin-product-thumb img {
  width: 100%;
  height: 100%;
  padding: 0.35rem;
  object-fit: contain;
}

.admin-product-listing {
  display: grid;
  gap: 0.22rem;
  min-width: 16rem;
}

.admin-product-listing strong {
  color: #111827;
  font-size: 1rem;
}

.admin-product-listing span {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #111827;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.admin-brand-logo-cell {
  display: grid;
  place-items: center;
  width: 9rem;
  min-height: 3.5rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.admin-brand-logo-cell img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.admin-service-icon-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: rgba(239, 17, 17, 0.08);
  color: #ef1111;
  font-size: 1rem;
}

.admin-image-preview--brand {
  min-height: 180px;
}

.admin-image-preview--brand img {
  height: 180px;
  object-fit: contain;
  padding: 1rem;
}

.admin-category-cell {
  gap: 0.9rem;
  min-width: 16rem;
}

.admin-category-cell__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(239, 17, 17, 0.08);
  color: #ef1111;
  font-size: 1.15rem;
}

.admin-category-cell__icon--muted {
  background: rgba(203, 213, 225, 0.38);
  color: #475569;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.28);
}

.admin-category-cell__body {
  display: grid;
  gap: 0.2rem;
}

.admin-category-cell__body strong {
  font-size: 1rem;
}

.admin-category-cell__body span {
  color: #64748b;
  font-size: 0.9rem;
}

.admin-inline-form {
  margin: 0;
}

.admin-inline-form .admin-badge {
  border: 0;
  cursor: pointer;
}

.admin-table-actions {
  gap: 0.55rem;
}

.admin-table-actions form {
  margin: 0;
}

.admin-table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 10px;
  background: #fff;
  color: #64748b;
}

.admin-table-action--danger {
  color: #ef1111;
}

.admin-pagination {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-pagination__arrow,
.admin-pagination__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #fff;
  color: #64748b;
  font-weight: 800;
}

.admin-pagination__current {
  background: linear-gradient(135deg, #ef1111, #ff2d2d);
  border-color: transparent;
  color: #fff;
}

.admin-pagination__arrow.is-disabled {
  opacity: 0.45;
}

.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
}

.admin-modal-card {
  width: min(100%, 760px);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  padding: 1.4rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.admin-modal-card--editor {
  width: min(1180px, 100%);
  padding: 1.5rem;
}

.admin-modal-card--enquiry {
  width: min(1140px, 100%);
  background: #fff;
}

.admin-modal-card__toolbar,
.admin-modal-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-modal-card__toolbar {
  align-items: flex-start;
}

.admin-modal-card__toolbar h2 {
  margin: 0 0 0.35rem;
  font-size: 1.9rem;
}

.admin-modal-card__header h2 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
}

.admin-breadcrumb--modal {
  gap: 0.45rem;
  font-size: 0.84rem;
}

.admin-modal-toolbar__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 12px;
  background: #fff;
  color: #334155;
  font-weight: 700;
}

.admin-modal-card__header p {
  margin: 0;
  color: #64748b;
}

.admin-modal-card__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f8fafc;
  color: #475569;
}

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

.admin-modal-form--editor {
  display: grid;
  gap: 1.15rem;
}

.admin-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 320px;
  gap: 1rem;
}

.admin-editor-main,
.admin-editor-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.admin-form-section + .admin-form-section {
  margin-top: 1.15rem;
}

.admin-form-section--card {
  margin-top: 0 !important;
  padding: 1.15rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fcfcfe);
}

.admin-form-section__header {
  margin-bottom: 0.85rem;
}

.admin-form-section__header--numbered {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.admin-form-section__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 10px;
  background: rgba(239, 17, 17, 0.08);
  color: #ef1111;
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-form-section__header h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.admin-form-section__header p {
  margin: 0;
  color: #64748b;
}

.admin-enquiry-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 280px;
  gap: 1.5rem;
  align-items: start;
}

.admin-enquiry-main {
  display: grid;
  gap: 1rem;
}

.admin-enquiry-detail-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-enquiry-message-panel {
  margin-top: 0 !important;
}

.admin-enquiry-section + .admin-enquiry-section {
  margin-top: 1.5rem;
}

.admin-enquiry-section h4 {
  margin: 0 0 0.85rem;
  color: #111827;
  font-size: 0.98rem;
}

.admin-enquiry-info-list {
  display: grid;
  gap: 0.2rem;
}

.admin-enquiry-info-row {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.admin-enquiry-info-row:last-child {
  border-bottom: 0;
}

.admin-enquiry-info-row span {
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-enquiry-info-row strong {
  color: #111827;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
}

.admin-enquiry-message-card {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: #f8fafc;
}

.admin-enquiry-message-card p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.admin-enquiry-status-form {
  display: grid;
  gap: 1rem;
}

.admin-enquiry-status-panel {
  padding: 1rem !important;
  background: #f8fafc;
  border-color: rgba(226, 232, 240, 0.8);
}

.admin-enquiry-status-panel .admin-field {
  gap: 0.5rem;
}

.admin-enquiry-status-panel .admin-field > span:first-child {
  color: #111827;
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-enquiry-status-panel select {
  appearance: none;
  padding-right: 2.75rem;
  border: 1px solid rgba(203, 213, 225, 1);
  border-radius: 14px;
  background:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px),
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
  color: #111827;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.admin-enquiry-status-panel select:focus {
  border-color: rgba(239, 17, 17, 0.35);
  box-shadow: 0 0 0 4px rgba(239, 17, 17, 0.08);
}

.admin-enquiry-status-panel .admin-add-button {
  width: 100%;
  justify-content: center;
  min-height: 3.5rem;
}

@media (max-width: 640px) {
  .admin-enquiry-toolbar__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .admin-enquiry-toolbar__form {
    grid-template-columns: minmax(220px, 2.3fr) repeat(3, minmax(102px, 0.72fr)) max-content;
  }

  .admin-table--enquiries th:nth-child(1),
  .admin-table--enquiries td:nth-child(1) {
    width: 17%;
  }

  .admin-table--enquiries th:nth-child(2),
  .admin-table--enquiries td:nth-child(2) {
    width: 18%;
  }

  .admin-table--enquiries th:nth-child(3),
  .admin-table--enquiries td:nth-child(3) {
    width: 23%;
  }
}

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

.admin-field--switch {
  align-content: start;
}

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

.admin-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 52px;
}

.admin-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.admin-toggle__track {
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: #d1d5db;
  transition: background 0.2s ease;
}

.admin-toggle__track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
  transition: transform 0.2s ease;
}

.admin-toggle input:checked + .admin-toggle__track {
  background: #ef1111;
}

.admin-toggle input:checked + .admin-toggle__track::after {
  transform: translateX(24px);
}

.admin-toggle__label {
  color: #111827;
  font-weight: 800;
}

.admin-icon-preview {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 52px;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 14px;
  background: #fff;
}

.admin-icon-preview__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: rgba(239, 17, 17, 0.08);
  color: #ef1111;
  font-size: 1.1rem;
}

.admin-icon-preview small {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.admin-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 12px;
  background: #fff;
  color: #64748b;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-icon-tile:hover,
.admin-icon-tile.is-active {
  transform: translateY(-1px);
  border-color: rgba(239, 17, 17, 0.3);
  background: rgba(239, 17, 17, 0.06);
  color: #ef1111;
}

.admin-icon-grid__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-upload-dropzone {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  min-height: 134px;
  padding: 1rem;
  border: 1px dashed rgba(203, 213, 225, 1);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfcff);
  text-align: center;
  cursor: pointer;
}

.admin-upload-dropzone input {
  display: none;
}

.admin-upload-dropzone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(239, 17, 17, 0.08);
  color: #ef1111;
  font-size: 1.1rem;
}

.admin-upload-dropzone strong {
  color: #111827;
  font-size: 0.95rem;
}

.admin-upload-dropzone small,
.admin-upload-dropzone em {
  color: #64748b;
  font-size: 0.82rem;
  font-style: normal;
}

.admin-image-preview {
  display: grid;
  place-items: center;
  min-height: 210px;
  border: 1px dashed rgba(203, 213, 225, 1);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  overflow: hidden;
}

.admin-image-preview img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.admin-image-preview__placeholder {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: #94a3b8;
}

.admin-image-preview__placeholder i {
  font-size: 1.6rem;
}

.admin-image-preview.is-empty {
  padding: 1rem;
}

.admin-image-preview--compact {
  min-height: 120px;
}

.admin-image-preview--compact img {
  height: 120px;
}

.admin-category-preview-card {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 1.25rem 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fcfcfe);
  text-align: center;
}

.admin-category-preview-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: rgba(239, 17, 17, 0.08);
  color: #ef1111;
  font-size: 2rem;
}

.admin-category-preview-card strong {
  font-size: 1.1rem;
}

.admin-category-preview-card span {
  color: #64748b;
  font-size: 0.9rem;
}

.admin-category-preview-card p {
  max-width: 24ch;
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
}

.admin-tips-list {
  display: grid;
  gap: 0.75rem;
}

.admin-tips-list p {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.admin-tips-list i {
  color: #22c55e;
}

.admin-modal-form__footer {
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.admin-modal-form__footer--editor {
  margin-top: 0;
  padding-top: 0.2rem;
}

.admin-add-button__loader {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: admin-spin 0.75s linear infinite;
}

.admin-add-button.is-loading .admin-add-button__loader {
  display: inline-block;
}

@media (max-width: 1080px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-login-page {
    grid-template-columns: 1fr;
  }

  .admin-login-page__media {
    min-height: 280px;
    align-items: end;
  }

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: min(280px, 84vw);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

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

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

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

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

  .admin-grid--analytics,
  .admin-grid--tables {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 4rem 0 2.4rem;
    background-position: 66% center;
  }

  .site-nav,
  .topbar__contact-list {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .topbar__inner {
    padding: 0.8rem 0;
  }

  .brand--header img {
    width: 180px;
  }

  .topbar__quote-button {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.45rem);
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .navbar {
    width: 100%;
    padding-inline: 1rem;
    border-radius: 18px;
  }

  .hero__grid,
  .product-hero,
  .split-panel,
  .contact-layout,
  .inquiry-layout,
  .home-hero__grid,
  .about-showcase,
  .why-home,
  .product-detail-grid,
  .two-column-grid,
  .footer-grid,
  .brand-strip,
  .stats-grid,
  .feature-grid,
  .service-grid,
  .brand-grid,
  .project-grid,
  .product-grid,
  .category-grid,
  .testimonial-grid,
  .office-grid,
  .map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .services-process__card {
    grid-column: span 1;
    max-width: none;
  }

  .services-process__arrow {
    display: none;
  }

  .services-process__card::after {
    display: none;
  }

  .hero__grid,
  .product-hero {
    min-height: auto;
  }

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

  .catalog-flow {
    margin-inline: 3rem;
  }

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

  .brand-showcase {
    justify-content: flex-start;
  }

  .brand-showcase-wrap {
    padding-inline: 2.8rem;
  }

  .why-home__list,
  .why-home__stats,
  .testimonial-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-office-grid,
  .contact-connect,
  .contact-cta-strip,
  .contact-message-card__grid {
    grid-template-columns: 1fr;
  }

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

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

  .products-hero__grid,
  .products-support-band__inner {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

  .product-detail-top,
  .product-detail-lower,
  .product-tabs__grid,
  .spec-grid--detail {
    grid-template-columns: 1fr;
  }

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

  .product-tabs__nav {
    width: 100%;
  }

  .product-inquiry-panel {
    position: static;
    top: auto;
  }

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

  .why-home__stat:not(:last-child)::after {
    display: none;
  }

  .about-hero__grid,
  .about-story,
  .about-ceo-message,
  .about-mission-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-overview,
  .about-leadership {
    grid-template-columns: 1fr;
  }

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

  .footer-cta,
  .footer-newsletter,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

  .footer-cta__content {
    padding-left: 0;
  }

  .footer-cta__content::before {
    display: none;
  }

  .footer-newsletter__form {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .admin-page,
  .admin-shell,
  .admin-main,
  .admin-dashboard {
    overflow-x: clip;
  }

  .admin-topbar,
  .admin-dashboard,
  .admin-dashboard__hero,
  .admin-dashboard__hero-actions,
  .admin-topbar__right {
    display: grid;
  }

  .admin-topbar,
  .admin-dashboard {
    padding-inline: 1rem;
  }

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

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 120;
    width: min(280px, 84vw);
    min-height: 100vh;
    padding: 1rem 0.9rem;
    border-right: 1px solid rgba(226, 232, 240, 0.9);
    border-bottom: 0;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-sidebar__brand {
    margin-bottom: 0.85rem;
  }

  .admin-sidebar__logo img {
    width: 156px;
  }

  .admin-sidebar__nav {
    gap: 0.85rem;
    max-height: none;
    overflow: visible;
  }

  .admin-sidebar__group {
    gap: 0.45rem;
  }

  .admin-sidebar__group p {
    font-size: 0.68rem;
  }

  .admin-sidebar__link,
  .admin-sidebar__logout {
    min-height: 2.8rem;
    padding: 0.72rem 0.8rem;
    border-radius: 12px;
    font-size: 0.86rem;
  }

  .admin-sidebar__logout {
    margin-top: 0.9rem;
  }

  .admin-login-page__panel,
  .admin-login-card {
    padding: 1.25rem;
  }

  .admin-login-page__copy {
    padding: 1.35rem;
  }

  .admin-login-page__copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .admin-topbar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .admin-topbar--mobile {
    display: grid;
    margin: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  }

  .admin-topbar__right,
  .admin-dashboard__hero,
  .admin-dashboard__hero-actions {
    gap: 1rem;
  }

  .admin-dashboard__hero--catalog {
    margin-bottom: 0.95rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 22px;
    background:
      radial-gradient(circle at top right, rgba(239, 17, 17, 0.08), transparent 38%),
      linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
  }

  .admin-dashboard__hero--catalog > div {
    display: grid;
    gap: 0.45rem;
  }

  .admin-dashboard__hero--catalog h1 {
    margin-bottom: 0.15rem;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .admin-dashboard__hero--catalog .admin-breadcrumb {
    color: #94a3b8;
  }

  .admin-dashboard__hero--catalog .admin-breadcrumb strong {
    color: #ef1111;
  }

  .admin-topbar__left,
  .admin-topbar__right {
    width: 100%;
    min-width: 0;
  }

  .admin-profile {
    width: 100%;
    justify-content: space-between;
  }

  .admin-dashboard__hero > div,
  .admin-panel,
  .admin-grid,
  .admin-summary-grid {
    min-width: 0;
  }

  .admin-search,
  .admin-search input,
  .admin-date-chip,
  .admin-add-button {
    width: 100%;
  }

  .admin-dashboard__hero-actions .admin-add-button {
    min-height: 3.15rem;
    justify-content: center;
    padding-inline: 1rem;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(239, 17, 17, 0.18);
  }

  .admin-summary-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .admin-summary-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .admin-summary-grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .admin-summary-card {
    gap: 0.85rem;
    padding: 1rem 0.95rem;
    border-radius: 20px;
    align-items: center;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
  }

  .admin-summary-card::after {
    content: "";
    position: absolute;
    inset: auto -1.6rem -1.8rem auto;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 17, 17, 0.08), transparent 68%);
    pointer-events: none;
  }

  .admin-summary-card__icon {
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.08rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  }

  .admin-summary-card__body p {
    margin-bottom: 0.22rem;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .admin-summary-card__body strong {
    font-size: 1.55rem;
    letter-spacing: -0.03em;
  }

  .admin-summary-card__body a {
    font-size: 0.84rem;
  }

  .admin-grid--analytics {
    gap: 0.95rem;
  }

  .admin-panel__header {
    margin-bottom: 0.8rem;
  }

  .admin-panel__header h2 {
    font-size: 1.2rem;
  }

  .admin-pill-button {
    padding: 0.65rem 0.8rem;
    font-size: 0.82rem;
  }

  .admin-line-chart {
    gap: 0.6rem;
  }

  .admin-line-chart__axis {
    font-size: 0.72rem;
  }

  .admin-line-chart__grid {
    inset: 0 0 1.35rem;
  }

  .admin-line-chart__labels {
    font-size: 0.72rem;
  }

  .admin-status-chart {
    gap: 1rem;
    padding-top: 0.2rem;
    justify-items: start;
  }

  .admin-donut-chart {
    width: 138px;
  }

  .admin-donut-chart::after {
    inset: 22px;
  }

  .admin-status-list {
    gap: 0.75rem;
  }

  .admin-status-list__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.18rem;
  }

  .admin-status-list__label,
  .admin-status-list__item strong {
    font-size: 0.82rem;
  }

  .admin-modal-form__grid {
    grid-template-columns: 1fr;
  }

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

  .admin-enquiry-info-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .admin-modal-card--editor {
    padding: 1rem;
  }

  .admin-modal-card,
  .admin-modal-card--editor,
  .admin-modal-card--enquiry {
    width: min(100%, calc(100% - 1rem));
    max-height: calc(100vh - 1rem);
    border-radius: 20px;
  }

  .admin-modal-card__toolbar,
  .admin-form-section__header--numbered {
    flex-direction: column;
  }

  .admin-modal-card__toolbar h2,
  .admin-modal-card__header h2 {
    font-size: 1.45rem;
  }

  .admin-catalog-toolbar__form,
  .admin-catalog-table-panel__top,
  .admin-catalog-table-panel__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-catalog-select,
  .admin-catalog-toolbar__actions,
  .admin-catalog-table-panel__count,
  .admin-reset-button {
    width: 100%;
  }

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

  .admin-catalog-toolbar,
  .admin-catalog-table-panel,
  .admin-panel {
    padding: 1rem;
    border-radius: 18px;
  }

  .admin-catalog-toolbar__form {
    gap: 0.75rem;
  }

  .admin-catalog-search {
    flex-basis: 100%;
  }

  .admin-catalog-search input,
  .admin-catalog-select {
    min-height: 3rem;
    border-radius: 14px;
  }

  .admin-catalog-table-panel__top p,
  .admin-catalog-table-panel__bottom p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .admin-catalog-table-panel__top {
    gap: 0.75rem;
    padding: 0.9rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  }

  .admin-catalog-table-panel__count {
    justify-content: space-between;
    gap: 0.6rem;
    padding-top: 0.1rem;
  }

  .admin-catalog-table-panel__count select {
    width: 76px;
    padding-block: 0.62rem;
  }

  .admin-table-wrap {
    margin-inline: -0.2rem;
    padding-inline: 0.2rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.8rem 0.28rem;
    font-size: 0.84rem;
  }

  .admin-table th {
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .admin-product-listing,
  .admin-category-cell,
  .admin-product-cell {
    min-width: 12rem;
  }

  .admin-category-cell {
    gap: 0.7rem;
  }

  .admin-category-cell__icon {
    flex: 0 0 2.6rem;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1rem;
  }

  .admin-product-listing strong,
  .admin-category-cell__body strong {
    font-size: 0.92rem;
  }

  .admin-product-listing span,
  .admin-category-cell__body span {
    font-size: 0.8rem;
  }

  .admin-table-actions {
    gap: 0.45rem;
    flex-wrap: nowrap;
  }

  .admin-pagination {
    justify-content: flex-start;
  }

  .admin-collections-toolbar__form {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .admin-collections-toolbar__actions {
    justify-self: stretch;
  }

  .admin-products-toolbar__form {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .admin-products-toolbar__actions {
    justify-self: stretch;
  }

  .admin-enquiry-toolbar__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .admin-enquiry-toolbar__primary,
  .admin-enquiry-toolbar__secondary,
  .admin-enquiry-toolbar__actions {
    display: contents;
  }

  .admin-enquiry-toolbar__date,
  .admin-enquiry-toolbar__actions {
    width: 100%;
  }

  .admin-enquiry-toolbar__button {
    width: 100%;
    justify-content: center;
  }

  .admin-table-wrap--cards {
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .admin-table-wrap--cards .admin-table {
    table-layout: auto;
  }

  .admin-table-wrap--cards .admin-table thead {
    display: none;
  }

  .admin-table-wrap--cards .admin-table,
  .admin-table-wrap--cards .admin-table tbody,
  .admin-table-wrap--cards .admin-table tr,
  .admin-table-wrap--cards .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table-wrap--cards .admin-table tbody {
    display: grid;
    gap: 0.85rem;
  }

  .admin-table-wrap--cards .admin-table tr {
    padding: 0.95rem 0.95rem 0.35rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  }

  .admin-table-wrap--cards .admin-table td {
    min-height: 2.65rem;
    padding: 0.42rem 0 0.5rem 6.85rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
    position: relative;
  }

  .admin-table-wrap--cards .admin-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 0.46rem;
    width: 6rem;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .admin-table-wrap--cards .admin-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0.1rem;
  }

  .admin-table-wrap--cards .admin-table td[colspan] {
    min-height: 0;
    padding: 0;
    border-bottom: 0;
  }

  .admin-table-wrap--cards .admin-table td[colspan]::before {
    content: none;
  }

  .admin-table-wrap--cards .admin-table-actions {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .admin-table-wrap--categories .admin-category-cell {
    min-width: 0;
  }

  .admin-table-wrap--collections strong,
  .admin-table-wrap--brands strong,
  .admin-table-wrap--services strong {
    color: #111827;
    font-size: 0.92rem;
  }

  .admin-table-wrap--products .admin-table--products td:first-child,
  .admin-table-wrap--products .admin-table--products td:first-child::before {
    display: none;
  }

  .admin-table-wrap--products .admin-table--products tr {
    padding-top: 0.9rem;
  }

  .admin-table-wrap--products .admin-product-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }

  .admin-table-wrap--products .admin-product-thumb img,
  .admin-table-wrap--brands .admin-brand-logo-cell img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
  }

  .admin-table-wrap--products .admin-product-listing,
  .admin-table-wrap--categories .admin-category-cell__body {
    min-width: 0;
  }

  .admin-table-wrap--products .admin-product-listing strong,
  .admin-table-wrap--categories .admin-category-cell__body strong {
    font-size: 0.92rem;
  }

  .admin-table-wrap--products .admin-product-listing span,
  .admin-table-wrap--categories .admin-category-cell__body span {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .admin-table-wrap--brands .admin-brand-logo-cell,
  .admin-table-wrap--services .admin-service-icon-cell {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }

  .admin-table-wrap--services .admin-service-icon-cell {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 12px;
    background: rgba(239, 17, 17, 0.08);
    color: #ef1111;
  }

  .admin-table-wrap--enquiries {
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .admin-table--enquiries {
    table-layout: auto;
  }

  .admin-table--enquiries thead {
    display: none;
  }

  .admin-table--enquiries,
  .admin-table--enquiries tbody,
  .admin-table--enquiries tr,
  .admin-table--enquiries td {
    display: block;
    width: 100%;
  }

  .admin-table--enquiries tbody {
    display: grid;
    gap: 0.85rem;
  }

  .admin-table--enquiries tr {
    padding: 0.95rem 0.95rem 0.35rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  }

  .admin-table--enquiries td {
    min-height: 2.65rem;
    padding: 0.42rem 0 0.5rem 6.85rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
    position: relative;
  }

  .admin-table--enquiries td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 0.46rem;
    width: 6rem;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .admin-table--enquiries td:last-child {
    border-bottom: 0;
    padding-bottom: 0.1rem;
  }

  .admin-table--enquiries td[colspan] {
    min-height: 0;
    padding: 0;
    border-bottom: 0;
  }

  .admin-table--enquiries td[colspan]::before {
    content: none;
  }

  .admin-table--enquiries th:nth-child(1),
  .admin-table--enquiries td:nth-child(1),
  .admin-table--enquiries th:nth-child(2),
  .admin-table--enquiries td:nth-child(2),
  .admin-table--enquiries th:nth-child(3),
  .admin-table--enquiries td:nth-child(3),
  .admin-table--enquiries th:nth-child(4),
  .admin-table--enquiries td:nth-child(4),
  .admin-table--enquiries th:nth-child(5),
  .admin-table--enquiries td:nth-child(5),
  .admin-table--enquiries th:nth-child(6),
  .admin-table--enquiries td:nth-child(6) {
    width: 100%;
  }

  .admin-enquiry-person,
  .admin-enquiry-contact,
  .admin-enquiry-subject {
    gap: 0.22rem;
  }

  .admin-enquiry-person strong,
  .admin-enquiry-subject strong,
  .admin-enquiry-related {
    font-size: 0.9rem;
  }

  .admin-enquiry-person span,
  .admin-enquiry-contact span,
  .admin-enquiry-subject span,
  .admin-table-muted {
    font-size: 0.8rem;
  }

  .admin-enquiry-status-stack {
    align-items: flex-start;
    gap: 0.4rem;
  }

  .admin-table-actions {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .admin-modal-card {
    padding: 1.1rem;
  }

  .admin-line-chart {
    grid-template-columns: 1fr;
  }

  .admin-line-chart__axis {
    display: none;
  }

  .admin-status-list__item {
    align-items: start;
    flex-direction: column;
  }

  .home-hero {
    background-position: 72% center;
  }

  .topbar__contact-list,
  .topbar__quote-button {
    display: none;
  }

  .topbar__inner {
    gap: 1rem;
    justify-content: center;
    padding: 0.45rem 0 0.3rem;
  }

  .brand--header img {
    width: 142px;
  }

  .navbar {
    margin-top: 0.35rem;
    padding: 0.8rem 0.95rem;
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  }

  .navbar-wrap {
    padding: 0.25rem 0 0.55rem;
  }

  .nav-toggle {
    width: 2.85rem;
    padding: 0.35rem;
  }

  .nav-toggle span {
    height: 3px;
  }

  .hero__grid,
  .product-hero,
  .split-panel,
  .contact-layout,
  .inquiry-layout,
  .home-hero__grid,
  .about-showcase,
  .why-home,
  .product-detail-grid,
  .two-column-grid,
  .footer-grid,
  .brand-strip,
  .stats-grid,
  .feature-grid,
  .service-grid,
  .brand-grid,
  .project-grid,
  .product-grid,
  .category-grid,
  .testimonial-grid,
  .office-grid,
  .map-grid,
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1rem;
  }

  .home-hero {
    min-height: auto;
    padding: 1.25rem 0 4.8rem;
    background-position: 64% center;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 24%, rgba(255, 255, 255, 0.84) 48%, rgba(255, 255, 255, 0.56) 68%, rgba(255, 255, 255, 0.28) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 44%, rgba(255, 255, 255, 0.18) 100%);
  }

  .home-hero__content h1,
  .about-showcase__content h2 {
    max-width: none;
  }

  .home-hero__content h1 {
    max-width: 8.6ch;
    font-size: clamp(2.45rem, 10.4vw, 3.45rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 0.9rem;
  }

  .home-hero__content p {
    max-width: 30rem;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .home-hero__content {
    max-width: 100%;
    padding: 1.15rem 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 100%);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(14px);
  }

  .home-hero__content h1 span {
    white-space: normal;
  }

  .home-hero__highlights {
    gap: 0.65rem;
    margin-bottom: 0;
  }

  .home-hero__highlights span {
    min-height: 2.4rem;
    padding: 0.62rem 0.82rem;
    font-size: 0.82rem;
  }


  .home-hero__visual,
  .home-hero__visual {
    min-height: 300px;
  }

  .home-hero__visual {
    border-radius: 20px;
    background-position: 68% center;
  }

  .about-showcase {
    gap: 1.7rem;
  }

  .about-showcase__media {
    order: 1;
  }

  .about-showcase__content {
    order: 2;
    text-align: left;
  }

  .about-showcase__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .about-showcase__gallery img:first-child {
    grid-column: 1 / -1;
    min-height: 200px;
  }

  .about-showcase__gallery img:nth-child(3),
  .about-showcase__gallery img:nth-child(4),
  .about-showcase__stat {
    min-height: 118px;
  }

  .about-showcase__gallery img:nth-child(4) {
    display: none;
  }

  .about-showcase__stat {
    padding: 0.9rem;
  }

  .about-showcase__stat strong {
    font-size: 2.2rem;
  }

  .about-showcase__stat span {
    font-size: 0.84rem;
  }

  .about-showcase__points,
  .why-home__list,
  .catalog-grid,
  .testimonial-grid--home,
  .brand-strip--logos {
    grid-template-columns: 1fr;
  }

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

  .why-home__stat {
    gap: 0.85rem;
    padding: 1rem 0.95rem;
    min-height: 104px;
    border-radius: 20px;
  }

  .why-home__stat-icon {
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .why-home__stat strong {
    font-size: clamp(1.85rem, 7vw, 2.3rem);
  }

  .why-home__stat span {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .catalog-flow {
    display: none;
  }

  .project-gallery__filters,
  .project-gallery-grid,
  .project-featured__thumbs {
    grid-template-columns: 1fr;
  }

  .products-page-grid,
  .products-support-band__stats {
    grid-template-columns: 1fr;
  }

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

  .project-gallery__filters {
    display: grid;
  }

  .project-filter {
    width: 100%;
    min-width: 0;
    border-radius: 14px;
  }

  .project-featured {
    padding: 0.85rem;
  }

  .project-featured__frame img {
    height: 250px;
  }

  .project-featured__nav {
    width: 2.6rem;
    height: 2.6rem;
  }

  .project-featured__nav--prev {
    left: 0.7rem;
  }

  .project-featured__nav--next {
    right: 0.7rem;
  }

  .project-featured__meta h2,
  .project-gallery-card__body h2 {
    font-size: 1.35rem;
  }

  .project-gallery-card__media img {
    height: 210px;
  }

  .products-hero {
    min-height: auto;
    padding: 0.9rem 0 0.62rem;
    background-position: 74% center;
    border-radius: 0 0 24px 24px;
  }

  .products-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 24%, rgba(255, 255, 255, 0.38) 54%, rgba(255, 255, 255, 0.14) 82%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 26%, rgba(255, 255, 255, 0.18) 54%, rgba(255, 255, 255, 0.02) 100%);
  }

  .products-hero__grid {
    min-height: auto;
  }

  .products-hero__content {
    max-width: min(15rem, 100%);
    padding: 0.55rem 0 0.72rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .products-hero__breadcrumb {
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
    color: #475569;
  }

  .products-hero h1 {
    max-width: 6.6ch;
    font-size: clamp(2rem, 8.8vw, 2.9rem);
    line-height: 0.92;
    text-shadow: 0 10px 22px rgba(255, 255, 255, 0.34);
  }

  .products-hero p {
    max-width: 13.5rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #374151;
    text-shadow: 0 8px 18px rgba(255, 255, 255, 0.28);
  }

  .products-hero__divider {
    width: 3rem;
    height: 3px;
    margin: 0.72rem 0 0.72rem;
  }

  .products-main__viewall {
    padding: 0;
  }

  .products-catalog-header {
    align-items: start;
    flex-direction: column;
  }

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

  .products-catalog-item__list {
    min-height: auto;
  }

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

  .catalog-features-band {
    display: none;
  }

  .catalog-titlebar {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .catalog-titlebar--flow,
  .catalog-products-stage__toolbar,
  .catalog-stage__header,
  .catalog-stage-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-titlebar--flow {
    gap: 0.85rem;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 252, 255, 0.98) 100%);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
  }

  .catalog-flow-actions {
    justify-content: flex-start;
  }

  .catalog-titlebar__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .catalog-titlebar h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.02;
  }

  .catalog-titlebar p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .catalog-panel {
    padding: 1rem 0.95rem;
    border-radius: 16px;
  }

  .catalog-panel h2 {
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
  }

  .catalog-brand-filter {
    margin-bottom: 0.8rem;
  }

  .catalog-brand-dropdown__summary {
    min-height: 3rem;
    padding: 0.78rem 0.9rem;
    border-radius: 12px;
  }

  .catalog-brand-dropdown__selected {
    min-height: 2.25rem;
  }

  .catalog-brand-dropdown__menu {
    top: calc(100% + 0.45rem);
    gap: 0.38rem;
    max-height: 16rem;
    padding: 0.55rem;
    border-radius: 16px;
  }

  .catalog-brand-dropdown__option {
    min-height: 3.45rem;
    padding: 0.68rem 0.72rem;
    border-radius: 12px;
  }

  .catalog-brand-dropdown__logo {
    min-height: 2.55rem;
  }

  .catalog-brand-dropdown__logo img {
    max-width: 148px;
    max-height: 40px;
  }

  .catalog-brand-dropdown__fallback,
  .catalog-brand-dropdown__all {
    min-height: 2.1rem;
    padding: 0.32rem 0.82rem;
    font-size: 0.78rem;
  }

  .catalog-stage-grid,
  .catalog-stage-grid--categories {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .catalog-stage-card__media {
    min-height: 210px;
  }

  .catalog-products-stage__toolbar .catalog-brand-filter {
    width: 100%;
    margin-bottom: 0;
  }

  .catalog-products-stage {
    gap: 0.95rem;
  }

  .catalog-products-stage__toolbar {
    gap: 0.8rem;
    padding: 0.95rem 0.95rem 0.9rem;
    border-radius: 18px;
  }

  .catalog-flow-back {
    justify-content: center;
    width: 100%;
    padding: 0.82rem 0.95rem;
    border-radius: 14px;
    font-size: 0.84rem;
  }

  .catalog-stage-card {
    border-radius: 22px;
  }

  .catalog-stage-card__badge {
    top: 0.7rem;
    right: 0.7rem;
    padding: 0.44rem 0.7rem;
    font-size: 0.7rem;
  }

  .catalog-stage-card__body {
    gap: 0.55rem;
    padding: 0.95rem 0.95rem 1.05rem;
  }

  .catalog-stage-card__body h3 {
    font-size: 1.08rem;
    line-height: 1.16;
  }

  .catalog-stage-card__body p {
    font-size: 0.82rem;
    line-height: 1.58;
    color: #5b6472;
  }

  .catalog-stage-card__footer {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 0.1rem;
  }

  .catalog-stage-card__footer small {
    font-size: 0.76rem;
  }

  .catalog-stage-card__cta {
    font-size: 0.74rem;
    gap: 0.4rem;
    min-height: 2.05rem;
    padding: 0.54rem 0.68rem;
  }

  .catalog-accordion__item summary {
    padding-bottom: 0.75rem;
    font-size: 0.96rem;
  }

  .catalog-accordion__body {
    padding-bottom: 0.8rem;
  }

  .catalog-results p {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 700;
  }

  .catalog-product-card {
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  }

  .catalog-product-card__media {
    height: 192px;
    padding: 0.9rem 0.9rem 0.45rem;
    align-items: end;
  }

  .catalog-product-card__media img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
  }

  .catalog-product-card__body {
    padding: 0.8rem 0.95rem 0.98rem;
  }

  .catalog-product-card__brand {
    margin-bottom: 0.46rem;
    padding: 0.32rem 0.62rem;
    font-size: 0.66rem;
  }

  .catalog-product-card__body h2 {
    margin-bottom: 0.34rem;
    font-size: 1.04rem;
    line-height: 1.16;
  }

  .catalog-product-card__body p {
    margin-bottom: 0.88rem;
    font-size: 0.82rem;
    line-height: 1.54;
  }

  .catalog-product-card__button {
    width: 100%;
    justify-content: space-between;
    min-height: 2.85rem;
    padding: 0.74rem 0.86rem;
    border-radius: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
  }

  .catalog-pagination {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
  }

  .catalog-pagination__item {
    flex: 0 0 auto;
  }

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

  .brands-grid--showcase {
    grid-template-columns: 1fr;
  }

  .brands-hero {
    min-height: 20rem;
  }

  .brands-card {
    padding: 1.2rem;
  }

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

  .product-showcase__stage {
    min-height: 240px;
    padding: 0.75rem;
  }

  .product-showcase__stage img {
    max-height: 220px;
  }

  .product-summary h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.04;
  }

  .product-summary {
    padding: 1.1rem 1rem 1.2rem;
  }

  .product-summary__lead {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .product-summary__actions,
  .product-quote-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-summary__actions .button,
  .product-quote-card__actions .button {
    width: 100%;
  }

  .product-feature-list li {
    gap: 0.8rem;
    padding: 0.95rem 0.95rem;
  }

  .product-quote-card {
    padding: 1.2rem;
  }

  .product-quote-card h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .product-quote-card p,
  .product-quote-card__trust span {
    font-size: 0.92rem;
  }

  .product-tabs__nav {
    gap: 0.45rem;
    padding: 0.35rem;
    border-radius: 18px;
  }

  .product-tabs__button {
    width: 100%;
    justify-content: center;
    padding: 0.78rem 0.9rem;
    font-size: 0.8rem;
  }

  .product-showcase__thumbs {
    grid-template-columns: repeat(4, minmax(60px, 1fr));
    gap: 0.5rem;
  }

  .product-showcase__thumb img {
    height: 52px;
  }

  .product-showcase__zoom {
    right: 0.75rem;
    bottom: 0.75rem;
    min-height: 2.1rem;
    padding: 0.46rem 0.72rem;
    font-size: 0.72rem;
  }

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

  .inquiry-layout .contact-form .button {
    width: 100%;
  }

  .product-inquiry-panel {
    padding: 1.15rem 1rem 1rem;
    border-radius: 22px;
  }

  .product-inquiry-panel__header h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .catalog-sort select {
    width: 100%;
    min-width: 0;
  }

  .products-page-card__media {
    min-height: 200px;
  }

  .products-page-card__media img {
    height: 160px;
  }

  .products-page-card__body p {
    min-height: auto;
  }

  .products-support-band__call {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-page {
    padding-top: 3rem;
  }

  .page-hero--contact {
    min-height: 19rem;
  }

  .services-showcase__grid {
    grid-template-columns: 1fr;
  }

  .services-process__steps {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .services-process__card {
    max-width: none;
    padding: 1rem 0.95rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  }

  .services-process__badge {
    top: -0.7rem;
    min-width: 1.9rem;
    height: 1.9rem;
    font-size: 0.68rem;
  }

  .services-process__icon {
    width: 4.2rem;
    height: 4.2rem;
    margin: 0.65rem auto 0.8rem;
    font-size: 1.25rem;
  }

  .services-process__card h3 {
    margin-bottom: 0.38rem;
    font-size: 0.98rem;
  }

  .services-process__card p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .service-feature-card__body {
    padding: 1.15rem 1.15rem 0.95rem;
  }

  .service-feature-card__image-wrap {
    margin: 0 0.95rem 0.95rem;
  }

  .page-hero--contact .page-hero__content {
    max-width: 22rem;
  }

  .contact-office-card,
  .contact-message-card,
  .contact-cta-card {
    padding: 1.3rem;
  }

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

  .contact-cta-card .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 1.4rem;
  }

  .footer-cta {
    gap: 1rem;
    padding: 1.35rem 1.1rem;
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(214, 33, 33, 0.94), rgba(193, 30, 30, 0.9)),
      url("../images/hero1.jpg") right center/cover no-repeat;
    box-shadow: 0 20px 36px rgba(185, 28, 28, 0.14);
  }

  .footer-cta__icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.45rem;
  }

  .footer-cta__content h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.02;
  }

  .footer-cta__content p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .footer-cta__button {
    min-width: 0;
    width: 100%;
    min-height: 3.2rem;
    padding-inline: 1rem;
  }

  .footer-grid {
    gap: 1.45rem;
  }

  .footer-column h2 {
    margin-bottom: 1rem;
    font-size: 1.28rem;
  }

  .footer-links {
    gap: 0.72rem;
  }

  .footer-newsletter {
    margin-top: 2rem;
    padding: 1.5rem 0 2rem;
    gap: 1rem;
  }

  .footer-newsletter__content {
    gap: 0.9rem;
    align-items: flex-start;
  }

  .footer-newsletter__content h3 {
    font-size: 1.35rem;
  }

  .footer-newsletter__content p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .footer-newsletter__icon {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.2rem;
  }

  .footer-newsletter__form input,
  .footer-newsletter__form .button {
    min-height: 3.25rem;
  }

  .footer-bottom {
    gap: 1rem;
    padding: 1.15rem 0 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-bottom p,
  .footer-bottom__links a,
  .footer-payments span {
    font-size: 0.92rem;
  }

  .footer-bottom__links {
    gap: 0.9rem 1.1rem;
  }

  .footer-payments {
    gap: 0.8rem;
  }

  .footer-payment-badge {
    min-width: 3.7rem;
    padding: 0.48rem 0.72rem;
  }

  .about-overview__gallery,
  .about-stats,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 1.2rem;
  }

  .about-hero__grid,
  .about-journey,
  .about-clients-band__stats,
  .about-story__features {
    grid-template-columns: 1fr;
  }

  .about-hero__content {
    max-width: 100%;
    padding: 0.5rem 0 0.95rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .about-hero__content h1 {
    max-width: 9ch;
    font-size: clamp(2.4rem, 10.5vw, 3.45rem);
    line-height: 0.95;
    margin-bottom: 0.85rem;
  }

  .about-hero__content h1 span {
    white-space: normal;
  }

  .about-hero__content p {
    max-width: 28rem;
    font-size: 0.96rem;
    line-height: 1.62;
    margin-bottom: 1rem;
  }

  .about-hero__breadcrumb {
    flex-wrap: wrap;
    gap: 0.45rem 0.6rem;
    font-size: 0.84rem;
  }

  .about-hero__visual {
    justify-content: center;
  }

  .about-story__image-wrap img {
    min-height: 320px;
  }

  .about-story__stat {
    left: 1rem;
    bottom: 1rem;
  }

  .about-ceo-message__image-wrap img {
    min-height: 360px;
  }

  .about-ceo-message__badge {
    left: 1rem;
    bottom: 1rem;
  }

  .about-ceo-message__content {
    padding: 0;
  }

  .about-ceo-message__content h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1;
  }

  .about-ceo-message__content p {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .about-mission-card {
    padding: 1.45rem 1.2rem;
    border-radius: 20px;
    text-align: left;
  }

  .about-mission-card__icon {
    width: 74px;
    height: 74px;
    font-size: 1.75rem;
  }

  .about-journey__item {
    text-align: left;
    padding: 1.25rem 1.1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  }

  .about-journey__icon {
    margin-bottom: 0.8rem;
  }

  .about-clients-band__stat {
    border-radius: 20px;
  }

  .about-story__content h2 {
    max-width: none;
  }

  .about-mission-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-journey::before {
    display: none;
  }

  .about-clients-band {
    padding: 3rem 0;
  }

  .about-overview__gallery img:first-child {
    grid-row: auto;
  }

  .about-story-card,
  .mission-card {
    padding: 1.55rem 1.25rem;
  }

  .why-home__content,
  .section-heading--testimonials {
    text-align: left;
  }

  .why-home__content h2 {
    max-width: 9ch;
    font-size: clamp(2.1rem, 8.9vw, 2.7rem);
    line-height: 0.98;
    margin-bottom: 0.7rem;
  }

  .why-home__intro,
  .section-heading--testimonials p {
    margin-inline: 0;
    max-width: none;
  }

  .why-home__intro {
    max-width: 30rem;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .why-home__item {
    padding: 1.3rem 1.15rem 1.2rem;
    border-radius: 22px;
  }

  .why-home__stat {
    justify-content: flex-start;
    min-height: auto;
  }

  .why-home__stat:not(:last-child)::after {
    display: none;
  }

  .brand-chip--logo {
    flex-basis: 165px;
    min-height: 74px;
  }

  .site-footer {
    padding-top: 1.25rem;
  }

  .footer-cta {
    padding: 1.6rem 1.25rem;
    gap: 1.2rem;
    border-radius: 22px;
  }

  .footer-cta__icon {
    width: 4.25rem;
    height: 4.25rem;
    font-size: 1.55rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-company,
  .footer-column {
    padding-right: 0;
  }

  .footer-logo {
    width: 190px;
    margin-bottom: 0.9rem;
  }

  .footer-company p {
    max-width: 28rem;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .footer-social {
    margin-top: 1rem;
    gap: 0.8rem;
  }

  .footer-social a {
    width: 3.05rem;
    height: 3.05rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  }

  .footer-column h2 {
    margin-bottom: 0.85rem;
    font-size: 1.18rem;
  }

  .footer-column h2::after {
    width: 2rem;
    margin-top: 0.6rem;
  }

  .footer-links {
    gap: 0.7rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

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

  .footer-contact-item {
    gap: 0.85rem;
  }

  .footer-contact-item__icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }

  .footer-contact-item strong {
    margin-bottom: 0.2rem;
    font-size: 1.02rem;
  }

  .footer-contact-item p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .footer-newsletter {
    gap: 1.4rem;
    padding-bottom: 2rem;
  }

  .footer-newsletter__content {
    align-items: flex-start;
  }

  .footer-newsletter__icon {
    width: 4.2rem;
    height: 4.2rem;
    font-size: 1.45rem;
  }

  .footer-newsletter__form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter__form input,
  .footer-newsletter__form .button {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom {
    justify-items: start;
  }

  .brand-showcase__dots {
    margin-top: 0.8rem;
  }

  .brand-showcase-wrap {
    padding-inline: 0;
  }

  .brand-showcase__arrow {
    display: none;
  }

  .testimonial-grid--home .testimonial-card {
    padding: 1.45rem 1.25rem;
  }

  .home-hero__dots {
    display: none;
  }

  .section-heading--row {
    align-items: start;
    gap: 1rem;
  }

  .section-heading--row .button {
    align-self: flex-start;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .home-hero__actions .button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    padding-inline: 1.1rem;
    font-size: 0.98rem;
  }

  .home-hero__actions .button--ghost {
    background: rgba(255, 255, 255, 0.94);
  }

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

  .home-hero__highlights span {
    justify-content: center;
    text-align: center;
    border-radius: 18px;
  }

  .category-grid--compact {
    gap: 1rem;
  }

  .category-card--compact {
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.09);
  }

  .category-card--compact img {
    height: 220px;
  }

  .category-card--compact .category-card__content {
    padding: 1rem 1rem 1.1rem;
  }

  .category-card--compact h3 {
    min-height: 0;
    font-size: 1.22rem;
    line-height: 1.08;
  }

  .category-card--compact p {
    min-height: 0;
    margin-bottom: 0.9rem;
  }

  .category-card--compact .text-link {
    min-height: 2.3rem;
    padding: 0.56rem 0.8rem;
    font-size: 0.8rem;
  }

  .hero__visual img,
  .product-hero__visual img,
  .media-card img {
    min-height: 300px;
  }

  .cta-band__inner,
  .cta-inline,
  .hero__actions,
  .product-card__actions,
  .cta-band__actions,
  .stacked-actions,
  .hero__trust {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline__item,
  .process-steps article {
    grid-template-columns: 1fr;
  }

  .timeline__year {
    justify-self: start;
  }

  .quick-actions {
    left: auto;
    right: 1rem;
    display: flex;
    gap: 0;
    bottom: 0.8rem;
  }

  .quick-actions__item {
    min-height: 3.2rem;
    padding: 0.85rem 1.05rem;
    font-size: 0.82rem;
    line-height: 1.25;
    border-radius: 999px;
    backdrop-filter: blur(10px);
  }

  .quick-actions__item--whatsapp {
    width: 3.5rem;
    height: 3.5rem;
    min-height: 0;
    padding: 0;
  }

  .footer-bottom {
    padding-bottom: 5.7rem;
  }
}

@media (max-width: 520px) {
  .admin-page,
  .admin-shell,
  .admin-main,
  .admin-dashboard,
  .admin-topbar--mobile {
    max-width: 100%;
    overflow-x: clip;
  }

  .admin-topbar--mobile {
    gap: 0.75rem;
    padding: 0.85rem 0.82rem 0.9rem;
  }

  .admin-topbar__title strong {
    font-size: 0.9rem;
  }

  .admin-topbar__title small {
    font-size: 0.72rem;
  }

  .admin-sidebar {
    padding: 0.85rem 0.72rem;
  }

  .admin-sidebar__logo img {
    width: 142px;
  }

  .admin-sidebar__link,
  .admin-sidebar__logout {
    min-height: 2.65rem;
    padding: 0.68rem 0.72rem;
    font-size: 0.82rem;
  }

  .admin-dashboard {
    padding-top: 1rem;
  }

  .admin-topbar__left,
  .admin-profile,
  .admin-profile__text,
  .admin-dashboard__hero > div {
    min-width: 0;
  }

  .admin-dashboard__hero h1 {
    font-size: 1.55rem;
    margin-bottom: 0.35rem;
  }

  .admin-dashboard__hero--catalog {
    padding: 0.88rem;
    border-radius: 18px;
  }

  .admin-dashboard__hero--catalog h1 {
    font-size: 1.7rem;
  }

  .admin-breadcrumb {
    gap: 0.45rem;
    font-size: 0.78rem;
    flex-wrap: wrap;
  }

  .admin-add-button,
  .admin-pill-button,
  .admin-reset-button,
  .admin-mini-button {
    min-height: 2.9rem;
    padding: 0.78rem 0.9rem;
    font-size: 0.82rem;
  }

  .admin-summary-card {
    padding: 0.9rem 0.82rem;
    border-radius: 16px;
  }

  .admin-summary-card::after {
    width: 4.6rem;
    height: 4.6rem;
    right: -1.2rem;
    bottom: -1.45rem;
  }

  .admin-summary-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.68rem;
  }

  .admin-summary-card__icon {
    flex: 0 0 2.7rem;
    width: 2.7rem;
    height: 2.7rem;
    font-size: 0.95rem;
  }

  .admin-summary-card__body p {
    font-size: 0.76rem;
  }

  .admin-summary-card__body strong {
    font-size: 1.3rem;
  }

  .admin-summary-card__body a {
    font-size: 0.78rem;
  }

  .admin-panel,
  .admin-catalog-toolbar,
  .admin-catalog-table-panel {
    padding: 0.9rem 0.82rem;
    border-radius: 16px;
  }

  .admin-catalog-toolbar__form {
    gap: 0.62rem;
  }

  .admin-catalog-search input,
  .admin-catalog-select {
    min-height: 2.85rem;
    padding: 0.78rem 0.88rem;
    border-radius: 12px;
    font-size: 0.86rem;
  }

  .admin-catalog-search input {
    padding-right: 2.8rem;
  }

  .admin-catalog-search span {
    right: 0.92rem;
    font-size: 0.88rem;
  }

  .admin-catalog-toolbar__actions {
    grid-template-columns: 1fr;
  }

  .admin-add-button,
  .admin-reset-button {
    justify-content: center;
  }

  .admin-catalog-table-panel__top {
    gap: 0.62rem;
    padding: 0.78rem 0.82rem;
    border-radius: 14px;
  }

  .admin-catalog-table-panel__top p,
  .admin-catalog-table-panel__bottom p,
  .admin-catalog-table-panel__count {
    font-size: 0.8rem;
  }

  .admin-catalog-table-panel__count {
    gap: 0.45rem;
    flex-wrap: wrap;
  }

  .admin-catalog-table-panel__count select {
    width: 70px;
    padding-block: 0.56rem;
    font-size: 0.82rem;
  }

  .admin-category-cell {
    gap: 0.55rem;
    min-width: 9.8rem;
  }

  .admin-category-cell__icon {
    flex: 0 0 2.35rem;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.88rem;
  }

  .admin-category-cell__body strong {
    font-size: 0.86rem;
  }

  .admin-category-cell__body span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .admin-panel__header h2 {
    font-size: 1.12rem;
  }

  .admin-grid--analytics {
    gap: 0.82rem;
  }

  .admin-panel__header {
    gap: 0.75rem;
  }

  .admin-pill-button {
    padding: 0.58rem 0.72rem;
    font-size: 0.76rem;
  }

  .admin-line-chart {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .admin-line-chart__axis {
    display: none;
  }

  .admin-line-chart__grid {
    inset: 0 0 1.15rem;
    border-left: 0;
  }

  .admin-line-chart svg {
    margin-top: 0;
  }

  .admin-line-chart__labels {
    font-size: 0.66rem;
  }

  .admin-donut-chart {
    width: 120px;
    margin-inline: auto;
  }

  .admin-donut-chart::after {
    inset: 20px;
  }

  .admin-status-list {
    gap: 0.5rem;
  }

  .admin-status-list__label,
  .admin-status-list__item strong {
    font-size: 0.76rem;
  }

  .admin-status-list__item {
    gap: 0.1rem;
  }

  .admin-catalog-search input,
  .admin-catalog-select,
  .admin-catalog-table-panel__count select,
  .admin-modal-form select,
  .admin-field select,
  .admin-field textarea,
  .admin-field input {
    padding: 0.82rem 0.9rem;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.72rem 0.22rem;
    font-size: 0.78rem;
  }

  .admin-table-wrap--cards .admin-table tr {
    padding: 0.88rem 0.82rem 0.28rem;
    border-radius: 16px;
  }

  .admin-table-wrap--cards .admin-table td {
    min-height: 2.45rem;
    padding-left: 5.65rem;
  }

  .admin-table-wrap--cards .admin-table td::before {
    width: 4.95rem;
    font-size: 0.64rem;
  }

  .admin-table-wrap--products .admin-product-thumb img,
  .admin-table-wrap--brands .admin-brand-logo-cell img {
    width: 46px;
    height: 46px;
  }

  .admin-table--enquiries tr {
    padding: 0.88rem 0.82rem 0.28rem;
    border-radius: 16px;
  }

  .admin-table--enquiries td {
    min-height: 2.45rem;
    padding-left: 5.65rem;
  }

  .admin-table--enquiries td::before {
    width: 4.95rem;
    font-size: 0.64rem;
  }

  .admin-enquiry-person strong,
  .admin-enquiry-subject strong,
  .admin-enquiry-related {
    font-size: 0.84rem;
  }

  .admin-enquiry-person span,
  .admin-enquiry-contact span,
  .admin-enquiry-subject span,
  .admin-table-muted {
    font-size: 0.75rem;
  }

  .admin-product-listing,
  .admin-category-cell,
  .admin-product-cell {
    min-width: 10.5rem;
  }

  .admin-product-listing span,
  .admin-category-cell__body span {
    font-size: 0.76rem;
  }

  .admin-modal-card,
  .admin-modal-card--editor,
  .admin-modal-card--enquiry {
    width: min(100%, calc(100% - 0.5rem));
    max-height: calc(100vh - 0.5rem);
    padding: 0.9rem;
    border-radius: 18px;
  }

  .admin-modal-card__toolbar h2,
  .admin-modal-card__header h2 {
    font-size: 1.25rem;
  }

  .admin-form-section--card {
    padding: 0.92rem;
    border-radius: 16px;
  }

  .admin-form-section__header h3 {
    font-size: 0.98rem;
  }

  .admin-enquiry-info-row {
    padding: 0.75rem 0;
  }

  .container {
    width: min(100%, calc(100% - 1.15rem));
  }

  .product-detail-page {
    overflow-x: clip;
  }

  .product-detail-page .container {
    width: min(100%, calc(100% - 0.9rem));
  }

  .topbar__inner {
    padding: 0.3rem 0 0.2rem;
  }

  .brand--header img {
    width: 132px;
  }

  .navbar {
    padding: 0.72rem 0.85rem;
    border-radius: 20px;
  }

  .site-nav.is-open {
    left: 0.55rem;
    right: 0.55rem;
    top: calc(100% + 0.35rem);
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 20px;
  }

  .home-hero {
    padding: 0.9rem 0 5.1rem;
    background-position: 67% center;
  }

  .home-hero__content h1 {
    max-width: 8.4ch;
    font-size: clamp(2.1rem, 10vw, 2.85rem);
  }

  .home-hero__content p {
    font-size: 0.94rem;
    line-height: 1.58;
    margin-bottom: 1.05rem;
  }

  .home-hero__content {
    padding: 1rem 0.85rem 1.1rem;
    border-radius: 22px;
  }

  .home-hero .eyebrow {
    margin-bottom: 0.9rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .home-hero__actions {
    gap: 0.75rem;
    margin-bottom: 0.9rem;
  }

  .home-hero__actions .button {
    min-height: 52px;
    font-size: 0.94rem;
  }

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

  .home-hero__highlights span {
    justify-content: flex-start;
    text-align: left;
    padding: 0.68rem 0.8rem;
    font-size: 0.78rem;
  }

  .about-showcase {
    gap: 1.2rem;
  }

  .about-showcase__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .about-showcase__gallery img:first-child {
    grid-column: 1 / -1;
    min-height: 170px;
  }

  .about-showcase__gallery img:nth-child(3),
  .about-showcase__stat {
    min-height: 108px;
  }

  .about-showcase__gallery img:nth-child(4) {
    display: none;
  }

  .about-hero {
    padding-top: 1.05rem;
  }

  .about-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0.36) 46%, rgba(255, 255, 255, 0.12) 74%, rgba(255, 255, 255, 0.04) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.62) 34%, rgba(255, 255, 255, 0.16) 68%, rgba(255, 255, 255, 0.02) 100%),
      url("../images/hero1.jpg") 72% center/cover no-repeat;
  }

  .about-hero__grid {
    min-height: 330px;
    align-items: center;
  }

  .about-hero__content {
    padding: 0.35rem 0 0.82rem;
  }

  .about-hero__content h1 {
    max-width: 8.2ch;
    font-size: clamp(2.15rem, 9.8vw, 2.95rem);
    line-height: 0.94;
  }

  .about-hero__content p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
  }

  .about-hero__breadcrumb {
    font-size: 0.78rem;
  }

  .about-ceo-message__image-wrap img {
    min-height: 300px;
    border-radius: 20px;
  }

  .about-ceo-message__badge {
    left: 0.85rem;
    bottom: 0.85rem;
    width: 118px;
    padding: 0.95rem 0.85rem;
    border-radius: 16px;
  }

  .about-ceo-message__badge strong {
    font-size: 2rem;
  }

  .about-ceo-message__badge span:last-child {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .about-ceo-message__content h2 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    margin-bottom: 0.5rem;
  }

  .about-ceo-message__content h3 {
    margin-bottom: 0.7rem;
    font-size: 1.12rem;
  }

  .about-ceo-message__content p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.85rem;
  }

  .about-mission-grid {
    gap: 0.9rem;
  }

  .about-mission-card {
    padding: 1.2rem 1rem;
    border-radius: 18px;
  }

  .about-mission-card__icon {
    width: 64px;
    height: 64px;
    font-size: 1.45rem;
  }

  .about-mission-card h3 {
    font-size: 1.08rem;
    margin-bottom: 0.35rem;
  }

  .about-mission-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .about-journey {
    gap: 0.85rem;
    margin-top: 1.35rem;
  }

  .about-journey__item {
    padding: 1.05rem 0.95rem;
    border-radius: 18px;
  }

  .about-journey__icon {
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 0.7rem;
    font-size: 0.98rem;
  }

  .about-journey__item h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .about-journey__item p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .about-clients-band {
    padding: 2.2rem 0;
  }

  .about-clients-band .section-heading h2 {
    font-size: clamp(1.8rem, 7.6vw, 2.2rem);
  }

  .about-clients-band__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.15rem;
  }

  .about-clients-band__stat {
    padding: 0.95rem 0.75rem 0.9rem;
    border-radius: 16px;
  }

  .about-clients-band__icon {
    width: 2.9rem;
    height: 2.9rem;
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
  }

  .about-clients-band__stat strong {
    margin-bottom: 0.28rem;
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .about-clients-band__stat span {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .about-showcase__content h2 {
    font-size: clamp(1.95rem, 8vw, 2.5rem);
    line-height: 1.02;
    margin-bottom: 0.8rem;
  }

  .about-showcase__content p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
  }

  .about-showcase__content h2 span {
    white-space: normal;
  }

  .about-showcase__points {
    gap: 0.7rem;
    margin: 1rem 0 1.35rem;
  }

  .about-showcase__points span {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .section-heading--row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.15rem;
  }

  .section-heading--row h2 {
    max-width: 8.5ch;
    font-size: clamp(2rem, 8.8vw, 2.55rem);
    line-height: 0.98;
    margin-bottom: 0;
  }

  .section-heading--row .button {
    min-height: 0;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(185, 28, 28, 0.14);
  }

  .category-grid--compact {
    gap: 0.9rem;
  }

  .category-card--compact {
    border-radius: 20px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  }

  .category-card--compact img {
    height: 192px;
  }

  .category-card--compact .category-card__content {
    padding: 0.95rem 0.9rem 1.02rem;
  }

  .category-card__eyebrow {
    margin-bottom: 0.38rem;
    font-size: 0.66rem;
    letter-spacing: 0.15em;
  }

  .category-card--compact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    min-height: 0;
  }

  .category-card--compact p {
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 0.72rem;
  }

  .category-card--compact .text-link {
    min-height: 2.2rem;
    padding: 0.54rem 0.76rem;
    font-size: 0.8rem;
  }

  .why-home__content h2 {
    max-width: 7.8ch;
    font-size: clamp(2rem, 8.6vw, 2.45rem);
    margin-bottom: 0.65rem;
  }

  .why-home__intro {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .why-home__list {
    gap: 0.85rem;
    margin-top: 1.35rem;
  }

  .why-home__item {
    padding: 1.15rem 1rem 1.05rem;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  }

  .why-home__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.8rem;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .why-home__item h3 {
    margin-bottom: 0.4rem;
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .why-home__item p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .footer-main {
    padding-top: 2.2rem;
  }

  .footer-grid {
    gap: 1.45rem;
  }

  .footer-company {
    padding-bottom: 0.35rem;
  }

  .footer-cta {
    gap: 0.9rem;
    padding: 1.1rem 0.95rem;
    border-radius: 18px;
    box-shadow: 0 16px 28px rgba(185, 28, 28, 0.12);
  }

  .footer-cta__icon {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.1rem;
  }

  .footer-cta__content .eyebrow {
    margin-bottom: 0.38rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .footer-cta__content h2 {
    margin-bottom: 0.38rem;
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1;
  }

  .footer-cta__content p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .footer-cta__button {
    min-height: 2.9rem;
    font-size: 0.9rem;
  }

  .footer-logo {
    width: 172px;
    margin-bottom: 0.72rem;
  }

  .footer-company p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .footer-social {
    margin-top: 0.9rem;
    gap: 0.65rem;
  }

  .footer-social a {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 0.95rem;
  }

  .footer-column h2 {
    margin-bottom: 0.75rem;
    font-size: 1.08rem;
  }

  .footer-links {
    gap: 0.62rem;
  }

  .footer-links li::before {
    margin-right: 0.62rem;
    font-size: 0.72rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-contact-item {
    gap: 0.72rem;
  }

  .footer-contact-item__icon {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 0.94rem;
  }

  .footer-contact-item strong {
    font-size: 0.96rem;
  }

  .footer-contact-item p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .footer-newsletter {
    margin-top: 1.6rem;
    padding: 1.3rem 0 1.8rem;
  }

  .footer-newsletter__content {
    gap: 0.75rem;
  }

  .footer-newsletter__icon {
    width: 3.35rem;
    height: 3.35rem;
    font-size: 1.1rem;
  }

  .footer-newsletter__content h3 {
    font-size: 1.12rem;
    margin-bottom: 0.25rem;
  }

  .footer-newsletter__content p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .footer-newsletter__form input,
  .footer-newsletter__form .button {
    min-height: 3rem;
  }

  .footer-bottom {
    gap: 0.8rem;
    padding: 1rem 0 5.7rem;
    justify-items: start;
  }

  .footer-bottom p,
  .footer-bottom__links a,
  .footer-payments span {
    font-size: 0.82rem;
  }

  .footer-bottom p {
    max-width: 20rem;
    line-height: 1.55;
  }

  .footer-bottom__links {
    gap: 0.5rem;
  }

  .footer-bottom__links a {
    line-height: 1.45;
  }

  .footer-payments {
    gap: 0.55rem;
  }

  .footer-payments > span:first-child {
    margin-bottom: 0.05rem;
    font-weight: 700;
  }

  .footer-payment-badge {
    min-width: 3.45rem;
    padding: 0.4rem 0.62rem;
    border-radius: 9px;
  }

  .home-stats-band {
    padding: 0.75rem 0;
  }

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

  .why-home__stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.9rem 0.85rem;
    min-height: 0;
    border-radius: 18px;
  }

  .why-home__stat-icon {
    flex: 0 0 2.65rem;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 12px;
    font-size: 1rem;
  }

  .why-home__stat-copy {
    gap: 0.18rem;
  }

  .why-home__stat strong {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .why-home__stat span {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .about-showcase__gallery img:first-child,
  .about-showcase__gallery img:nth-child(3),
  .about-showcase__stat {
    border-radius: 16px;
  }

  .about-showcase__stat strong {
    font-size: 2rem;
  }

  .about-showcase__stat span {
    font-size: 0.8rem;
  }

  .products-hero {
    padding: 0.8rem 0 0.6rem;
    background-position: 76% center;
    border-radius: 0 0 20px 20px;
  }

  .products-hero__content {
    max-width: min(13.6rem, 100%);
    padding: 0.42rem 0 0.64rem;
  }

  .products-hero__breadcrumb {
    margin-bottom: 0.55rem;
    font-size: 0.74rem;
  }

  .products-hero h1 {
    max-width: 6.8ch;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .products-hero p {
    max-width: 12.4rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .products-hero__divider {
    width: 2.6rem;
    margin: 0.6rem 0 0.62rem;
  }

  .catalog-stage-card__media {
    min-height: 185px;
  }

  .catalog-stage-card__body {
    padding: 0.88rem 0.88rem 0.96rem;
  }

  .catalog-stage-card__footer {
    gap: 0.55rem;
  }

  .catalog-stage-card__footer small,
  .catalog-stage-card__footer span {
    font-size: 0.74rem;
  }

  .catalog-titlebar h1 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .catalog-titlebar--flow {
    gap: 0.72rem;
    padding: 0.9rem 0.88rem 0.86rem;
    border-radius: 18px;
  }

  .catalog-products-stage__toolbar {
    padding: 0.86rem 0.82rem 0.82rem;
    border-radius: 16px;
  }

  .catalog-products-grid {
    gap: 0.95rem;
  }

  .product-inquiry-section .inquiry-layout > div:first-child h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
  }

  .product-inquiry-section .contact-form {
    padding: 1rem 0.9rem;
    border-radius: 16px;
  }

  .catalog-product-card__media {
    min-height: 176px;
    padding: 0.86rem 0.86rem 0.5rem;
  }

  .catalog-product-card__media img {
    width: min(100%, 190px);
    height: 136px;
    border-radius: 12px;
  }

  .catalog-product-card__brand {
    margin-bottom: 0.28rem;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .catalog-product-card__body {
    padding: 0.34rem 0.84rem 0.86rem;
  }

  .catalog-product-card__body h2 {
    font-size: 1rem;
  }

  .catalog-product-card__body p {
    margin-bottom: 0.72rem;
    font-size: 0.79rem;
  }

  .catalog-product-card__button {
    min-height: 2.7rem;
    padding: 0.68rem 0.8rem;
    font-size: 0.72rem;
  }

  .product-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }

  .product-summary {
    padding: 1rem 0.9rem 1.1rem;
  }

  .product-summary__actions {
    gap: 0.65rem;
  }

  .product-summary__actions--sticky .button {
    flex: 1 1 100%;
    min-height: 3.15rem;
    padding: 0.82rem 0.95rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 14px 26px rgba(185, 28, 28, 0.14);
  }

  .product-summary h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .product-showcase {
    padding: 0.8rem;
  }

  .product-showcase__stage {
    min-height: 220px;
    padding: 0.65rem;
  }

  .product-showcase__stage img {
    width: 100%;
    max-width: 100%;
    max-height: 195px;
  }

  .product-showcase__thumbs {
    grid-template-columns: repeat(4, minmax(52px, 1fr));
  }

  .product-showcase__thumb {
    border-radius: 12px;
  }

  .product-feature-list li {
    gap: 0.75rem;
    padding: 0.9rem 0.85rem;
  }

  .product-summary__actions--sticky {
    position: static;
    bottom: auto;
  }

  .product-highlights--facts {
    grid-template-columns: 1fr;
  }

  .product-related-slider {
    grid-auto-columns: minmax(84%, 1fr);
    gap: 0.9rem;
  }

  .product-related-section .section-heading--row h2 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .product-card--related img {
    height: 200px;
  }

  .product-card--related h3 {
    font-size: 1.14rem;
  }

  .product-card--related p {
    min-height: auto;
    font-size: 0.86rem;
  }

  .product-summary,
  .product-showcase,
  .product-inquiry-panel,
  .product-tabs,
  .product-tabs__nav,
  .product-tabs__grid,
  .product-quote-card,
  .detail-card--feature-panel {
    min-width: 0;
    max-width: 100%;
  }

  .catalog-pagination {
    gap: 0.45rem;
  }

  .quick-actions {
    left: auto;
    right: 0.75rem;
    bottom: 0.55rem;
  }

  .quick-actions__item {
    min-height: 0;
    padding: 0;
    font-size: 0.72rem;
  }

  .quick-actions__item--whatsapp {
    width: 3.2rem;
    height: 3.2rem;
  }

  .quick-actions__item i {
    font-size: 1.3rem;
  }

  .services-process {
    padding-top: 3.2rem;
  }

  .services-process .section-heading h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    margin-bottom: 0.6rem;
  }

  .services-process .section-heading p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .services-process__steps {
    gap: 0.75rem;
    margin-top: 1.1rem;
  }

  .services-process__card {
    padding: 0.9rem 0.85rem 0.82rem;
    border-radius: 18px;
  }

  .services-process__badge {
    top: -0.62rem;
    min-width: 1.7rem;
    height: 1.7rem;
    padding: 0 0.42rem;
    font-size: 0.62rem;
  }

  .services-process__icon {
    width: 3.6rem;
    height: 3.6rem;
    margin: 0.45rem auto 0.7rem;
    font-size: 1.05rem;
  }

  .services-process__card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.32rem;
  }

  .services-process__card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .footer-bottom {
    padding-bottom: 5.35rem;
  }

  .footer-bottom__links {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.55rem;
  }

  .footer-payments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: start;
    gap: 0.65rem;
  }

  .footer-payments > span:first-child {
    grid-column: 1 / -1;
  }

  .footer-payment-badge img {
    height: 18px;
  }
}
