:root {
  --ink: #1d2b27;
  --muted: #6b7774;
  --line: #e7ecea;
  --paper: #ffffff;
  --soft: #f4f7f6;
  --brand: #08382f;
  --brand-2: #0f6a58;
  --accent: #b8874a;
  --sale: #c84635;
  --shadow: 0 18px 45px rgba(10, 31, 26, 0.1);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

button, input, select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 9px 18px;
  color: white;
  background: var(--brand);
  font-size: 13px;
  font-weight: 600;
}

.header-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 22px;
}

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

.logo img {
  width: min(250px, 24vw);
  max-height: 74px;
  height: auto;
  object-fit: contain;
  display: block;
}

.search-box input {
  width: min(360px, 100%);
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--soft);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 22px 15px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.page-nav {
  padding: 0;
  justify-content: center;
}

.main-nav a,
.footer-nav a {
  white-space: nowrap;
}

.icon-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  width: 42px;
  height: 42px;
  border-radius: 4px;
}

.hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 560px;
  background: linear-gradient(90deg, #eef4f1 0%, #fff 45%, #eef4f1 100%);
}

.hero-copy {
  align-self: center;
  max-width: 560px;
  padding: 60px clamp(24px, 6vw, 84px);
}

.hero-copy p:first-child,
.section-heading p,
.catalog-toolbar p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p:nth-child(3) {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.button,
.quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  padding: 0 22px;
  color: white;
  background: var(--brand);
  font-weight: 800;
  cursor: pointer;
}

.hero-media {
  min-height: 560px;
}

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

.category-strip,
.content-band,
.policy-band,
.contact-band,
.shop-layout {
  max-width: 1220px;
  margin: 0 auto;
  padding: 70px 22px;
}

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

.section-heading h2,
.catalog-toolbar h2,
.filters h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

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

.category-card {
  display: flex;
  justify-content: space-between;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  background: var(--soft);
  cursor: pointer;
}

.category-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.category-card span {
  color: var(--muted);
  font-size: 13px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 32px;
  padding-top: 20px;
}

.filters {
  position: sticky;
  top: 150px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
  background: white;
}

.filter-button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.filter-button.active {
  color: var(--brand);
  font-weight: 800;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.catalog-toolbar select {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 12px;
  background: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 30px 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  height: 100%;
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 3px;
  padding: 5px 8px;
  color: white;
  background: var(--sale);
  font-size: 12px;
  font-weight: 800;
}

.product-info {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  align-content: start;
  gap: 8px;
  min-height: 190px;
  padding: 13px 2px 0;
}

.product-info h3 {
  display: -webkit-box;
  min-height: 58px;
  max-height: 58px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.product-category {
  min-height: 15px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.price {
  display: block;
  margin: 0;
  color: var(--brand-2);
  font-size: 15px;
  font-weight: 800;
}

.product-options {
  display: -webkit-box;
  min-height: 34px;
  max-height: 34px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.quick-view {
  width: 100%;
  min-height: 38px;
  margin-top: 2px;
  background: var(--ink);
  font-size: 13px;
}

.content-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  border-top: 1px solid var(--line);
}

.content-copy p,
.policy-content p,
.contact-band p {
  color: var(--muted);
  line-height: 1.75;
}

.leadership-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  max-width: 1220px;
  margin: 70px auto;
  padding: 0 22px;
  background: white;
}

.leadership-media {
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  background: #edf3f6;
}

.leadership-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  background: #edf3f6;
}

.leadership-copy {
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(34px, 5vw, 60px);
  background: white;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.leadership-copy h2 {
  margin: 0;
  color: #08264d;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.05;
}

.leadership-role {
  margin: 14px 0 26px;
  color: #b7892c;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.leadership-copy > p:not(.section-kicker):not(.leadership-role) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.leadership-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.leadership-points span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--brand);
  background: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.company-contact {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.company-contact div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
}

.company-contact dt {
  color: var(--ink);
  font-weight: 800;
}

.company-contact dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.company-contact a {
  color: var(--brand);
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  background: var(--soft);
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 26px;
}

.policy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.policy-tabs button {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 13px;
  background: white;
  cursor: pointer;
}

.policy-tabs button.active {
  color: white;
  border-color: var(--brand);
  background: var(--brand);
}

.policy-content {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
  background: white;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.contact-panel {
  border-radius: 6px;
  padding: 28px;
  color: white;
  background: var(--brand);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel a {
  color: white;
  font-weight: 800;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 42px 22px;
  color: white;
  background: var(--ink);
}

.site-footer img {
  width: 180px;
}

#footerNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-legal {
  display: grid;
  justify-items: center;
  gap: 4px;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.footer-legal p {
  margin: 0;
}

.page-shell {
  max-width: 1120px;
  min-height: 58vh;
  margin: 0 auto;
  padding: 42px 22px 76px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand);
  font-weight: 700;
}

.static-page {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 46px);
  background: white;
}

.static-page h1 {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
}

.about-company-page {
  overflow: hidden;
}

.about-company-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 38px;
}

.about-company-intro h2,
.about-contact-panel h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.about-company-intro p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.about-company-intro img {
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.about-company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-company-grid div {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: var(--soft);
}

.about-company-grid h3 {
  margin: 0 0 10px;
  color: var(--brand);
}

.about-company-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-contact-panel {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 36px);
  background: white;
}

.static-content {
  color: var(--ink);
  line-height: 1.72;
}

.static-content p,
.static-content li,
.static-content div {
  max-width: 920px;
}

.static-content p {
  margin: 0 0 18px;
}

.static-content h2,
.static-content h3,
.static-content h4 {
  margin: 30px 0 12px;
  line-height: 1.2;
}

.static-content ul,
.static-content ol {
  padding-left: 22px;
}

.static-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 16px 0;
  border-radius: 6px;
}

.contact-form {
  max-width: 620px;
}

.contact-info-panel {
  max-width: 760px;
  margin: 24px 0 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
  background: var(--soft);
}

.contact-info-panel p {
  margin: 0 0 10px;
}

.contact-info-panel p:last-child {
  margin-bottom: 0;
}

.contact-info-panel a {
  color: var(--brand);
  font-weight: 800;
}

.contact-form fieldset,
.contact-form [aria-hidden="true"] {
  display: none;
}

.contact-form input:not([type="submit"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.form-status {
  max-width: 620px;
  border-radius: 4px;
  padding: 12px 14px;
  font-weight: 700;
}

.form-status-success {
  background: #e8f5ef;
  color: var(--brand);
}

.form-status-error {
  background: #fff1ed;
  color: #b43222;
}

.static-page-shop .static-content,
.static-page-cart .static-content,
.static-page-checkout .static-content,
.static-page-my-account .static-content,
.static-page-wishlist .static-content,
.static-page-compare .static-content {
  min-height: 260px;
}

.shop-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.shop-page-head h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.shop-controls input,
.shop-controls select,
.account-form input {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 12px;
  background: white;
}

.shop-page-layout {
  max-width: none;
  padding: 0;
}

.load-more {
  margin-top: 28px;
}

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

.account-grid-login-only {
  grid-template-columns: minmax(280px, 620px);
}

.account-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  background: var(--soft);
}

.account-form label:not(.checkbox) {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.form-row,
.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: 14px;
  min-height: 360px;
}

.checkout-steps {
  width: 100%;
  justify-content: flex-start;
  color: var(--muted);
  font-weight: 800;
}

.checkout-steps span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 12px;
}

.product-page-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 36px;
}

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

.product-page-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.product-page-summary {
  position: static;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
  background: white;
}

.product-page-summary h1 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
}

.product-page-summary .product-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-page-summary .product-category a {
  color: var(--brand);
  font-weight: 800;
}

.product-description {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.product-description-inner {
  max-width: 980px;
}

.product-specs-list-container {
  margin: 0 0 28px;
}

.product-specs-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  list-style: none;
}

.product-prop {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  min-height: 42px;
  margin: 0;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.product-prop:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.property-title {
  color: var(--muted);
  font-weight: 700;
}

.property-desc {
  text-align: right;
  font-weight: 700;
}

.detailmodule_html,
.detail-desc-decorate-richtext,
#detail_decorate_root {
  max-width: 980px;
}

.product-description img {
  max-width: 100%;
  height: auto;
  margin: 0 0 12px;
  border-radius: 6px;
}

.product-description table {
  width: 100%;
  max-width: 980px;
  margin: 18px 0;
  border-collapse: collapse;
}

.product-description td,
.product-description th {
  border: 1px solid var(--line);
  padding: 10px 12px;
}

.product-description [class*="magic-"] {
  max-width: 100%;
}

.product-description .J_module {
  max-width: 980px;
}

.description-lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.generated-product-description h3 {
  margin: 28px 0 14px;
  font-size: 24px;
}

.generated-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0 0 24px;
}

.generated-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.generated-detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
}

.category-grid {
  margin-top: 26px;
}

.qty-label {
  display: grid;
  gap: 8px;
  max-width: 160px;
  margin: 18px 0;
  font-weight: 800;
}

.qty-label input,
.cart-row input {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 10px;
}

.cart-page #cartItems {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  width: 100%;
}

.cart-table {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 86px 100px auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: white;
}

.cart-row img {
  width: 92px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.cart-row h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.cart-row p {
  margin: 4px 0;
  color: var(--muted);
}

.cart-row button {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 12px;
  background: white;
  cursor: pointer;
}

.cart-summary,
.empty-cart-message {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: var(--soft);
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.product-dialog {
  width: min(980px, calc(100vw - 34px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(8, 20, 17, 0.55);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  font-size: 24px;
  cursor: pointer;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 30px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.detail-gallery img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-copy h2 {
  margin: 0 34px 12px 0;
  font-size: 28px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.detail-meta span {
  border-radius: 3px;
  padding: 6px 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
}

.detail-description {
  max-height: 260px;
  overflow: auto;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .topbar { display: none; }
  .header-main {
    grid-template-columns: auto 1fr auto;
  }
  .icon-button { display: inline-grid; place-items: center; }
  .search-box { display: none; }
  .header-actions { display: none; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 22px 20px;
  }
  .main-nav.open { display: flex; }
  .hero,
  .shop-layout,
  .content-band,
  .leadership-band,
  .contact-band,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .hero-media { min-height: 360px; }
  .leadership-band {
    margin: 50px auto;
    gap: 20px;
  }
  .leadership-media {
    align-self: auto;
  }
  .leadership-media img {
    height: auto;
    min-height: 0;
  }
  .filters { position: static; }
  .product-grid,
  .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .header-main {
    padding: 14px 16px;
  }
  .logo img { width: 178px; }
  .hero-copy { padding: 42px 20px; }
  .hero-media { min-height: 280px; }
  .leadership-media {
    padding: 10px;
  }
  .leadership-copy {
    padding: 34px 20px;
  }
  .company-contact div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .category-strip,
  .content-band,
  .leadership-band,
  .policy-band,
  .contact-band,
  .shop-layout {
    padding: 46px 16px;
  }
  .section-heading,
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .product-grid,
  .category-list,
  .about-company-grid,
  .stat-grid,
  .account-grid,
  .product-page-detail,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .about-company-intro {
    grid-template-columns: 1fr;
  }

  .shop-page-head {
    align-items: stretch;
    flex-direction: column;
  }

  .product-page-summary {
    position: static;
  }

  .cart-page #cartItems,
  .cart-row {
    grid-template-columns: 1fr;
  }
}
