/**
 * OPEX storefront — Industrial Standard layout (Ironclad / stitch adapted)
 */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

/* Top bar */
.topbar {
  background: var(--opex-surface-high);
  color: var(--opex-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.topbar__inner {
  display: none;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}
@media (min-width: 900px) {
  .topbar__inner { display: flex; }
}
.topbar__left,
.topbar__right {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
}
.topbar__item .material-symbols-outlined {
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--opex-border);
  box-shadow: 0 1px 0 rgba(30, 30, 30, 0.04);
}
.site-header__bar {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-block: 0.7rem 0.85rem;
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.logo {
  font-family: var(--opex-font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.85rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--opex-black);
  white-space: nowrap;
}
.logo__tld { color: var(--opex-accent); }
.logo--footer { color: #fff; }

.search-form {
  display: block;
  position: relative;
  width: 100%;
  max-width: none;
}
.search-form__input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--opex-border);
  border-radius: 8px;
  padding: 0 2.75rem 0 1rem;
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.search-form__input:focus {
  outline: none;
  border-color: var(--opex-black);
  box-shadow: 0 0 0 1px var(--opex-black);
  background: #fff;
}
.search-form__icon {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--opex-muted);
  padding: 0.35rem;
  cursor: pointer;
  border-radius: 6px;
}
.search-form__icon:hover { color: var(--opex-black); background: var(--opex-surface-low); }

.header-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--opex-muted);
  border-radius: 8px;
}
.header-icon:hover { color: var(--opex-black); background: var(--opex-surface-low); }
.header-icon .material-symbols-outlined { font-size: 1.45rem; }
.header-link--btn {
  height: 40px;
  padding: 0 0.85rem;
  border: 1px solid var(--opex-border);
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.header-link--desk { display: none; }

.nav-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--opex-border);
  border-radius: 8px;
  background: #fff;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--opex-black);
  border-radius: 1px;
}

@media (min-width: 900px) {
  .site-header__bar {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
    padding-block: 0.85rem;
  }
  .site-header__row {
    display: contents;
  }
  .site-header__actions {
    justify-self: end;
    gap: 0.35rem;
  }
  .search-form {
    max-width: 42rem;
    margin-inline: auto;
  }
  .search-form__input { height: 48px; }
  .header-link--desk { display: inline-flex; align-items: center; }
  .nav-toggle { display: none; }
}

.cat-strip {
  border-top: 1px solid var(--opex-border);
  background: #fff;
}
.cat-strip__inner {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.65rem 0;
  font-size: 0.95rem;
}
.cat-strip a {
  white-space: nowrap;
  color: var(--opex-muted);
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}
.cat-strip a:hover,
.cat-strip a.is-active {
  color: var(--opex-black);
  font-weight: 700;
  border-bottom-color: var(--opex-black);
}

/* Home shell — one content column width for all sections */
.home-storefront {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem 0 2.5rem;
  background: var(--opex-bg);
}
.home-storefront__stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.home-storefront .section {
  padding: 0;
}
.section__head--plain {
  margin-bottom: 1rem;
  align-items: center;
}
.section__head--ruled {
  border-bottom: 1px solid var(--opex-border);
  padding-bottom: 0.65rem;
  margin-bottom: 1.15rem;
  align-items: end;
}
.section__link--caps {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--opex-black);
}
.section__title {
  font-family: var(--opex-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Hero bento */
.hero-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  min-height: 0;
}
@media (min-width: 900px) {
  .hero-bento {
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    min-height: 480px;
  }
}
.hero-bento__main,
.hero-bento__tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--opex-border);
  border-radius: var(--opex-radius-md);
  background: var(--opex-surface-container);
  color: #fff;
  min-height: 260px;
}
.hero-bento__main {
  min-height: 360px;
}
.hero-bento__side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 900px) {
  .hero-bento__side { gap: 1.25rem; }
  .hero-bento__tile { flex: 1; min-height: 0; }
}
.hero-bento__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}
.hero-bento__tile .hero-bento__img {
  object-position: center;
}
.hero-bento__main:hover .hero-bento__img,
.hero-bento__tile:hover .hero-bento__img {
  transform: scale(1.05);
}
.hero-bento__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 30, 0.88), rgba(30, 30, 30, 0.15));
}
.hero-bento__veil--main {
  background: linear-gradient(90deg, rgba(30, 30, 30, 0.92), rgba(30, 30, 30, 0.35));
}
.hero-bento__copy,
.hero-bento__tile-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.35rem;
}
.hero-bento__copy {
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 34rem;
}
.hero-bento__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffdad6;
  margin-bottom: 0.5rem;
}
.hero-bento__copy h1 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.85rem, 1.3rem + 2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 12ch;
}
.hero-bento__copy p {
  margin: 0 0 1.25rem;
  color: rgba(253, 248, 248, 0.82);
  max-width: 36ch;
}
.hero-bento__tile-copy strong {
  font-family: var(--opex-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Trust */
.trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--opex-border);
  border-radius: var(--opex-radius-md);
  background: var(--opex-surface-low);
  overflow: hidden;
}
@media (min-width: 640px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .trust-bar { grid-template-columns: repeat(4, 1fr); }
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(196, 199, 199, 0.55);
}
@media (min-width: 640px) {
  .trust-bar__item:nth-child(-n + 2) { border-top: 0; }
  .trust-bar__item:nth-child(even) { border-left: 1px solid rgba(196, 199, 199, 0.55); }
}
@media (min-width: 1024px) {
  .trust-bar__item { border-top: 0; }
  .trust-bar__item + .trust-bar__item { border-left: 1px solid rgba(196, 199, 199, 0.55); }
}
.trust-bar__item .material-symbols-outlined {
  font-size: 1.85rem;
  color: var(--opex-black);
}
.trust-bar__item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--opex-black);
}
.trust-bar__item span:last-child {
  display: block;
  font-size: 0.875rem;
  color: var(--opex-muted);
  margin-top: 0.15rem;
}

/* Category icon cards */
.cat-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .cat-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.cat-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 148px;
  padding: 1.5rem 1rem;
  background: var(--opex-surface-low);
  border: 1px solid var(--opex-border);
  border-radius: var(--opex-radius-md);
  text-align: center;
  color: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.cat-icon-card:hover {
  border-color: var(--opex-black);
  box-shadow: var(--opex-shadow-md);
  color: inherit;
}
.cat-icon-card__icon {
  font-size: 2.75rem;
  color: var(--opex-black);
  transition: transform 180ms ease;
}
.cat-icon-card:hover .cat-icon-card__icon {
  transform: scale(1.08);
}
.cat-icon-card__name {
  font-family: var(--opex-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cat-icon-card__meta {
  font-size: 0.8rem;
  color: var(--opex-muted);
}

/* Product cards — storefront */
.grid--products-4 {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid--products-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .grid--products-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--opex-surface);
  border: 1px solid var(--opex-border);
  border-radius: var(--opex-radius-md);
  overflow: hidden;
  transition: box-shadow 160ms ease;
}
.product-card:hover {
  box-shadow: var(--opex-shadow-md);
}
.product-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 1rem 0;
}
.product-card__brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--opex-tint);
}
.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 0.75rem 1rem;
  background: var(--opex-surface);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  align-items: stretch;
}
.product-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a { color: inherit; }
.product-card .price {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.product-card .price__old {
  font-size: 0.875rem;
  color: var(--opex-muted);
  text-decoration: line-through;
}
.product-card .price__current {
  font-family: var(--opex-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--opex-black);
}
.product-card .price__current--sale {
  color: var(--opex-action);
}
.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0.75rem 0 0;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: center;
}

.badge--sale {
  background: var(--opex-action);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

.btn--action {
  background: var(--opex-action);
  color: #fff;
  border-color: var(--opex-action);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: var(--opex-radius-md);
}
.btn--action:hover {
  background: var(--opex-action-hover);
  border-color: var(--opex-action-hover);
  color: #fff;
}

/* Brand ticker */
.brand-ticker {
  background: var(--opex-surface-low);
  border-block: 1px solid var(--opex-border);
  padding: 1.15rem 0;
}
.brand-ticker .container,
.brand-ticker__inner.container,
.home-storefront .brand-ticker .container {
  width: 100%;
  max-width: var(--opex-container, 1280px);
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .brand-ticker .container,
  .brand-ticker__inner.container,
  .home-storefront .brand-ticker .container {
    padding-inline: 1.5rem;
  }
}
.brand-ticker__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
.brand-ticker__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  height: 3rem;
  opacity: 0.78;
  transition: opacity 160ms ease, transform 160ms ease;
}
.brand-ticker__item:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.brand-ticker__logo {
  display: block;
  width: auto;
  max-width: 7.5rem;
  height: 2.35rem;
  object-fit: contain;
}
.brand-ticker__item--text {
  font-family: var(--opex-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--opex-tint);
  white-space: nowrap;
}
.brand-ticker__item--text:hover {
  color: var(--opex-black);
}

/* ——— Contact ——— */
.contact-details h2,
.contact-form h2 {
  font-size: var(--opex-text-xl);
  margin: 0 0 0.5rem;
}
.contact-details {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.contact-details__list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.95rem;
  margin: 0;
}
.contact-details__list dt {
  margin: 0 0 0.2rem;
  font-size: 0.8rem;
}
.contact-details__list dd {
  margin: 0;
  line-height: 1.45;
}
.contact-details__list a {
  color: inherit;
  text-decoration: none;
}
.contact-details__list a:hover {
  color: var(--opex-action);
  text-decoration: underline;
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form__hint {
  font-size: 0.85rem;
  margin: 0;
}

/* ——— Articles / Savjeti ——— */
.page-hero--articles {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(232, 117, 31, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f4f1 0%, #f3f1ee 100%);
  border-bottom: 1px solid var(--opex-border);
  padding: 2.25rem 0 2rem;
}
.page-hero__eyebrow,
.article-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--opex-action);
}
.page-hero--articles h1 {
  max-width: 18ch;
}
.page-hero--articles p {
  max-width: 42ch;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .articles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.articles-grid--home {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .articles-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid var(--opex-border);
  border-radius: var(--opex-radius-md);
  background:
    linear-gradient(180deg, #fff 0%, #faf9f7 100%);
  color: inherit;
  text-decoration: none;
  min-height: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.article-card:hover {
  border-color: #d2d0c8;
  box-shadow: var(--opex-shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.article-card__tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--opex-action);
}
.article-card__title {
  margin: 0;
  font-family: var(--opex-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--opex-black);
}
.article-card__excerpt {
  margin: 0;
  color: var(--opex-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.article-card__more {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--opex-black);
}
.article-card--compact {
  padding: 1.1rem 1.15rem;
  min-height: 0;
}
.article-card--compact .article-card__title {
  font-size: 1.05rem;
}
.article-card--compact .article-card__excerpt {
  -webkit-line-clamp: 2;
}

.article-hero {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(17, 19, 21, 0.06), transparent 50%),
    linear-gradient(180deg, #f6f3ef 0%, #f1eeea 100%);
  border-bottom: 1px solid var(--opex-border);
  padding: 1.25rem 0 2.25rem;
}
.article-hero__inner {
  max-width: 760px;
}
.breadcrumbs--on-hero {
  margin: 0 0 1.25rem;
}
.article-hero__title {
  margin: 0;
  font-family: var(--opex-font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--opex-black);
  max-width: 18ch;
}
.article-hero__lead {
  margin: 1rem 0 0;
  max-width: 48ch;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--opex-muted);
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.35rem;
  font-size: 0.88rem;
  color: var(--opex-muted);
}
.article-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.article-hero__meta .material-symbols-outlined {
  font-size: 1.05rem;
}

.article-layout {
  padding-block: 2.25rem 3rem;
}
.article-main {
  max-width: 720px;
}

.article-body.prose {
  max-width: none;
  display: grid;
  gap: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--opex-text);
}
.article-body.prose > p {
  margin: 0 0 1.15rem;
}
.article-body.prose > p:first-child {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--opex-dark);
}
.article-body.prose h2 {
  margin: 2.1rem 0 0.85rem;
  font-family: var(--opex-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--opex-black);
  padding-top: 0.35rem;
  border-top: 1px solid var(--opex-border);
}
.article-body.prose h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
.article-body.prose a {
  color: var(--opex-action);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article-body.prose a:hover {
  color: var(--opex-action-hover);
}
.article-list {
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem 1rem 2.1rem;
  background: #f7f5f2;
  border: 1px solid var(--opex-border);
  border-radius: var(--opex-radius-md);
  display: grid;
  gap: 0.55rem;
}
.article-list li {
  margin: 0;
  padding-left: 0.15rem;
  line-height: 1.5;
}

.article-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--opex-border);
}
.article-related__title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.article-related__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.article-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--opex-border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--opex-text);
  text-decoration: none;
}
.article-chip:hover {
  border-color: var(--opex-action);
  color: var(--opex-action);
}

.article-cta {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--opex-radius-md);
  background:
    linear-gradient(135deg, #17191c 0%, #2a2e33 100%);
  color: #f4f2ee;
}
.article-cta__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8751f;
}
.article-cta__title {
  margin: 0;
  font-family: var(--opex-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.article-cta__text {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
  line-height: 1.5;
}
.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.article-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}
.article-cta .btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
@media (min-width: 720px) {
  .article-cta {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 1.75rem 1.85rem;
  }
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--opex-black);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0 1.25rem;
  border-top: 4px solid var(--opex-tint);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.site-footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.75rem;
}
.site-footer__tag {
  margin: 0.75rem 0 0;
  max-width: 28ch;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.site-footer__list a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}
.site-footer__list a:hover { color: #fff; }
.site-footer__legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ——— Mobile premium polish ——— */
@media (max-width: 767px) {
  .container {
    padding-inline: 1rem;
  }

  .home-storefront {
    gap: 1.35rem;
    padding: 1rem 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
  }
  .home-storefront__stack {
    gap: 1.35rem;
  }

  .cat-strip__inner {
    gap: 0.15rem;
    padding: 0.45rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, #000 85%, transparent);
  }
  .cat-strip__inner::-webkit-scrollbar { display: none; }
  .cat-strip a,
  .cat-strip__link {
    font-size: 0.8rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: var(--opex-surface-low);
    border-bottom: 0;
    color: var(--opex-muted);
  }
  .cat-strip a:hover,
  .cat-strip a.is-active,
  .cat-strip__link:hover {
    background: var(--opex-black);
    color: #fff;
    font-weight: 700;
  }

  .hero-bento {
    gap: 0.65rem;
  }
  .hero-bento__main {
    min-height: 380px;
    border-radius: 12px;
  }
  .hero-bento__tile {
    min-height: 148px;
    border-radius: 12px;
  }
  .hero-bento__copy {
    justify-content: flex-end;
    padding: 1.25rem 1.15rem 1.35rem;
    max-width: none;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 14, 14, 0.55) 38%, rgba(10, 10, 10, 0.92) 100%);
  }
  .hero-bento__veil--main {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.15), rgba(10, 10, 10, 0.45));
  }
  .hero-bento__copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    max-width: 11ch;
    margin-bottom: 0.55rem;
  }
  .hero-bento__copy p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    max-width: 34ch;
  }
  .hero-bento__copy .btn--action {
    min-height: 46px;
    padding-inline: 1.15rem;
  }
  .hero-bento__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .hero-bento__tile-copy {
    padding: 0.85rem;
  }
  .hero-bento__tile-copy strong {
    font-size: 0.92rem;
    line-height: 1.2;
  }
  .hero-bento__kicker {
    font-size: 0.62rem;
    margin-bottom: 0.25rem;
  }

  .trust-bar {
    border-radius: 12px;
    overflow: hidden;
  }
  .trust-bar__item {
    padding: 0.85rem 0.9rem;
    gap: 0.6rem;
  }
  .trust-bar__item .material-symbols-outlined {
    font-size: 1.55rem;
  }
  .trust-bar__item strong {
    font-size: 0.7rem;
  }
  .trust-bar__item span:last-child {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .section__title {
    font-size: 1.35rem;
  }
  .section__head--ruled,
  .section__head--plain {
    margin-bottom: 0.85rem;
    gap: 0.5rem;
  }
  .section__link--caps {
    font-size: 0.68rem;
  }

  .cat-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .cat-icon-card {
    min-height: 124px;
    padding: 1.1rem 0.75rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(30, 30, 30, 0.03);
  }
  .cat-icon-card__icon {
    font-size: 2.15rem;
  }
  .cat-icon-card__name {
    font-size: 0.95rem;
  }
  .cat-icon-card__meta {
    font-size: 0.74rem;
  }

  .grid--products,
  .grid--products-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .product-card {
    border-radius: 12px;
    background: #fff;
  }
  .product-card__top {
    padding: 0.65rem 0.65rem 0;
  }
  .product-card__brand {
    font-size: 0.62rem;
  }
  .product-card__media {
    padding: 0.35rem 0.55rem;
  }
  .product-card__body {
    padding: 0 0.65rem 0.7rem;
    gap: 0.35rem;
  }
  .product-card__title {
    font-size: 0.82rem;
    line-height: 1.3;
    min-height: 2.15em;
  }
  .product-card .price__current {
    font-size: 0.95rem;
  }
  .product-card .price__old {
    font-size: 0.72rem;
  }
  .product-card__cta,
  .btn--action {
    margin-top: 0.45rem;
    padding: 0.7rem 0.45rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    border-radius: 8px;
    min-height: 40px;
  }

  .brand-ticker {
    padding: 0.95rem 0;
  }
  .brand-ticker__inner {
    gap: 1.1rem;
    justify-content: flex-start;
  }
  .brand-ticker__item {
    min-width: 5.25rem;
    height: 2.5rem;
  }
  .brand-ticker__logo {
    max-width: 5.75rem;
    height: 1.85rem;
  }
  .brand-ticker__item--text {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .mega-panel {
    position: fixed;
    inset: 0;
    z-index: 60;
    max-height: none;
    overflow: auto;
    background: rgba(253, 248, 248, 0.98);
    padding-top: env(safe-area-inset-top, 0);
  }
  .mega-panel__inner {
    padding: 1rem 0 2rem;
  }
  .mega-panel__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 0.85rem;
  }

  .page-hero {
    padding: 1.25rem 0;
  }
  .page-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .site-footer {
    padding: 2rem 0 1.5rem;
  }
  .site-footer__grid {
    gap: 1.25rem;
  }

  .grid--2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 380px) {
  .hero-bento__side {
    grid-template-columns: 1fr;
  }
  .hero-bento__tile { min-height: 120px; }
  .product-card__cta {
    font-size: 0.58rem;
  }
}
