.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f3f5f8;
}

.top-frame {
  width: 100%;
  background: #fff;
}

.blue-panel {
  width: 100%;
  overflow: hidden;
  background: var(--blue-900);
  color: #fff;
}

.utility-header,
.category-nav,
.hero-banner,
.products-overlap,
.max-wrap {
  width: min(100%, 2048px);
  margin-inline: auto;
}

.utility-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 270px minmax(520px, 760px) minmax(520px, 1fr);
  align-items: center;
  gap: 44px;
  height: 112px;
  padding: 0 42px;
  background: linear-gradient(90deg, #002b73 0%, #001f60 100%);
}

.brand-mark {
  order: -1;
  justify-self: end;
  align-self: center;
  width: 230px;
  height: 154px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 8px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.18));
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 64px;
  align-items: center;
  height: 56px;
  overflow: hidden;
  border-radius: 21px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 9px 24px rgba(0, 0, 0, 0.18);
}

.search-box input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 26px;
  color: #516079;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
}

.search-box button {
  display: grid;
  height: 100%;
  place-items: center;
  border: 0;
  background: var(--yellow);
  color: #081d4f;
  cursor: pointer;
}

.utility-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  min-width: 0;
}

.utility-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.utility-link svg {
  color: rgba(255, 255, 255, 0.76);
}

.whatsapp-link svg,
.whatsapp-link .whatsapp-dot {
  color: #3fd262;
}

.whatsapp-link span:last-child {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.whatsapp-link strong {
  font-size: 15px;
}

.whatsapp-dot {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 3px solid #3fd262;
  border-radius: 50%;
  color: #3fd262;
  font-size: 13px;
  font-weight: 900;
}

.cart-link {
  color: #fff;
}

.cart-badge {
  position: absolute;
  top: -15px;
  right: -11px;
  display: grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #061d51;
  font-size: 14px;
  font-weight: 900;
}

.category-nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 174px repeat(7, minmax(120px, 1fr));
  align-items: stretch;
  height: 72px;
  padding-inline: 318px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #002268;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.nav-item svg {
  color: rgba(255, 255, 255, 0.72);
}

.nav-item.active-sale {
  background: var(--yellow);
  color: #081d4f;
}

.nav-item.selected {
  color: #fff;
}

.hero-banner {
  position: relative;
  height: 500px;
  background:
    linear-gradient(90deg, rgba(0, 31, 96, 1) 0%, rgba(0, 31, 96, 0.98) 23%, rgba(0, 31, 96, 0.62) 46%, rgba(0, 31, 96, 0.1) 72%),
    url("/brand/hero-tools.png") center / cover no-repeat;
}

.hero-content {
  width: min(720px, 48vw);
  padding: 70px 0 0;
  margin-right: auto;
  margin-left: 250px;
  text-align: right;
}

.hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 4.8vw, 84px);
  font-weight: 900;
  line-height: 1.03;
}

.hero-content h1 span {
  display: block;
  color: var(--yellow);
}

.hero-content p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 25px;
  font-weight: 700;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 640px;
  max-width: 100%;
  margin-top: 26px;
}

.hero-benefits span {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 92px;
  padding: 0 17px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.hero-benefits span:last-child {
  border-inline-start: 0;
}

.hero-benefits svg {
  color: rgba(255, 255, 255, 0.72);
}

.hero-benefits strong,
.hero-benefits small {
  display: block;
}

.hero-benefits strong {
  font-size: 16px;
  font-weight: 900;
}

.hero-benefits small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 700;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 45px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
  color: #081d4f;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #52606f;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-arrow.next {
  left: 78px;
}

.hero-arrow.prev {
  left: 22px;
}

.products-overlap {
  position: relative;
  z-index: 8;
  margin-top: -128px;
  padding: 28px 36px 24px;
  border-radius: 26px 26px 8px 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-bottom: 18px;
}

.section-heading h2 {
  position: relative;
  grid-column: 1;
  margin: 0;
  color: #17213a;
  font-size: 25px;
  font-weight: 900;
}

.section-heading h2::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 4px;
  margin-inline-start: 13px;
  border-radius: 99px;
  background: var(--yellow);
  vertical-align: middle;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  position: relative;
  min-width: 0;
  min-height: 252px;
  padding: 13px 13px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(11, 23, 46, 0.04);
}

.favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #aeb5c0;
  cursor: pointer;
}

.product-card > a {
  display: block;
  height: 110px;
  margin: 6px 0 12px;
}

.product-card > a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  display: -webkit-box;
  min-height: 39px;
  margin: 0;
  overflow: hidden;
  color: #1f2740;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card > strong {
  display: block;
  margin: 9px 0 13px;
  color: #002b70;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
}

.add-cart {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: var(--yellow);
  color: #081d4f;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
}

.add-cart svg {
  justify-self: center;
}

.catalog-area {
  padding: 40px 0 64px;
  background: #f3f5f8;
}

.max-wrap {
  padding-inline: 42px;
}

.category-chips {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(0, 34, 104, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #002268;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.chip.active {
  border-color: var(--yellow);
  background: #fff7d9;
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0 22px;
}

.catalog-heading p {
  margin: 0;
  color: #f1aa00;
  font-weight: 900;
}

.catalog-heading h2 {
  margin: 4px 0 0;
  color: #001f60;
  font-size: 36px;
  font-weight: 900;
}

.catalog-heading span {
  color: #667085;
  font-weight: 800;
}

.key-service-section {
  padding: 46px 0 30px;
  background: #f3f5f8;
}

.key-service-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.35fr);
  align-items: center;
  min-height: 395px;
  padding: 22px 42px 22px 52px;
  border-radius: 26px;
  background: #062f78;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 34, 104, 0.18);
}

.key-service-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 18px 0 18px 22px;
  direction: rtl;
}

.service-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
}

.service-kicker {
  padding: 7px 11px;
  border: 1px solid rgba(251, 181, 0, 0.48);
  border-radius: 999px;
  background: rgba(251, 181, 0, 0.1);
}

.key-service-copy h2 {
  margin: 20px 0 8px;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 900;
  line-height: 1;
}

.key-service-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 600;
}

.key-service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 28px;
}

.key-service-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.key-service-benefits svg { color: var(--yellow); }

.key-service-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.service-primary-button,
.service-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-primary-button { background: var(--yellow); color: #061f5c; }
.service-secondary-button { border: 1px solid rgba(255, 255, 255, 0.28); color: #fff; }
.service-primary-button:hover, .service-secondary-button:hover { transform: translateY(-2px); }
.service-primary-button:hover { box-shadow: 0 10px 20px rgba(251, 181, 0, 0.24); }
.service-secondary-button:hover { background: rgba(255, 255, 255, 0.1); }

.key-service-visual {
  align-self: stretch;
  min-height: 350px;
  margin: -22px -52px -22px 0;
  background: #07152d;
}

.key-service-visual img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.key-service-card:hover .key-service-visual img { transform: scale(1.02); }

.secondary-services { padding-top: 40px; padding-bottom: 34px; }
.service-chips { display: none; }

.service-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.service-section-heading h2 {
  max-width: 660px;
  margin: 7px 0 0;
  color: #001f60;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.05;
}

.service-section-heading p { max-width: 360px; margin: 0; color: #667085; font-size: 17px; font-weight: 700; line-height: 1.45; }

.secondary-service-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 14px; }

.secondary-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 106px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 34, 104, 0.1);
  border-radius: 14px;
  background: #fff;
  color: #001f60;
  box-shadow: 0 5px 16px rgba(11, 23, 46, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card-4, .service-card-7 { grid-column: span 2; }
.secondary-service-card:hover { border-color: rgba(251, 181, 0, 0.7); box-shadow: 0 12px 24px rgba(11, 23, 46, 0.09); transform: translateY(-3px); }
.secondary-service-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 13px; background: #edf3ff; color: #0b4da2; transition: transform 220ms ease, background 220ms ease; }
.secondary-service-card:hover .secondary-service-icon { background: #fff4cf; transform: translateY(-2px); }
.secondary-service-content { display: grid; gap: 5px; min-width: 0; }
.secondary-service-content strong { font-size: 18px; font-weight: 900; }
.secondary-service-content small { overflow: hidden; color: #667085; font-size: 14px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.secondary-service-arrow { color: #f1aa00; transition: transform 220ms ease; }
.secondary-service-card:hover .secondary-service-arrow { transform: translateX(-4px); }

.products-after-catalog { margin-top: 0; border-radius: 0; box-shadow: none; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 108px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  color: #001f60;
  cursor: pointer;
  text-align: right;
}

.category-card.active {
  border-color: rgba(251, 181, 0, 0.8);
  box-shadow: inset 0 0 0 2px rgba(251, 181, 0, 0.3);
}

.category-card img {
  grid-row: span 2;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
}

.category-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 900;
}

.category-card small {
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1600px) {
  .utility-header {
    grid-template-columns: 240px minmax(420px, 690px) minmax(420px, 1fr);
    gap: 26px;
  }

  .category-nav {
    padding-inline: 282px 26px;
  }

  .product-strip {
    gap: 16px;
  }
}

@media (max-width: 1180px) {
  .utility-header {
    grid-template-columns: 210px 1fr;
    height: auto;
    min-height: 118px;
    padding: 10px 22px 14px;
  }

  .brand-mark {
    width: 196px;
    height: 130px;
  }

  .search-box {
    grid-column: 2;
  }

  .utility-list {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 22px;
  }

  .category-nav {
    display: flex;
    overflow-x: auto;
    padding-inline: 18px;
  }

  .nav-item {
    min-width: 156px;
  }

  .hero-content {
    width: min(620px, calc(100% - 44px));
    margin-right: auto;
    margin-left: 42px;
  }

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

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

  .key-service-card {
    grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
    padding-inline: 28px 34px;
  }

  .key-service-visual { margin-right: -34px; }
  .secondary-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-4, .service-card-7 { grid-column: span 1; }
}

@media (max-width: 760px) {
  .utility-header {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 10px;
    padding: 8px 14px 12px;
  }

  .brand-mark {
    width: 128px;
    height: 92px;
  }

  .search-box {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 50px;
  }

  .utility-list {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    gap: 12px;
  }

  .utility-link > span:not(.cart-badge):not(.whatsapp-dot),
  .utility-link.whatsapp-link span:last-child {
    display: none;
  }

  .category-nav {
    height: 64px;
  }

  .nav-item {
    min-width: 136px;
    font-size: 15px;
  }

  .hero-banner {
    height: 515px;
    background:
      linear-gradient(180deg, rgba(0, 31, 96, 0.98) 0%, rgba(0, 31, 96, 0.86) 48%, rgba(0, 31, 96, 0.18) 100%),
      url("/brand/hero-tools.png") center bottom / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
    padding-top: 42px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 0;
    width: 100%;
  }

  .hero-benefits span {
    min-height: 78px;
  }

  .hero-arrow {
    display: none;
  }

  .key-service-section { padding: 24px 0 18px; }

  .key-service-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 28px);
    min-height: 0;
    padding: 26px 18px 0;
    border-radius: 20px;
  }

  .key-service-copy { max-width: none; padding: 0 0 24px; text-align: right; }
  .key-service-copy h2 { margin-top: 16px; font-size: 39px; }
  .key-service-copy > p { font-size: 17px; }
  .key-service-benefits { gap: 12px 18px; margin: 20px 0 22px; }
  .key-service-benefits span { font-size: 14px; }
  .key-service-actions { display: grid; grid-template-columns: 1fr; }
  .service-primary-button, .service-secondary-button { width: 100%; }
  .key-service-visual { min-height: 245px; margin: 0 -18px; }
  .key-service-visual img { min-height: 245px; object-position: 62% center; }

  .secondary-services { padding-top: 24px; padding-bottom: 24px; }
  .service-chips { display: flex; gap: 9px; margin: 0 -14px 24px; overflow-x: auto; padding: 2px 14px 5px; scrollbar-width: none; }
  .service-chips::-webkit-scrollbar { display: none; }
  .service-chip { flex: 0 0 auto; padding: 9px 14px; border: 1px solid rgba(0, 34, 104, 0.12); border-radius: 999px; background: #fff; color: #002268; font-size: 14px; font-weight: 900; white-space: nowrap; }
  .service-chip.active { border-color: var(--yellow); background: #fff4cf; }
  .service-section-heading { display: block; margin-bottom: 18px; }
  .service-section-heading h2 { font-size: 30px; }
  .service-section-heading p { margin-top: 10px; font-size: 15px; }
  .secondary-service-grid { grid-template-columns: 1fr; gap: 10px; }
  .secondary-service-card { min-height: 82px; padding: 12px 14px; }
  .secondary-service-icon { width: 42px; height: 42px; }
  .secondary-service-content strong { font-size: 16px; }
  .secondary-service-content small { font-size: 13px; }

  .products-overlap {
    width: calc(100% - 22px);
    margin-top: -84px;
    padding: 20px 14px;
    border-radius: 20px 20px 8px 8px;
  }

  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card {
    min-height: 244px;
  }

  .max-wrap {
    padding-inline: 14px;
  }

  .catalog-heading {
    display: block;
  }

  .catalog-heading h2 {
    font-size: 28px;
  }

  .catalog-heading span {
    display: inline-block;
    margin-top: 7px;
  }

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

/* Unified homepage system: every section shares the same container, surfaces,
   spacing rhythm and conversion language. */
.site-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-shell { background: #f8f9fc; }
.blue-panel { background: var(--blue-900); }
.site-header { position: relative; z-index: 20; background: var(--blue-900); color: #fff; }
.site-header.is-scrolled { position: sticky; top: 0; box-shadow: 0 8px 24px rgba(3,29,71,.16); }
.site-header.is-scrolled .utility-bar { display: none; }
.site-header.is-scrolled .main-header { min-height: 68px; }
.site-header.is-scrolled .brand-mark { height: 65px; }
.utility-bar { min-height: 32px; background: var(--navy-950, #031d47); color: rgba(255,255,255,.78); }
.utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 32px; font-size: 13px; font-weight: 600; }
.utility-inner span { display: inline-flex; align-items: center; gap: 6px; }
.main-header { display: grid; grid-template-columns: 210px minmax(360px, 1fr) auto; align-items: center; gap: 38px; min-height: 82px; }
.brand-mark { display: block; width: 166px; height: 78px; margin: 0; overflow: visible; border-radius: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 7px 14px rgba(0,0,0,.18)); }
.header-actions { display: flex; align-items: center; gap: 17px; }
.header-contact-link, .header-icon-link { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 800; white-space: nowrap; }
.header-contact-link.whatsapp { color: #60df82; }
.header-phone { color: var(--yellow); font-size: 16px; direction: ltr; }
.header-icon-link { position: relative; }
.header-icon-link:hover, .header-contact-link:hover { color: #fff; }
.header-icon-link.cart-link { color: #fff; }
.cart-badge { top: -5px; right: -8px; min-width: 21px; height: 21px; font-size: 12px; }
.mobile-menu-button, .mobile-search-chips { display: none; }
.search-box { height: 48px; border-radius: 14px; box-shadow: none; }
.search-box input { padding: 0 20px; color: #344054; font-size: 16px; }
.search-box button { width: 58px; color: #07142e; }
.primary-nav { border-top: 1px solid rgba(255,255,255,.09); background: var(--blue-900); }
.primary-nav-inner { display: flex; align-items: stretch; justify-content: center; gap: 6px; min-height: 48px; }
.primary-nav-inner a { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 48px; padding: 0 19px; border-bottom: 3px solid transparent; color: rgba(255,255,255,.88); font-size: 15px; font-weight: 800; transition: background 180ms ease, border-color 180ms ease, color 180ms ease; }
.primary-nav-inner a:hover { background: rgba(255,255,255,.07); color: #fff; }
.primary-nav-inner .is-current { border-bottom-color: var(--yellow); background: rgba(255,180,0,.12); color: var(--yellow); }
.hero-banner { height: auto; min-height: 580px; background: var(--blue-900); }
.hero-grid { display: grid; grid-template-columns: minmax(390px, .92fr) minmax(0, 1.08fr); grid-template-areas: "visual copy"; align-items: center; min-height: 580px; direction: ltr; }
.hero-content { grid-area: copy; width: auto; max-width: 620px; margin: 0; padding: 58px 0 66px; direction: rtl; text-align: right; }
.hero-eyebrow { display: inline-block; margin-bottom: 18px; color: var(--yellow); font-size: 16px; font-weight: 800; }
.hero-content h1 { margin: 0; font-size: clamp(56px, 5vw, 82px); font-weight: 900; line-height: .95; }
.hero-content h1 span, .hero-content h1 strong { display: block; }
.hero-content h1 span { color: #fff; }
.hero-content h1 strong { color: var(--yellow); }
.hero-content p { max-width: 560px; margin: 22px 0 0; color: rgba(255,255,255,.85); font-size: 20px; font-weight: 500; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.hero-cta, .hero-ghost-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 19px; border-radius: 10px; font-size: 16px; font-weight: 900; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.hero-cta { border: 0; background: var(--yellow); color: #061f5c; }
.hero-ghost-cta { border: 1px solid rgba(255,255,255,.38); background: transparent; color: #fff; }
.hero-cta:hover, .hero-ghost-cta:hover { transform: translateY(-2px); }
.hero-cta:hover { box-shadow: 0 10px 24px rgba(255,180,0,.22); }
.hero-whatsapp-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 700; }
.hero-whatsapp-link:hover { color: #fff; }
.hero-trust-items { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 35px; }
.hero-trust-items span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 700; }
.hero-trust-items svg { color: var(--yellow); }
.hero-visual { grid-area: visual; display: flex; align-items: center; justify-content: center; align-self: stretch; min-width: 0; padding: 22px 0 12px; direction: ltr; }
.hero-visual img { width: 100%; max-width: 700px; height: auto; object-fit: contain; filter: drop-shadow(0 20px 26px rgba(0,0,0,.2)); animation: hero-product-in 760ms cubic-bezier(.22,1,.36,1) both; }
.hero-arrow { display: none; }
@keyframes hero-product-in { from { opacity: 0; transform: translateX(-20px) translateY(-50%) scale(.985); } to { opacity: 1; transform: translateX(0) translateY(-50%) scale(1); } }

.trust-strip { background: #fff; border-bottom: 1px solid var(--border, #e4e8ef); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; min-height: 68px; }
.trust-strip-inner span { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: #344054; font-size: 15px; font-weight: 800; }
.trust-strip-inner svg { color: var(--blue-700, #0a4ba3); }

.key-service-section { padding: 70px 0 44px; background: #f8f9fc; }
.key-service-card { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); align-items: stretch; min-height: 500px; padding: 0; border: 1px solid rgba(6,45,106,.08); border-radius: 26px; background: var(--blue-900); overflow: hidden; box-shadow: 0 12px 35px rgba(3,29,71,.11); }
.key-service-copy { display: flex; flex-direction: column; justify-content: center; max-width: none; padding: 54px 58px; background: var(--blue-900); }
.service-kicker { align-self: flex-start; padding: 7px 11px; border-color: rgba(255,180,0,.55); color: var(--yellow); }
.key-service-copy h2 { margin: 19px 0 7px; font-size: clamp(43px, 4.2vw, 68px); line-height: .98; }
.key-service-copy h3 { margin: 0; color: var(--yellow); font-size: clamp(22px, 2vw, 31px); font-weight: 800; }
.key-service-copy > p { margin: 15px 0 0; font-size: 18px; }
.key-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 32px 0 29px; }
.key-steps span { display: grid; gap: 7px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 700; line-height: 1.25; }
.key-steps b { color: var(--yellow); font-size: 15px; direction: ltr; }
.key-service-visual { min-height: 500px; margin: 0; background: #06152e; }
.key-service-visual img { min-height: 500px; object-fit: cover; }

.secondary-services { padding-top: 45px; padding-bottom: 60px; }
.service-section-heading { align-items: end; margin-bottom: 26px; }
.service-section-heading h2 { font-size: clamp(34px, 3vw, 52px); }
.service-section-heading p { font-size: 17px; }
.secondary-service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.secondary-service-card { min-height: 150px; padding: 20px; border-radius: 18px; box-shadow: 0 12px 35px rgba(3,29,71,.06); }
.service-card-4, .service-card-7 { grid-column: span 2; }
.secondary-service-content small { white-space: normal; line-height: 1.4; }
.secondary-service-content em { color: #0a4ba3; font-size: 13px; font-style: normal; font-weight: 800; }

.departments-section { padding: 76px 0 82px; background: #fff; }
.departments-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.departments-heading h2 { margin: 7px 0 0; color: var(--blue-900); font-size: clamp(34px, 3vw, 52px); font-weight: 900; line-height: 1.03; }
.departments-heading p { margin: 0; color: var(--muted); font-size: 18px; font-weight: 800; }
.department-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.department-card { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 218px; padding: 0; border: 1px solid var(--border, #e4e8ef); border-radius: 18px; background: #fff; color: var(--blue-900); overflow: hidden; cursor: pointer; text-align: right; box-shadow: 0 12px 35px rgba(3,29,71,.06); transition: transform 250ms cubic-bezier(.22,1,.36,1), border-color 250ms ease, box-shadow 250ms ease; }
.department-card:hover { border-color: rgba(10,75,163,.3); box-shadow: 0 18px 35px rgba(3,29,71,.12); transform: translateY(-5px); }
.department-media { position: relative; display: block; min-height: 218px; background: #eef3f9; overflow: hidden; }
.department-media img { position: absolute; width: 64%; height: 67%; object-fit: contain; transition: transform 250ms ease; }
.department-media img:nth-child(1) { inset: 7% 5% auto auto; }
.department-media img:nth-child(2) { inset: auto auto 2% 2%; width: 52%; height: 54%; }
.department-media img:nth-child(3) { inset: auto 8% 1% auto; width: 48%; height: 48%; }
.department-card:hover .department-media img { transform: scale(1.025); }
.department-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 24px 20px; }
.department-copy strong { font-size: 20px; font-weight: 900; line-height: 1.15; }
.department-copy small { color: #0a4ba3; font-size: 14px; font-weight: 900; }
.department-copy em { min-height: 38px; color: var(--muted); font-size: 13px; font-style: normal; font-weight: 600; line-height: 1.45; }
.department-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: #0a4ba3; font-size: 14px; font-weight: 900; }
.department-source-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 26px; color: var(--muted); font-size: 14px; font-weight: 700; }

.featured-products { padding: 76px 0 84px; background: #f8f9fc; }
.featured-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 27px; }
.featured-heading h2 { margin: 7px 0 0; color: var(--blue-900); font-size: clamp(34px, 3vw, 52px); font-weight: 900; line-height: 1.03; }
.featured-tabs { display: flex; align-items: center; gap: 7px; padding: 5px; border: 1px solid var(--border, #e4e8ef); border-radius: 12px; background: #fff; }
.featured-tabs button { min-height: 38px; padding: 0 13px; border: 0; border-radius: 8px; background: transparent; color: #667085; cursor: pointer; font-size: 14px; font-weight: 800; }
.featured-tabs button.active { background: #fff0bf; color: #062d6a; }
.featured-product-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.featured-product-strip .product-card { min-height: 330px; padding: 16px; border-radius: 12px; box-shadow: 0 12px 35px rgba(3,29,71,.06); transition: transform 220ms ease, box-shadow 220ms ease; }
.featured-product-strip .product-card:hover { box-shadow: 0 16px 30px rgba(3,29,71,.12); transform: translateY(-3px); }
.featured-product-strip .product-card > a { height: 190px; margin: 5px 0 17px; }
.featured-product-strip .product-card > a img { transition: transform 220ms ease; }
.featured-product-strip .product-card:hover > a img { transform: scale(1.035); }

.photo-help-section { padding: 70px 0; background: var(--blue-900); color: #fff; }
.photo-help-grid, .handyman-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); align-items: center; gap: 50px; }
.photo-help-copy { max-width: 600px; }
.photo-help-copy h2, .handyman-copy h2 { margin: 10px 0 16px; color: #fff; font-size: clamp(36px, 3.4vw, 56px); font-weight: 900; line-height: 1.05; }
.photo-help-copy p, .handyman-copy p { max-width: 550px; margin: 0; color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.55; }
.conversion-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.conversion-primary, .conversion-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 18px; border-radius: 10px; font-size: 16px; font-weight: 900; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.conversion-primary { background: var(--yellow); color: #061f5c; }
.conversion-secondary { border: 1px solid rgba(255,255,255,.34); color: #fff; }
.conversion-primary:hover, .conversion-secondary:hover { transform: translateY(-2px); }
.photo-help-visual, .handyman-visual { display: flex; justify-content: center; min-width: 0; }
.photo-help-visual img, .handyman-visual img { width: 100%; max-width: 560px; height: auto; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(0,0,0,.2)); }
.handyman-section { padding: 76px 0; background: #fff; }
.handyman-grid { grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr); }
.handyman-copy { max-width: 620px; }
.handyman-copy h2 { color: var(--blue-900); }
.handyman-copy p { color: var(--muted); }
.handyman-contact { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--blue-900); }
.handyman-contact strong { color: #0a4ba3; font-size: 25px; direction: ltr; }
.handyman-copy .conversion-secondary { border-color: rgba(6,45,106,.18); color: var(--blue-900); }

.store-contact { padding: 78px 0; background: #f8f9fc; }
.store-contact-heading { margin-bottom: 24px; }
.store-contact-heading h2 { margin: 7px 0 0; color: var(--blue-900); font-size: clamp(38px, 3.5vw, 56px); font-weight: 900; }
.store-contact-grid { display: grid; grid-template-columns: minmax(350px, .85fr) minmax(0, 1.15fr); gap: 20px; }
.store-details { display: grid; gap: 12px; padding: 26px; border: 1px solid var(--border, #e4e8ef); border-radius: 18px; background: #fff; }
.store-detail { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--border, #e4e8ef); color: var(--blue-900); }
.store-detail > svg { flex: 0 0 auto; margin-top: 3px; color: #0a4ba3; }
.store-detail div { display: grid; gap: 3px; }
.store-detail small { color: var(--muted); font-size: 13px; font-weight: 800; }
.store-detail strong { color: var(--blue-900); font-size: 19px; }
.store-detail span, .store-detail a { color: #475467; font-size: 15px; font-weight: 700; }
.store-detail a:first-of-type { color: #0a4ba3; font-size: 20px; direction: ltr; }
.store-contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.store-contact-actions a { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; padding: 0 13px; border-radius: 9px; background: var(--yellow); color: #061f5c; font-size: 14px; font-weight: 900; }
.map-preview { position: relative; min-height: 420px; overflow: hidden; border-radius: 18px; background: #dfe7ef; box-shadow: 0 12px 35px rgba(3,29,71,.08); }
.map-preview iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(.72); }
.map-preview > span { position: absolute; right: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 7px; padding: 10px 13px; border-radius: 9px; background: #fff; color: var(--blue-900); font-size: 14px; font-weight: 900; box-shadow: 0 8px 18px rgba(3,29,71,.15); }

.site-footer { padding: 55px 0 20px; background: var(--navy-950, #031d47); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; }
.footer-brand img { width: 155px; height: 75px; object-fit: contain; }
.footer-brand p { max-width: 260px; margin: 14px 0 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.5; }
.footer-grid h3 { margin: 0 0 14px; color: var(--yellow); font-size: 17px; }
.footer-grid a, .footer-grid span { display: flex; align-items: center; gap: 7px; margin-top: 9px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 45px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.58); font-size: 13px; }
.footer-bottom span:last-child { display: inline-flex; align-items: center; gap: 6px; }
.sticky-contact-bar { position: fixed; right: 22px; bottom: 20px; z-index: 50; display: flex; align-items: center; gap: 3px; padding: 4px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: #fff; box-shadow: 0 12px 30px rgba(3,29,71,.18); }
.sticky-contact-bar a { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; padding: 0 11px; border-radius: 8px; color: #344054; font-size: 13px; font-weight: 900; }
.sticky-contact-bar a:first-child { color: #168b45; }
.sticky-contact-bar .sticky-key { background: var(--yellow); color: #061f5c; }
.products-page { min-height: 100vh; background: #f8f9fc; color: var(--ink); }
.products-page-header { display: flex; align-items: center; justify-content: space-between; min-height: 88px; padding: 0 max(24px, calc((100% - var(--container)) / 2)); background: var(--blue-900); color: #fff; }
.products-page-header a, .products-page-header > span { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 800; }
.products-page-header img { width: 142px; height: 70px; object-fit: contain; }
.products-page-content { padding-block: 58px 85px; }
.products-page-heading h1 { margin: 8px 0 4px; color: var(--blue-900); font-size: clamp(40px, 4vw, 62px); font-weight: 900; }
.products-page-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.catalog-controls { display: grid; grid-template-columns: minmax(280px, 1fr) 230px 230px; gap: 12px; margin: 30px 0; }
.catalog-search, .catalog-controls select { display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 14px; border: 1px solid var(--border, #e4e8ef); border-radius: 10px; background: #fff; color: var(--blue-900); }
.catalog-search input { width: 100%; border: 0; outline: 0; color: var(--ink); }
.catalog-controls select { font-size: 14px; font-weight: 700; }
.catalog-result-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.catalog-result-grid .product-card { min-height: 330px; padding: 16px; border-radius: 12px; box-shadow: 0 12px 35px rgba(3,29,71,.06); }
.catalog-result-grid .product-card > a { height: 190px; }
.catalog-load-more { display: block; min-height: 48px; margin: 32px auto 0; padding: 0 22px; border: 0; border-radius: 10px; background: var(--yellow); color: #061f5c; cursor: pointer; font-size: 16px; font-weight: 900; }
.catalog-empty { padding: 50px; text-align: center; color: var(--muted); }

@media (max-width: 1180px) {
  .site-container { width: min(calc(100% - 56px), var(--container)); }
  .main-header { grid-template-columns: 165px minmax(280px, 1fr) auto; gap: 22px; }
  .header-contact-link:not(.whatsapp) { display: none; }
  .primary-nav-inner a { padding-inline: 13px; }
  .hero-grid { grid-template-columns: minmax(330px, .8fr) minmax(0, 1fr); }
  .key-service-card { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); }
  .key-service-copy { padding-inline: 36px; }
  .department-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-product-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .featured-product-strip .product-card > a { height: 150px; }
}

@media (max-width: 760px) {
  .site-container { width: calc(100% - 36px); }
  .utility-bar { display: none; }
  .main-header { grid-template-columns: auto 1fr auto; gap: 12px; min-height: 70px; }
  .mobile-menu-button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: transparent; color: #fff; }
  .brand-mark { width: 130px; height: 66px; justify-self: center; }
  .main-header .search-box { grid-column: 1 / -1; grid-row: 2; height: 48px; }
  .main-header { padding: 5px 0 12px; }
  .header-actions { gap: 8px; }
  .header-contact-link.whatsapp, .header-icon-link:not(.cart-link) { display: none; }
  .header-phone { display: none; }
  .header-icon-link.cart-link { min-height: 42px; padding: 0 8px; }
  .primary-nav { overflow-x: auto; scrollbar-width: none; }
  .primary-nav::-webkit-scrollbar { display: none; }
  .primary-nav-inner { width: max-content; min-height: 44px; margin-inline: 18px; }
  .primary-nav-inner a { min-height: 44px; padding: 0 14px; font-size: 14px; }
  .mobile-search-chips { display: flex; gap: 8px; overflow-x: auto; padding: 0 18px 12px; scrollbar-width: none; }
  .mobile-search-chips::-webkit-scrollbar { display: none; }
  .mobile-search-chips a { flex: 0 0 auto; padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff; font-size: 13px; font-weight: 800; white-space: nowrap; }
  .mobile-search-chips a:first-child { border-color: var(--yellow); color: var(--yellow); }
  .hero-banner, .hero-grid { min-height: 0; }
  .hero-grid { display: flex; flex-direction: column; }
  .hero-content { max-width: none; padding: 45px 0 15px; text-align: center; }
  .hero-eyebrow { margin-bottom: 15px; font-size: 14px; }
  .hero-content h1 { font-size: 47px; }
  .hero-content p { margin: 18px auto 0; font-size: 17px; }
  .hero-actions { justify-content: center; margin-top: 23px; }
  .hero-whatsapp-link { justify-content: center; }
  .hero-trust-items { justify-content: center; gap: 11px; margin-top: 25px; }
  .hero-trust-items span { font-size: 12px; }
  .hero-visual { width: calc(100% + 36px); min-height: 255px; margin-inline: -18px; padding: 0; }
  .hero-visual img { width: 100%; max-width: none; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 11px 8px; min-height: 86px; padding-block: 15px; }
  .trust-strip-inner span { font-size: 12px; }
  .key-service-section { padding: 34px 0 25px; }
  .key-service-card { display: flex; flex-direction: column; width: 100%; min-height: 0; border-radius: 20px; }
  .key-service-copy { padding: 31px 24px 28px; text-align: right; }
  .service-kicker { align-self: flex-start; }
  .key-service-copy h2 { margin-top: 17px; font-size: 40px; }
  .key-service-copy h3 { font-size: 23px; }
  .key-service-copy > p { font-size: 16px; }
  .key-steps { gap: 10px; margin: 24px 0; }
  .key-steps span { font-size: 12px; }
  .key-service-actions { display: grid; grid-template-columns: 1fr; }
  .key-service-visual, .key-service-visual img { min-height: 265px; }
  .key-service-visual img { object-position: 63% center; }
  .secondary-services { padding-top: 35px; padding-bottom: 40px; }
  .service-section-heading { display: block; margin-bottom: 19px; }
  .service-section-heading h2 { font-size: 33px; }
  .service-section-heading p { margin-top: 10px; font-size: 15px; }
  .secondary-service-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card-4, .service-card-7 { grid-column: span 1; }
  .secondary-service-card { min-height: 92px; padding: 14px; }
  .secondary-service-icon { width: 44px; height: 44px; }
  .secondary-service-content strong { font-size: 17px; }
  .secondary-service-content small { font-size: 13px; }
  .secondary-service-content em { font-size: 12px; }
  .departments-section, .featured-products, .photo-help-section, .handyman-section, .store-contact { padding-block: 54px; }
  .departments-heading, .featured-heading { display: block; margin-bottom: 21px; }
  .departments-heading h2, .featured-heading h2 { font-size: 34px; }
  .departments-heading p { margin-top: 10px; font-size: 16px; }
  .department-grid { grid-template-columns: 1fr; gap: 12px; }
  .department-card { min-height: 194px; }
  .department-media { min-height: 194px; }
  .department-copy { padding: 20px 16px; }
  .department-copy strong { font-size: 18px; }
  .featured-tabs { width: max-content; max-width: 100%; overflow-x: auto; margin-top: 17px; }
  .featured-tabs button { flex: 0 0 auto; }
  .featured-product-strip { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .featured-product-strip::-webkit-scrollbar { display: none; }
  .featured-product-strip .product-card { flex: 0 0 78%; scroll-snap-align: start; }
  .featured-product-strip .product-card > a { height: 190px; }
  .photo-help-grid, .handyman-grid { display: flex; flex-direction: column; gap: 18px; }
  .photo-help-copy, .handyman-copy { max-width: none; text-align: center; }
  .photo-help-copy h2, .handyman-copy h2 { font-size: 36px; }
  .photo-help-copy p, .handyman-copy p { font-size: 16px; }
  .conversion-actions { justify-content: center; }
  .photo-help-visual { order: -1; width: 100%; max-height: 260px; overflow: hidden; }
  .photo-help-visual img { max-width: 280px; }
  .handyman-visual img { max-width: 320px; }
  .handyman-contact { justify-content: center; }
  .store-contact-heading h2 { font-size: 39px; }
  .store-contact-grid { grid-template-columns: 1fr; }
  .map-preview, .map-preview iframe { min-height: 300px; }
  .store-contact-actions { display: grid; grid-template-columns: 1fr; }
  .store-contact-actions a { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 8px; margin-top: 28px; }
  .sticky-contact-bar { right: 10px; bottom: 10px; left: 10px; justify-content: space-between; }
  .sticky-contact-bar a { flex: 1; justify-content: center; padding-inline: 7px; font-size: 12px; }
  .products-page-header { min-height: 72px; padding-inline: 18px; }
  .products-page-header img { width: 112px; height: 58px; }
  .products-page-header a, .products-page-header > span { font-size: 12px; }
  .products-page-content { padding-block: 38px 65px; }
  .catalog-controls { grid-template-columns: 1fr; }
  .catalog-result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .catalog-result-grid .product-card { min-height: 275px; padding: 11px; }
  .catalog-result-grid .product-card > a { height: 145px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual img, .department-card, .department-media img, .product-card, .conversion-primary, .conversion-secondary { animation: none !important; transition: none !important; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms), transform 600ms cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
}

/* Digital Workbench phase 1: the header and hero use an editorial canvas,
   while the existing ecommerce sections remain below for the next pass. */
.blue-panel { overflow: visible; background: var(--page, #f7f6f2); color: var(--ink); }
.site-header { position: sticky; top: 0; background: var(--page, #f7f6f2); color: var(--ink); box-shadow: 0 1px 0 rgba(6,47,112,.08); }
.site-header.is-scrolled { background: rgba(247,246,242,.97); box-shadow: 0 8px 24px rgba(3,29,71,.08); }
.utility-bar { display: none; }
.main-header { grid-template-columns: auto minmax(280px, .7fr) auto; min-height: 80px; gap: 42px; direction: rtl; }
.brand-mark { width: 132px; height: 72px; justify-self: start; }
.brand-mark img { filter: none; }
.header-actions { justify-content: flex-end; }
.header-contact-link, .header-icon-link { color: var(--blue-900); }
.header-contact-link.whatsapp { color: #168b45; }
.header-phone { color: var(--blue-900); }
.header-icon-link.cart-link { color: var(--blue-900); }
.search-trigger { display: flex; align-items: center; gap: 10px; width: 100%; min-height: 46px; padding: 0 16px; border: 1px solid rgba(6,47,112,.18); border-radius: 12px; background: #fff; color: var(--muted); cursor: pointer; font-size: 15px; font-weight: 700; text-align: right; }
.search-trigger svg { color: var(--blue-900); }
.search-overlay { position: absolute; top: 100%; right: 0; left: 0; z-index: 30; padding: 30px 0 34px; border-top: 1px solid rgba(6,47,112,.08); background: rgba(247,246,242,.98); box-shadow: 0 22px 35px rgba(3,29,71,.12); animation: search-in 220ms var(--ease-premium, cubic-bezier(.22,1,.36,1)) both; }
.search-overlay-inner { max-width: var(--reading, 1180px); }
.search-overlay-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: var(--blue-900); font-size: 20px; font-weight: 900; }
.search-overlay-heading button { display: grid; width: 40px; height: 40px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--blue-900); cursor: pointer; }
.search-overlay-form { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; min-height: 64px; padding: 0 14px 0 7px; border: 1px solid rgba(6,47,112,.2); border-radius: 14px; background: #fff; }
.search-overlay-form input { width: 100%; border: 0; outline: 0; color: var(--ink); font-size: 22px; }
.search-overlay-form > svg { color: var(--blue-900); }
.search-overlay-form button { min-height: 48px; padding: 0 20px; border: 0; border-radius: 9px; background: var(--yellow); color: #061f5c; cursor: pointer; font-weight: 900; }
.search-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.search-groups div { display: grid; gap: 5px; padding-inline-start: 16px; border-inline-start: 1px solid rgba(6,47,112,.14); }
.search-groups b { color: var(--blue-900); font-size: 14px; }
.search-groups span, .search-groups a { color: var(--muted); font-size: 14px; font-weight: 700; }
@keyframes search-in { from { opacity: 0; transform: translateY(-7px) scale(.99); } to { opacity: 1; transform: translateY(0) scale(1); } }
.primary-nav { border-top: 0; border-bottom: 1px solid rgba(6,47,112,.1); background: var(--page, #f7f6f2); }
.primary-nav-inner { justify-content: flex-start; min-height: 45px; direction: rtl; }
.primary-nav-inner a { min-height: 45px; color: var(--blue-900); font-size: 14px; }
.primary-nav-inner a:hover { background: rgba(6,47,112,.04); color: var(--blue-900); }
.primary-nav-inner .is-current { border-bottom-color: var(--yellow); background: transparent; color: var(--blue-900); }
.primary-nav-inner .is-current::before { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); content: ""; }
.hero-banner { position: relative; min-height: 790px; background: var(--page, #f7f6f2); color: var(--ink); overflow: hidden; }
.hero-grid { position: relative; grid-template-columns: minmax(0, 1.12fr) minmax(470px, .88fr); grid-template-areas: "visual copy"; min-height: 720px; }
.hero-content { align-self: center; padding: 76px 0 112px; }
.hero-eyebrow { color: var(--blue-900); font-size: 15px; letter-spacing: .01em; }
.hero-content h1 { font-size: clamp(72px, 7vw, 128px); line-height: .86; letter-spacing: 0; }
.hero-content h1 span { color: var(--blue-900); }
.hero-content h1 strong { color: var(--yellow); }
.hero-content p { max-width: 560px; margin-top: 28px; color: #344054; font-size: 20px; line-height: 1.55; }
.hero-cta, .hero-ghost-cta { min-height: 52px; border-radius: 10px; }
.hero-ghost-cta { border-color: rgba(6,47,112,.3); color: var(--blue-900); }
.hero-whatsapp-link { color: var(--blue-900); }
.hero-trust-items span { color: #475467; }
.hero-trust-items svg { color: var(--yellow); }
.hero-visual { position: relative; align-self: center; width: 120%; min-height: 560px; margin-inline-start: -15%; padding: 0; overflow: visible; }
.hero-visual img { position: absolute; top: 50%; left: 0; width: 100%; max-width: none; transform: translateY(-50%); filter: drop-shadow(0 26px 28px rgba(3,29,71,.14)); }
.hero-ticker { position: absolute; right: 0; bottom: 0; left: 0; overflow: hidden; border-top: 1px solid rgba(6,47,112,.12); border-bottom: 1px solid rgba(6,47,112,.12); color: var(--blue-900); font-size: 16px; font-weight: 800; white-space: nowrap; }
.hero-ticker > div { display: inline-flex; align-items: center; gap: 25px; min-width: max-content; padding: 17px 0; animation: ticker-move 34s linear infinite; }
.hero-ticker i { color: var(--yellow); font-style: normal; }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(22%); } }

@media (max-width: 1180px) {
  .main-header { grid-template-columns: auto minmax(240px, .7fr) auto; gap: 22px; }
  .hero-grid { grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); }
  .hero-visual { width: 115%; margin-inline-start: -10%; }
}

@media (max-width: 760px) {
  .site-header { position: relative; }
  .main-header { display: grid; grid-template-columns: auto 1fr auto; min-height: 70px; padding-block: 2px 10px; }
  .mobile-menu-button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(6,47,112,.18); border-radius: 10px; background: transparent; color: var(--blue-900); }
  .brand-mark { width: 118px; height: 62px; justify-self: center; }
  .header-actions { gap: 5px; }
  .header-contact-link, .header-icon-link:not(.cart-link) { display: none; }
  .header-icon-link.cart-link { display: inline-flex; }
  .main-header .search-trigger { grid-column: 1 / -1; grid-row: 2; min-height: 48px; }
  .search-overlay { position: fixed; top: 0; bottom: 0; padding-top: 24px; }
  .search-overlay-inner { width: calc(100% - 36px); }
  .search-overlay-form { grid-template-columns: auto minmax(0, 1fr); }
  .search-overlay-form button { grid-column: 1 / -1; width: 100%; }
  .search-groups { grid-template-columns: 1fr; gap: 12px; }
  .search-groups div { border-inline-start: 0; border-bottom: 1px solid rgba(6,47,112,.14); padding: 0 0 10px; }
  .primary-nav-inner { margin-inline: 18px; }
  .hero-banner { min-height: 720px; }
  .hero-grid { display: flex; flex-direction: column; min-height: 680px; }
  .hero-content { align-self: stretch; padding: 51px 0 12px; text-align: center; }
  .hero-content h1 { font-size: 59px; }
  .hero-content p { margin-inline: auto; font-size: 17px; }
  .hero-actions { justify-content: center; }
  .hero-whatsapp-link { justify-content: center; }
  .hero-trust-items { justify-content: center; }
  .hero-visual { width: 125%; min-height: 290px; margin-inline: -12.5%; }
  .hero-visual img { top: 52%; }
  .hero-ticker { font-size: 14px; }
  .hero-ticker > div { gap: 16px; padding-block: 14px; }
}
