:root {
  --bg: #fafafa;
  --bg-soft: #f4f4f5;
  --surface: #ffffff;
  --surface-muted: #fbfbfb;
  --ink: #18181b;
  --ink-soft: #52525b;
  --line: #e4e4e7;
  --brand: #18181b;
  --brand-strong: #000000;
  --accent: #d4a373;
  /* A soft earthy beige/gold for minimal clothing brand */
  --success: #15803d;
  --danger: #b91c1c;
  --warning: #b45309;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --content-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 3000;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus-visible {
  left: 0.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-wordmark,
.section-title {
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0;
}

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

a:hover {
  color: inherit;
}

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

.container {
  width: min(100% - 2rem, var(--content-max));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 3rem, var(--content-max));
  }
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--brand);
}

.section-title {
  font-size: clamp(1.5rem, 6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-copy {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 0.55rem;
}

.page-shell {
  padding: 0.5rem 0 3.5rem;
}

@media (min-width: 768px) {
  .page-shell {
    padding: 1.1rem 0 3.5rem;
  }
}

.page-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.page-head-count {
  font-size: 0.84rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.72rem 1.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-dark,
.btn-primary {
  border: 1px solid var(--brand);
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover,
.btn-primary:hover,
.btn-dark:focus-visible,
.btn-primary:focus-visible {
  color: #fff;
  background: var(--brand-strong);
  box-shadow: var(--shadow-md);
}

.btn-outline-dark {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-warning {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(130deg, var(--accent), #c2410c);
}

.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 0.72rem 0.88rem;
  font-size: 0.95rem;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.15rem rgba(24, 24, 27, 0.15);
}

.top-banner {
  border-bottom: 1px solid var(--line);
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: "Outfit", sans-serif;
}

.top-banner-inner {
  min-height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.site-header-main {
  min-height: 4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.brand-link {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: max-content;
}

.brand-wordmark {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-tag {
  color: var(--ink-soft);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-search {
  position: relative;
}

.header-search input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  min-height: 2.6rem;
  padding: 0.6rem 0.9rem 0.6rem 2.5rem;
}

.header-search svg {
  position: absolute;
  left: 0.82rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #64748b;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.icon-btn svg {
  width: 1.08rem;
  height: 1.08rem;
}

.desktop-links a,
.desktop-links button {
  border: 1px solid transparent;
  background: transparent;
  padding: 0.5rem 0.82rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.3s ease;
}

.desktop-links a:hover,
.desktop-links button:hover {
  color: var(--accent);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.mobile-nav a,
.mobile-nav button {
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
  text-align: left;
}

.desktop-links {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.desktop-links button,
.mobile-nav button {
  cursor: pointer;
}

.hero-grid {
  display: grid;
  gap: 1rem;
}

.hero-panel,
.promo-panel,
.surface-card,
.auth-card,
.checkout-card,
.summary-card,
.filter-panel,
.product-detail-panel,
.gallery-panel,
.cart-item-card,
.cart-summary,
.empty-state,
.notice-card {
  background: var(--surface);
  border: 1px solid #deE5ed;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero-panel {
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18), transparent 70%);
}

.hero-title {
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 0.35rem;
  max-width: 14ch;
}

.hero-copy {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .hero-copy {
    line-height: 1.72;
    font-size: 1rem;
    margin-top: 0.7rem;
  }
}

.hero-cta-row {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 576px) {
  .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero-stats {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  padding: 0.6rem 0.75rem;
}

.hero-stat strong {
  display: block;
  font-size: 0.9rem;
}

.hero-stat span {
  color: #64748b;
  font-size: 0.75rem;
}

.hero-banner {
  border-radius: calc(var(--radius-lg) - 6px);
  min-height: 12rem;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-banner {
    min-height: 17.5rem;
  }

  .hero-stat strong {
    font-size: 1rem;
  }
}

.promo-strip {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.7rem;
}

.promo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #dae3ec;
  background: linear-gradient(145deg, #fff, #f8fafc);
  padding: 0.9rem;
}

.promo-card h3 {
  font-size: 1rem;
  margin-top: 0.35rem;
}

.promo-card p {
  color: var(--ink-soft);
  margin-top: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.promo-card .link-arrow {
  margin-top: 0.5rem;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.section-space {
  margin-top: 1rem;
}

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

.product-card {
  background: #fff;
  border: 1px solid #dce4ed;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-media-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f1f5f9;
  overflow: hidden;
}

.product-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  background: rgba(11, 94, 88, 0.92);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.product-wishlist {
  position: absolute;
  right: 0.58rem;
  top: 0.58rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #d8e2eb;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-wishlist svg {
  width: 0.95rem;
  height: 0.95rem;
}

.product-body {
  padding: 0.78rem;
}

.product-label {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.65rem;
  font-weight: 800;
}

.product-title {
  margin-top: 0.34rem;
  font-size: 0.93rem;
  line-height: 1.34;
  min-height: 2.5em;
}

.product-rating {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #475569;
  font-size: 0.75rem;
}

.rating-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
}

.product-price-row {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem;
}

.price-main {
  font-size: 0.96rem;
  font-weight: 800;
}

.price-strike {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 0.8rem;
}

.price-save {
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--success);
  border: 1px solid #bbf7d0;
  padding: 0.1rem 0.42rem;
  font-size: 0.68rem;
  font-weight: 700;
}

.product-actions {
  margin-top: 0.62rem;
  display: flex;
  gap: 0.5rem;
}

.product-actions .btn {
  font-size: 0.76rem;
  padding: 0.48rem 0.65rem;
}

.subtle-link {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.82rem;
}

.shop-layout,
.category-layout {
  display: grid;
  gap: 0.9rem;
}

.filter-panel {
  padding: 0.95rem;
}

.filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-form {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.75rem;
}

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

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.filter-chip {
  border-radius: 999px;
  border: 1px solid #d3dce6;
  background: #f8fafc;
  padding: 0.27rem 0.55rem;
  font-size: 0.71rem;
  color: #475569;
}

.empty-state {
  padding: 1.35rem;
  text-align: center;
}

.empty-state h2 {
  font-size: 1.35rem;
  margin-top: 0.5rem;
}

.empty-state p {
  margin-top: 0.45rem;
  color: #64748b;
}

.product-page-grid {
  display: grid;
  gap: 1rem;
}

.gallery-panel,
.product-detail-panel {
  padding: 0.9rem;
}

.gallery-main {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #dce5ee;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.thumb-row {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.thumb-btn {
  border: 1px solid #d7e0ea;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.thumb-btn.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.18);
}

.thumb-btn img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  color: #64748b;
  font-size: 0.8rem;
}

.detail-title {
  margin-top: 0.45rem;
  font-size: clamp(1.35rem, 4.2vw, 2.2rem);
  line-height: 1.1;
}

.detail-sub {
  margin-top: 0.65rem;
  color: #64748b;
  line-height: 1.72;
}

.detail-tags {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.detail-tag {
  border-radius: 999px;
  border: 1px solid #d8e2ec;
  background: #f8fafc;
  padding: 0.3rem 0.6rem;
  font-size: 0.74rem;
  color: #475569;
}

.price-block {
  margin-top: 0.9rem;
  border: 1px solid #d9e3ec;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 0.8rem;
}

.price-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price-final {
  font-size: 1.35rem;
  font-weight: 800;
}

.price-note {
  margin-top: 0.4rem;
  color: #64748b;
  font-size: 0.84rem;
}

.detail-section {
  margin-top: 0.9rem;
  border: 1px solid #dce5ee;
  border-radius: var(--radius-md);
  padding: 0.8rem;
  background: #fff;
}

.detail-section h2 {
  font-size: 1.03rem;
}

.detail-section p,
.detail-section li,
.detail-section dd {
  color: #526277;
  line-height: 1.7;
}

.detail-actions {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.cart-layout {
  display: grid;
  gap: 0.85rem;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 0.78rem;
  padding: 0.7rem;
  align-items: start;
}

.cart-item-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dbe4ec;
}

.cart-item-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cart-item-title {
  font-size: 1.02rem;
}

.cart-meta,
.cart-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #64748b;
  font-size: 0.78rem;
}

.cart-price-row {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cart-controls {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cart-qty-input {
  max-width: 82px;
  border-radius: 10px;
}

.cart-remove-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #d6dfe8;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-btn svg {
  width: 1rem;
  height: 1rem;
}

.cart-summary {
  padding: 0.95rem;
  position: sticky;
  top: 5.4rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0;
  color: #334155;
}

.checkout-layout {
  display: grid;
  gap: 0.95rem;
}

.checkout-card,
.summary-card,
.auth-card {
  padding: 1rem;
}

.summary-list {
  margin-top: 0.65rem;
  border-top: 1px solid #e2e8f0;
}

.summary-item {
  padding: 0.55rem 0;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.auth-shell {
  max-width: 560px;
  margin-inline: auto;
}

.auth-copy {
  color: #64748b;
  margin-top: 0.55rem;
  line-height: 1.66;
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid #dae3ec;
  background: #0f172a;
  color: #d9e2ef;
}

.footer-main {
  padding: 2rem 0 1.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.footer-brand {
  color: #fff;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
}

.footer-copy {
  margin-top: 0.55rem;
  color: #9fb1c8;
  line-height: 1.75;
  max-width: 52ch;
}

.footer-heading {
  color: #f1f5f9;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

.footer-links a {
  color: #b9c9dc;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  min-height: 3.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.8rem;
}

.toast-container-custom {
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2000;
  display: grid;
  gap: 0.4rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease var(--reveal-delay, 0ms), transform 0.45s ease var(--reveal-delay, 0ms);
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-option {
  cursor: pointer;
}

.size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  min-width: 3rem;
}

.size-radio:checked+.size-pill {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.size-radio:focus-visible+.size-pill {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (min-width: 576px) {
  .grid-products {
    gap: 0.85rem;
  }

  .product-body {
    padding: 0.85rem;
  }
}

@media (min-width: 768px) {
  .site-header-main {
    min-height: 4.4rem;
    gap: 1rem;
  }

  .hero-panel {
    padding: 1.4rem;
  }

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

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

  .checkout-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    align-items: start;
  }

  .checkout-card,
  .summary-card,
  .auth-card {
    padding: 1.8rem;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .desktop-links {
    display: inline-flex;
  }

  .mobile-menu-toggle,
  .mobile-nav {
    display: none;
  }

  .site-header-main {
    grid-template-columns: auto minmax(260px, 500px) 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
  }

  .shop-layout,
  .category-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
  }

  .product-page-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .gallery-panel {
    position: sticky;
    top: 5.4rem;
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
  }

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

@media (min-width: 1280px) {
  .hero-panel {
    padding: 1.8rem;
  }

  .grid-products {
    gap: 1.1rem;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1380px;
  }
}

@media (max-width: 991.98px) {
  .header-search {
    display: none;
  }

  .site-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .brand-link {
    align-items: flex-start;
  }

  .brand-wordmark {
    font-size: 1.15rem;
  }

  .brand-tag {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .icon-btn {
    width: 2.2rem;
    height: 2.2rem;
  }

  .icon-btn svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .desktop-links {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-stat {
    padding: 0.55rem 0.62rem;
  }

  .grid-products {
    gap: 0.62rem;
  }

  .product-title {
    font-size: 0.88rem;
  }

  .price-main {
    font-size: 0.91rem;
  }

  .product-actions {
    gap: 0.4rem;
  }

  .product-actions .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .product-card:hover,
  .icon-btn:hover,
  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }
}