:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --text: #1d1f24;
  --muted: #686f7d;
  --brand: #0f3462;
  --accent: #df5532;
  --line: #e8e4dc;
  --shadow: 0 10px 25px rgba(18, 26, 39, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: "Nunito", sans-serif; color: var(--text); background: radial-gradient(circle at top right, #fff8ec 0%, var(--bg) 48%, #f0efe9 100%); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 3.5rem 0; }

.top-strip {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.25;
  padding: 0.45rem 0.75rem;
  overflow-wrap: anywhere;
}

.site-header { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(8px); background: rgba(247, 245, 241, 0.94); border-bottom: 1px solid var(--line); }
.site-header.compact { position: static; }
.header-main { display: flex; gap: 1rem; align-items: center; justify-content: space-between; padding: 1rem 0; }
.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 18vw, 190px);
  min-width: 132px;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
}
.site-footer .logo {
  width: clamp(178px, 24vw, 250px);
  min-width: 178px;
}
.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #d8e0ec;
  background: #f5f8fd;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}
.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #17385f;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.search { flex: 1; display: flex; max-width: 520px; }
.search input {
  width: 100%; border: 1px solid var(--line); border-radius: 999px; padding: 0.7rem 1rem;
  background: #fff;
}
.quick-nav { display: flex; align-items: center; gap: 1rem; font-weight: 700; }
.quick-nav a {
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.quick-nav a:active {
  transform: translateY(1px);
}
.quick-nav a:hover, .main-nav a:hover { color: var(--accent); }
.main-nav { display: flex; gap: 1.2rem; padding-bottom: 0.9rem; font-weight: 700; white-space: nowrap; overflow-x: auto; }
.main-nav::-webkit-scrollbar { height: 0; }
.cart-count { background: var(--accent); color: #fff; font-size: 0.75rem; border-radius: 999px; padding: 0.1rem 0.45rem; }

.floating-cart {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  min-width: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(10, 28, 55, 0.12);
  background: rgba(12, 32, 61, 0.96);
  color: #fff;
  box-shadow: 0 18px 38px rgba(11, 23, 42, 0.28);
  transform: translateY(110px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
}

.floating-cart.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.floating-cart.is-highlighted {
  box-shadow: 0 22px 46px rgba(11, 23, 42, 0.32);
}

.floating-cart.is-receiving {
  animation: cartFabBounce 0.45s ease;
}

.floating-cart[data-tone="error"] {
  background: rgba(120, 30, 17, 0.96);
}

.floating-cart-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
}

.floating-cart-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-cart-copy {
  display: grid;
  min-width: 0;
}

.floating-cart-copy strong {
  font-size: 0.93rem;
  letter-spacing: 0.2px;
}

.floating-cart-copy span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 24ch;
}

.floating-cart-count {
  min-width: 34px;
  height: 34px;
  padding: 0 0.45rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0f3462;
  font-weight: 900;
  font-size: 0.86rem;
}

.cart-flyout-image {
  position: fixed;
  z-index: 130;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(16, 28, 48, 0.26);
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 0.96;
}

.cart-flyout-image.is-animating {
  animation: cartFlyToFab 0.7s cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(15,52,98,0.92), rgba(15,52,98,0.58)),
    url('https://images.unsplash.com/photo-1521223890158-f9f7c3d5d504?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fff;
}
.hero-content { max-width: 560px; animation: rise 0.8s ease; }
.eyebrow { font-size: 0.88rem; letter-spacing: 1.7px; font-weight: 800; text-transform: uppercase; }
.hero h1 { font-family: "Bebas Neue", sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: 1px; margin: 0.25rem 0 0.8rem; line-height: 1.02; }
.hero p { max-width: 48ch; }
.hero-actions { margin-top: 1.2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  min-height: 42px;
  max-width: 100%;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
  appearance: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { filter: brightness(1.07); }
.btn-danger { background: #8f2619; color: #fff; }
.btn-danger:hover { filter: brightness(1.06); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-light { background: rgba(255,255,255,0.17); color: #fff; border: 1px solid rgba(255,255,255,0.4); }

.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.catalog-promo-flag {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #9f2f00;
  background: #ffe5d8;
  border: 1px solid #ffc8af;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}
h1, h2, h3, h4 { margin: 0; }
h1, h2 { font-family: "Bebas Neue", sans-serif; letter-spacing: 0.8px; font-size: clamp(2rem, 4vw, 3rem); }
.see-all { font-weight: 800; color: var(--brand); }

.category-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.category-card {
  min-height: 130px; border-radius: 16px; box-shadow: var(--shadow); padding: 1rem;
  display: flex; align-items: end; font-family: "Bebas Neue", sans-serif; font-size: 1.7rem; color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 22, 43, 0.58), rgba(15, 52, 98, 0.16)),
    var(--category-image, linear-gradient(120deg, #0f3462, #df5532));
  background-size: cover;
  background-position: center;
  position: relative; overflow: hidden;
}
.category-card::before {
  content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.14); top: -45px; right: -35px;
}
.category-card span { position: relative; z-index: 2; text-shadow: 0 2px 10px rgba(0,0,0,0.35); }
.category-card.category-masculino {
  --category-image: url('https://images.unsplash.com/photo-1521223890158-f9f7c3d5d504?auto=format&fit=crop&w=900&q=80');
}
.category-card.category-calcados {
  --category-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=900&q=80');
}
.category-card.category-bones {
  --category-image: url('https://images.unsplash.com/photo-1521369909029-2afed882baee?auto=format&fit=crop&w=900&q=80');
}
.category-card.category-perfumes {
  --category-image: url('https://images.unsplash.com/photo-1758871993077-e084cc7eca86?auto=format&fit=crop&w=900&q=80');
  background-position: center 58%;
}
.category-card.category-relogios {
  --category-image: url('https://images.unsplash.com/photo-1524592094714-0f0654e20314?auto=format&fit=crop&w=900&q=80');
}
.category-grid .category-card:nth-child(1) {
  --category-image: url('https://images.unsplash.com/photo-1521223890158-f9f7c3d5d504?auto=format&fit=crop&w=900&q=80');
}
.category-grid .category-card:nth-child(2) {
  --category-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=900&q=80');
}
.category-grid .category-card:nth-child(3) {
  --category-image: url('https://images.unsplash.com/photo-1521369909029-2afed882baee?auto=format&fit=crop&w=900&q=80');
}
.category-grid .category-card:nth-child(4) {
  --category-image: url('https://images.unsplash.com/photo-1758871993077-e084cc7eca86?auto=format&fit=crop&w=900&q=80');
  background-position: center 58%;
}
.category-grid .category-card:nth-child(5) {
  --category-image: url('https://images.unsplash.com/photo-1524592094714-0f0654e20314?auto=format&fit=crop&w=900&q=80');
}

.product-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.catalog-layout .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 260px));
  justify-content: start;
}
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); animation: rise 0.5s ease;
}
.product-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.product-info { padding: 0.9rem; }
.product-title { font-weight: 800; margin: 0; }
.product-meta { margin: 0.2rem 0 0.8rem; color: var(--muted); font-size: 0.9rem; }
.price { font-size: 1.15rem; font-weight: 900; color: var(--brand); }
.price-old {
  font-size: 0.9rem;
  font-weight: 700;
  color: #8e98ab;
  text-decoration: line-through;
  margin-right: 0.3rem;
}
.price-new {
  color: #be3600;
  font-weight: 900;
}
.product-promo-badge {
  display: inline-block;
  margin: 0.2rem 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: #ffe1d3;
  color: #9f2f00;
  border: 1px solid #ffc3a8;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}
.card-actions { margin-top: 0.7rem; display: flex; gap: 0.5rem; }
.card-actions .btn { flex: 1; }

.banner {
  background: linear-gradient(130deg, #ffe8c4, #fff5e6);
  border: 1px solid #f5d6ab;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
}

.newsletter { background: linear-gradient(160deg, #0f3462, #1f4f8a); color: #fff; }
.newsletter-box { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.newsletter form { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.newsletter input { border: 0; border-radius: 999px; min-width: 280px; padding: 0.75rem 1rem; }

.site-footer { background: #0e1119; color: #e5e8ef; padding-top: 2.2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(160px, 0.55fr) minmax(260px, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.footer-brand p,
.footer-contact p {
  max-width: 34ch;
  color: #c8d0df;
  line-height: 1.55;
}
.footer-links,
.footer-contact {
  justify-self: start;
}
.footer-grid h4 {
  margin-bottom: 0.7rem;
}
.footer-grid a { display: block; color: #ccd3e0; margin-top: 0.5rem; }
.footer-grid a:hover {
  color: #ffffff;
}
.copy { text-align: center; padding: 1rem 0; margin: 1.2rem 0 0; border-top: 1px solid #283247; color: #9ca6ba; }

.catalog-layout { display: grid; gap: 1.5rem; grid-template-columns: 260px 1fr; }
.filters {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem; height: fit-content; position: sticky; top: 1rem;
}
.filters label { display: grid; gap: 0.45rem; font-weight: 700; margin-top: 0.8rem; }
.filters input, .filters select { border: 1px solid var(--line); border-radius: 10px; padding: 0.65rem; }

.product-page { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.product-page img { border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.product-page .details { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 1.2rem; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.product-detail > img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-detail > div {
  min-width: 0;
}
.option-row { display: flex; gap: 0.6rem; margin: 0.8rem 0; flex-wrap: wrap; }
.size-btn { border: 1px solid var(--line); background: #fff; padding: 0.5rem 0.8rem; border-radius: 8px; cursor: pointer; }
.size-btn.active { border-color: var(--brand); color: var(--brand); font-weight: 800; }
.size-btn.is-unavailable,
.size-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}

.cart-layout { display: grid; gap: 1rem; grid-template-columns: minmax(0, 1fr) minmax(320px, 380px); }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0.8rem;
}
.cart-item img { width: 100px; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; }
.cart-summary {
  position: sticky;
  top: 1rem;
  background: #ffffff;
  border: 1px solid #e5dfd3;
  border-radius: 16px;
  padding: 1rem;
  height: fit-content;
  box-shadow: 0 10px 22px rgba(25, 33, 47, 0.08);
  min-width: 0;
  overflow: visible;
}

.cart-summary::before {
  content: none;
}

.contact-grid { display: grid; gap: 1rem; grid-template-columns: 1.1fr 0.9fr; }
.contact-form, .contact-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem; }
.contact-form { display: grid; gap: 0.8rem; }
.contact-form input, .contact-form textarea { border: 1px solid var(--line); border-radius: 10px; padding: 0.75rem; font: inherit; }
.contact-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}
.contact-card p {
  margin: 0;
  color: #4d5667;
  line-height: 1.5;
}
.contact-card a:not(.btn) {
  color: var(--brand);
  font-weight: 800;
}
.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.75rem;
}
.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  min-width: 0;
  min-height: 68px;
  padding: 0.74rem 0.9rem;
  border: 1px solid rgba(21, 33, 51, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 252, 0.96));
  color: #172236;
  font-weight: 900;
  line-height: 1.05;
  overflow: hidden;
  box-shadow:
    0 14px 26px rgba(17, 24, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.social-btn::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(23, 34, 54, 0.34);
  border-right: 2px solid rgba(23, 34, 54, 0.34);
  transform: rotate(45deg);
  pointer-events: none;
}
.social-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 33, 51, 0.16);
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.social-btn:active {
  transform: translateY(-1px);
}
.social-btn-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  box-shadow:
    0 10px 18px rgba(17, 24, 39, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.social-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.social-btn span:not(.social-btn-icon) {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.18rem;
}
.social-btn strong,
.social-btn small {
  display: block;
}
.social-btn strong {
  color: #172236;
  font-size: 0.98rem;
}
.social-btn small {
  color: #6b7484;
  font-size: 0.76rem;
  font-weight: 800;
}
.social-btn-whatsapp .social-btn-icon {
  background: linear-gradient(145deg, #24d06d, #0a8f4a);
}
.social-btn-instagram .social-btn-icon {
  background:
    radial-gradient(circle at 25% 110%, #ffd76d 0 18%, transparent 39%),
    linear-gradient(145deg, #7f3bd7 0%, #e52d63 52%, #f5a33b 100%);
}
.social-btn-maps .social-btn-icon {
  background: linear-gradient(145deg, #4285f4, #1765d8);
}
.social-btn-whatsapp:hover {
  border-color: rgba(10, 143, 74, 0.28);
}
.social-btn-instagram:hover {
  border-color: rgba(229, 45, 99, 0.26);
}
.social-btn-maps:hover {
  border-color: rgba(23, 101, 216, 0.26);
}

@media (max-width: 820px) {
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cartFlyToFab {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.96;
  }
  70% {
    opacity: 0.88;
  }
  100% {
    transform: translate3d(var(--cart-target-x), var(--cart-target-y), 0) scale(0.18);
    opacity: 0;
  }
}

@keyframes cartFabBounce {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-4px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .site-header.compact {
    position: sticky;
    top: 0;
    z-index: 80;
  }
  .catalog-layout, .product-page, .cart-layout, .contact-grid, .newsletter-box { grid-template-columns: 1fr; }
  .filters { position: static; }
  .search { display: none; }
  .header-main {
    flex-wrap: nowrap;
    gap: 0.7rem;
    position: relative;
    z-index: 85;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .quick-nav {
    position: fixed;
    top: 70px;
    right: 4vw;
    left: 4vw;
    width: auto;
    max-width: 360px;
    margin-left: auto;
    display: grid;
    gap: 0.45rem;
    padding: 0.75rem;
    border-radius: 14px;
    border: 1px solid #d7e1ef;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 16px 32px rgba(16, 31, 51, 0.16);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 90;
  }
  .quick-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .quick-nav a {
    white-space: normal;
    font-size: 0.84rem;
    padding: 0.55rem 0.65rem;
    background: #f3f7fd;
    border: 1px solid #e0e8f4;
    color: #21456f;
  }
  .quick-nav a:last-child { margin-bottom: 0; }
  .main-nav {
    gap: 0.6rem;
    padding-bottom: 0.75rem;
  }
  .main-nav a {
    font-size: 0.84rem;
    border-radius: 999px;
    padding: 0.36rem 0.62rem;
    background: #f3f5f9;
    border: 1px solid #dce4f1;
  }
  .section { padding: 2.4rem 0; }
  .banner { padding: 1.3rem; }
  .newsletter input { min-width: 100%; }
  .hero-carousel { min-height: 62vh; }
  .hero-carousel .hero-content { padding-bottom: 4rem; }
  body.mobile-nav-open { overflow: hidden; }
  .floating-cart {
    right: 0.9rem;
    bottom: 0.9rem;
    max-width: min(92vw, 360px);
  }
}

.checkout-form {
  display: grid;
  gap: 0.58rem;
  border-top: 1px solid #e5dccd;
  padding-top: 0.8rem;
}

.checkout-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.78rem;
  min-width: 0;
}

.checkout-head h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.6px;
  font-size: 1.55rem;
  color: #122847;
}

.checkout-kicker {
  margin: 0 0 0.2rem;
  color: #84663d;
  font-size: 0.62rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 800;
}

.checkout-totals {
  display: grid;
  gap: 0.28rem;
  border: 1px solid #e6dfd1;
  border-radius: 12px;
  background: #fbfaf7;
  padding: 0.62rem 0.7rem;
}

.checkout-totals > p:not(.checkout-message) {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.checkout-totals p span {
  color: #5a6374;
  font-size: 0.86rem;
  font-weight: 700;
}

.checkout-totals p strong {
  color: #132947;
  font-size: 0.95rem;
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
}

.checkout-total-line {
  margin-top: 0.2rem !important;
  padding-top: 0.48rem;
  border-top: 1px solid #e6dccb;
}

.checkout-total-line span {
  color: #243246 !important;
  font-size: 0.92rem !important;
}

.checkout-total-line strong {
  color: #8f2f14 !important;
  font-size: 1.08rem !important;
}

.checkout-form-head {
  display: block;
}

.checkout-form-head span {
  background: #20375c;
  color: #f4f7ff;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  max-width: 100%;
  white-space: normal;
  display: inline-block;
  margin-top: 0.32rem;
}

.checkout-form h4 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.45px;
  font-size: 1.26rem;
  color: #122847;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid #d7cfbf;
  border-radius: 10px;
  padding: 0.56rem 0.68rem;
  font: inherit;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: #c39b65;
  box-shadow: 0 0 0 2px rgba(195, 155, 101, 0.16);
  background: #fff;
}

.checkout-shipping-select {
  margin-top: 0.08rem;
  position: relative;
}

.checkout-row.checkout-shipping-select {
  grid-template-columns: 1fr;
}

.checkout-shipping-select select {
  width: 100%;
  min-width: 0;
  border: 1px solid #d5c8b2;
  background: #fffefb;
  color: #1f2f47;
  font-weight: 600;
  font-size: 0.86rem;
  min-height: 36px;
  padding-right: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
}

.checkout-shipping-select::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #8f7b5a;
  border-bottom: 1.5px solid #8f7b5a;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  opacity: 0.85;
}

.checkout-shipping-select select:hover {
  border-color: #c9b491;
  background: #fffdf8;
}

.checkout-shipping-select select:focus {
  border-color: #b88f56;
  box-shadow: 0 0 0 2px rgba(184, 143, 86, 0.18);
}

.checkout-row {
  display: grid;
  gap: 0.58rem;
  grid-template-columns: 1fr 1fr;
}

.checkout-message {
  min-height: 0;
  margin: 0.08rem 0 0;
  color: #5b6475;
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.checkout-shipping-note {
  display: block;
  margin-top: 0.1rem;
  padding: 0.36rem 0.5rem;
  border-radius: 8px;
  background: rgba(18, 43, 76, 0.05);
}

.checkout-delivery-note:empty,
.checkout-feedback:empty {
  display: none;
}

.checkout-payment-note {
  color: #294a72;
  margin-top: -0.05rem;
}

.checkout-submit {
  width: 100%;
  margin-top: 0.2rem;
  border-radius: 10px;
  min-height: 39px;
  font-size: 0.88rem;
  letter-spacing: 0.15px;
  box-shadow: 0 6px 14px rgba(160, 59, 30, 0.16);
}

.checkout-feedback {
  margin-top: 0.25rem;
  color: #9b3318;
  font-weight: 700;
}

.admin-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

[data-admin-auth-card] {
  transform-origin: top left;
}

[data-admin-main].admin-auth-only {
  min-height: calc(100dvh - 140px);
  display: grid;
  align-content: center;
}

[data-admin-main].admin-auth-only [data-admin-layout] {
  grid-template-columns: minmax(320px, 540px);
  justify-content: center;
}

.admin-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.7px;
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.admin-card label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.admin-products-head {
  align-items: center;
}

.admin-category-filter {
  min-width: min(260px, 100%);
  margin: 0;
  font-size: 0.82rem;
}

.admin-category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: stretch;
}

.admin-category-row .btn {
  min-height: 42px;
  padding-inline: 0.8rem;
}

.admin-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.25rem 0 0.85rem;
}

.admin-category-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
  background: #f6f8fb;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-category-pill.is-empty {
  color: #9b3318;
  background: #fff1ea;
}

.admin-products-count {
  margin: -0.35rem 0 0.75rem;
  color: var(--muted);
  font-weight: 700;
}

.admin-card input,
.admin-card textarea,
.admin-card select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem;
  font: inherit;
}

.admin-stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 0.55rem;
  margin: 0.25rem 0 0.9rem;
  width: 100%;
}

.admin-stock-title {
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 800;
  color: var(--text);
}

.admin-sizes-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.admin-stock-grid label {
  margin: 0;
  min-width: 0;
}

.admin-stock-grid input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.admin-image-preview {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin: 0 0 0.8rem;
  background: #f4f6fa;
}

.admin-auth-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.admin-session-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.admin-status {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: #eef2f9;
  color: #3b4d69;
}

.admin-status.is-online {
  background: #e8f7ed;
  color: #1f6b39;
}

.admin-user {
  color: var(--muted);
  font-size: 0.9rem;
}

.password-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: stretch;
}

.btn-ghost {
  background: #f3f5f9;
  color: #3a4c67;
  border: 1px solid #d7deea;
  padding: 0.65rem 0.85rem;
}

.password-toggle {
  min-width: 86px;
  border-radius: 10px;
}

.admin-security-note {
  margin: 0.8rem 0 0.3rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-form-disabled {
  opacity: 0.62;
  pointer-events: none;
}

.is-hidden {
  display: none !important;
}

.admin-locked-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-form {
  display: grid;
  gap: 0.65rem;
}

.upload-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.admin-upload-message {
  margin: -0.2rem 0 0.1rem;
  min-height: 1.1rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.admin-checkbox input {
  width: 1rem;
  height: 1rem;
}

.hero-carousel {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15,52,98,0.92), rgba(15,52,98,0.52));
  z-index: 1;
}

.hero-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.45s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4.2rem;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  margin: 0;
}

.carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.carousel-dots button.active {
  background: #fff;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.65rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.admin-table th {
  color: var(--brand);
}

.admin-products-table {
  table-layout: fixed;
}

.admin-products-table td {
  vertical-align: middle;
  height: 74px;
  white-space: normal;
}

.admin-products-table td:nth-child(1) {
  width: 72px;
}

.admin-products-table td:nth-child(3) {
  width: 140px;
}

.admin-products-table td:nth-child(4) {
  width: 220px;
}

.admin-products-table td:nth-child(5) {
  width: 150px;
}

.admin-product-thumb {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.admin-carousel-table td:nth-child(1) {
  width: 72px;
}

.admin-carousel-table td:nth-child(3),
.admin-carousel-table td:nth-child(4),
.admin-carousel-table td:nth-child(5) {
  width: 110px;
}

.admin-stock-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.admin-stock-pill {
  border: 1px solid #cfe4d8;
  background: #edf8f1;
  color: #1f6b39;
  border-radius: 999px;
  padding: 0.25rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-stock-pill.is-empty {
  border-color: #ead0d0;
  background: #fff1f1;
  color: #9b2c2c;
}

.admin-promo-badge {
  position: static;
  display: inline-flex;
  margin-left: 0.45rem;
  vertical-align: middle;
  transform: none;
  font-size: 0.68rem;
  padding: 0.22rem 0.42rem;
}

.order-status-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.order-status-created {
  background: #eef4ff;
  color: #2d5fab;
  border-color: #d5e4ff;
}

.order-status-pending {
  background: #fff6e4;
  color: #8a5a00;
  border-color: #ffe1a6;
}

.order-status-paid {
  background: #e9fbf2;
  color: #1f7a48;
  border-color: #bfeecf;
}

.order-status-expired {
  background: #fff0e8;
  color: #a94814;
  border-color: #ffd0b6;
}

.order-status-cancelled {
  background: #ffecec;
  color: #9d1f1f;
  border-color: #ffc9c9;
}

.delivery-mode-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.delivery-mode-delivery {
  background: #eaf3ff;
  color: #225ea9;
  border-color: #cfe1ff;
}

.delivery-mode-pickup {
  background: #edfbee;
  color: #1f7b4d;
  border-color: #c7efcf;
}

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

.admin-stat {
  background: #f6f8fc;
  border: 1px solid #dfe7f4;
  border-radius: 12px;
  padding: 0.75rem;
}

.admin-stat p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.admin-stat strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.2rem;
  color: #163a62;
}

.admin-top-products {
  margin-top: 0.8rem;
}

.admin-top-products h4 {
  margin: 0 0 0.45rem;
  color: var(--brand);
}

.admin-top-products ul {
  margin: 0;
  padding-left: 1rem;
}

.admin-top-products li {
  margin: 0.25rem 0;
  color: #2f3d52;
}

.admin-dashboard-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.85rem;
}

.admin-report-card {
  border: 1px solid #dfe7f4;
  border-radius: 12px;
  background: #fbfcff;
  padding: 0.75rem;
}

.admin-report-card h4 {
  margin: 0 0 0.55rem;
  color: var(--brand);
}

.admin-line-chart {
  width: 100%;
  height: 124px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(15, 52, 98, 0.14), rgba(15, 52, 98, 0.03));
  border: 1px solid #d8e2f1;
}

.admin-line-chart polyline {
  fill: none;
  stroke: #1d5daa;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-report-card {
  position: relative;
}

.admin-line-chart [data-revenue-hover-line] {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 0.35;
  transition: opacity 0.12s ease;
}

.admin-line-chart [data-revenue-hover-dot] {
  fill: #ffcc8a;
  stroke: #0e2f5f;
  stroke-width: 0.45;
  transition: opacity 0.12s ease;
}

.admin-chart-tooltip {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #ecf6ff;
  background: rgba(8, 18, 42, 0.9);
  border: 1px solid rgba(130, 164, 255, 0.55);
  border-radius: 8px;
  padding: 0.33rem 0.5rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.admin-chart-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-chart-caption {
  margin: 0.5rem 0 0;
  color: #5a6475;
  font-size: 0.8rem;
}

.admin-bars-compact {
  min-height: 124px;
  border: 1px solid #d8e2f1;
  border-radius: 10px;
  padding: 0.45rem;
  display: flex;
  align-items: end;
  gap: 3px;
  background: linear-gradient(180deg, rgba(15, 52, 98, 0.07), rgba(15, 52, 98, 0.01));
}

.admin-bars-compact span {
  flex: 1;
  min-width: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #2a6bb8, #184a86);
}

.admin-bars {
  display: grid;
  gap: 0.45rem;
}

.admin-donut-wrap {
  display: grid;
  grid-template-columns: minmax(120px, 150px) 1fr;
  gap: 0.75rem;
  align-items: center;
}

.admin-donut {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--donut));
  position: relative;
  display: grid;
  place-items: center;
}

.admin-donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #f8fbff;
  box-shadow: inset 0 0 0 1px #dfe8f6;
}

.admin-donut span {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1a4277;
  text-align: center;
  max-width: 74px;
  line-height: 1.2;
}

.admin-donut-legend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.admin-donut-legend li {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.82rem;
}

.admin-donut-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot);
  display: inline-block;
}

.admin-bar-row {
  display: grid;
  gap: 0.25rem;
}

.admin-bar-head {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.admin-bar-head strong {
  color: #214f89;
}

.admin-bar-track {
  height: 8px;
  background: #e8edf5;
  border-radius: 999px;
  overflow: hidden;
}

.admin-bar-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #215ea7, #3f89df);
}

.admin-list {
  margin: 0;
  padding-left: 1rem;
}

.admin-list li {
  margin: 0.25rem 0;
}

.admin-empty {
  margin: 0;
  font-size: 0.84rem;
  color: #5b6271;
}

.admin-dashboard-theme {
  position: relative;
  overflow: hidden;
  border: 1px solid #243763;
  background:
    radial-gradient(1200px 460px at 12% 10%, rgba(118, 154, 255, 0.26), transparent 60%),
    radial-gradient(900px 420px at 88% 95%, rgba(71, 106, 255, 0.22), transparent 62%),
    linear-gradient(145deg, rgba(6, 12, 31, 0.95), rgba(10, 19, 48, 0.9)),
    url("https://images.unsplash.com/photo-1539721972319-f0e80a00d424?auto=format&fit=crop&w=2000&q=80");
  background-size: auto, auto, auto, cover;
  background-position: center;
  color: #eaf0ff;
  box-shadow: 0 20px 40px rgba(8, 14, 38, 0.35);
}

.admin-dashboard-theme::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(8, 16, 42, 0.68), rgba(11, 22, 55, 0.38));
}

.admin-dashboard-theme > * {
  position: relative;
  z-index: 1;
}

.admin-dashboard-theme .section-head h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.2px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  background: linear-gradient(90deg, #f5f7ff 0%, #9fbaff 52%, #5f85ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.admin-dashboard-theme [data-admin-dashboard-refresh] {
  background: rgba(13, 32, 74, 0.72) !important;
  border: 1px solid rgba(128, 162, 255, 0.45);
  color: #d8e6ff;
}

.admin-dashboard-theme .admin-stat {
  background: rgba(13, 27, 61, 0.56);
  border: 1px solid rgba(121, 152, 245, 0.36);
  backdrop-filter: blur(6px);
}

.admin-dashboard-theme .admin-stat p {
  color: #d6e4ff;
}

.admin-dashboard-theme .admin-stat strong {
  color: #ffffff;
}

.admin-dashboard-theme .admin-report-card {
  background: rgba(11, 23, 54, 0.62);
  border: 1px solid rgba(117, 147, 243, 0.36);
  backdrop-filter: blur(8px);
}

.admin-dashboard-theme .admin-report-card h4 {
  color: #e7efff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.admin-dashboard-theme .admin-line-chart {
  border: 1px solid rgba(119, 151, 247, 0.36);
  background: linear-gradient(180deg, rgba(102, 140, 255, 0.2), rgba(15, 34, 78, 0.3));
}

.admin-dashboard-theme .admin-line-chart polyline {
  stroke: #ffa24c;
  stroke-width: 1.25;
  filter: drop-shadow(0 0 3px rgba(255, 162, 76, 0.35));
}

.admin-dashboard-theme .admin-chart-caption,
.admin-dashboard-theme .admin-empty {
  color: #d9e6ff;
}

.admin-dashboard-theme .admin-bars-compact {
  border: 1px solid rgba(119, 151, 247, 0.36);
  background: linear-gradient(180deg, rgba(86, 115, 224, 0.2), rgba(17, 35, 82, 0.36));
}

.admin-dashboard-theme .admin-bars-compact span {
  background: linear-gradient(180deg, #72b8ff, #4c7de6);
}

.admin-dashboard-theme .admin-bars-compact span:nth-child(4n + 1) {
  background: linear-gradient(180deg, #63e8ff, #2f9cd3);
}

.admin-dashboard-theme .admin-bars-compact span:nth-child(4n + 2) {
  background: linear-gradient(180deg, #6ff3bf, #25b98f);
}

.admin-dashboard-theme .admin-bars-compact span:nth-child(4n + 3) {
  background: linear-gradient(180deg, #c392ff, #8a57e5);
}

.admin-dashboard-theme .admin-bars-compact span:nth-child(4n + 4) {
  background: linear-gradient(180deg, #ffcf73, #ff8c42);
}

.admin-dashboard-theme .admin-donut {
  box-shadow: 0 0 0 1px rgba(138, 166, 255, 0.2), 0 8px 20px rgba(8, 16, 44, 0.28);
}

.admin-dashboard-theme .admin-bar-head {
  color: #e2ecff;
}

.admin-dashboard-theme .admin-bar-head strong {
  color: #ffd786;
}

.admin-dashboard-theme .admin-bar-track {
  background: rgba(134, 160, 227, 0.2);
}

.admin-dashboard-theme .admin-bar-track span {
  background: linear-gradient(90deg, #5f8cff, #4de0c5 60%, #ffb562);
}

.admin-dashboard-theme .admin-list {
  color: #edf3ff;
}

.admin-dashboard-theme .admin-donut::after {
  background: rgba(8, 18, 43, 0.92);
  box-shadow: inset 0 0 0 1px rgba(130, 157, 229, 0.35);
}

.admin-dashboard-theme .admin-donut span {
  color: #f4f8ff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.admin-dashboard-theme .admin-donut-legend li {
  color: #e9f1ff;
}

.admin-dashboard-theme .admin-donut-legend li span {
  color: #d7e5ff;
}

.admin-dashboard-theme .admin-donut-legend li strong {
  color: #fff0d9;
}

.admin-dashboard-theme .admin-chart-tooltip {
  border-color: rgba(255, 175, 92, 0.6);
  background: rgba(5, 16, 34, 0.92);
  color: #fff0da;
}

.admin-dashboard-theme .admin-table th {
  color: #d4e3ff;
}

.admin-dashboard-theme .admin-table td {
  border-bottom-color: rgba(125, 151, 224, 0.3);
  color: #edf3ff;
}

.admin-order-details {
  color: #4a566b;
  font-size: 0.82rem;
}

.admin-order-filters {
  grid-template-columns: minmax(150px, 220px) minmax(180px, 1fr) auto;
  align-items: end;
  margin-bottom: 0.75rem;
}

.admin-order-actions {
  display: grid;
  gap: 0.45rem;
  min-width: 280px;
}

.admin-order-actions input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0.52rem;
  font: inherit;
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-action-row .btn {
  flex: 1 1 112px;
  min-height: 34px;
  padding: 0.48rem 0.65rem;
  font-size: 0.82rem;
}

.admin-order-output {
  margin-top: 0.75rem;
  max-height: 320px;
  overflow: auto;
  white-space: pre-wrap;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.8rem;
  color: #27364a;
}

@media (max-width: 900px) {
  .checkout-row,
  .admin-layout {
    grid-template-columns: 1fr;
  }
  [data-admin-main].admin-auth-only {
    min-height: calc(100dvh - 110px);
    align-content: start;
    padding-top: 1rem;
  }
  [data-admin-main].admin-auth-only [data-admin-layout] {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .upload-row,
  .password-field,
  .admin-order-filters {
    grid-template-columns: 1fr;
  }
  .admin-card {
    padding: 0.85rem;
  }
  .admin-card h3 {
    font-size: 1.35rem;
  }
  .admin-table th,
  .admin-table td {
    white-space: normal;
    font-size: 0.86rem;
    padding: 0.55rem 0.45rem;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .admin-donut-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container { width: min(1120px, 94vw); }
  .top-strip {
    font-size: 0.68rem;
    padding: 0.42rem 0.5rem;
  }
  .logo { width: 128px; min-width: 128px; }
  .section-head { flex-wrap: wrap; margin-bottom: 0.7rem; }
  .hero-actions .btn {
    width: 100%;
    min-height: 44px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }
  .product-info { padding: 0.72rem; }
  .product-title { font-size: 0.93rem; }
  .product-meta { font-size: 0.79rem; margin-bottom: 0.45rem; }
  .price { font-size: 1.01rem; }
  .card-actions {
    flex-direction: column;
    gap: 0.42rem;
  }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-card {
    min-height: 100px;
    font-size: 1.3rem;
    border-radius: 13px;
  }
  .cart-item {
    grid-template-columns: 72px 1fr;
    gap: 0.7rem;
    align-items: start;
  }
  .cart-item img {
    width: 72px;
    border-radius: 8px;
  }
  .cart-item .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .btn {
    min-height: 40px;
    padding: 0.6rem 0.82rem;
    font-size: 0.88rem;
  }
  .floating-cart {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    grid-template-columns: auto 1fr auto;
    padding: 0.78rem 0.85rem;
    border-radius: 18px;
  }
  .floating-cart-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .floating-cart-copy strong {
    font-size: 0.88rem;
  }
  .floating-cart-copy span {
    max-width: 18ch;
  }
  .carousel-dots button {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 520px) {
  h1, h2 { font-size: clamp(1.45rem, 9vw, 2rem); }
  .hero-carousel { min-height: 56vh; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 1.2px; }
  .hero-carousel .hero-content { max-width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card img { aspect-ratio: 1 / 1; }
  .product-title { font-size: 0.86rem; }
  .price { font-size: 0.95rem; }
  .card-actions .btn { font-size: 0.78rem; min-height: 38px; }
  .main-nav a,
  .quick-nav a {
    font-size: 0.8rem;
  }
  .copy {
    font-size: 0.82rem;
    padding-bottom: 1.4rem;
  }
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail > img {
    max-width: 100%;
    max-height: 460px;
  }
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 1.5rem;
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 0.8rem;
}

.checkout-form h3 {
  margin: 0.8rem 0 0;
  font-size: 1rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.cart-qty,
.qty-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: #fff;
}

.checkout-form label,
.qty-field {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

.checkout-form label:has(input[type="radio"]) {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--text);
}

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

.delivery-fields input:first-child,
.delivery-fields input:nth-child(2),
.delivery-fields input:last-child {
  grid-column: 1 / -1;
}

.is-hidden {
  display: none !important;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr 92px auto;
  gap: 0.85rem;
  align-items: center;
}

.cart-item img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-qty {
  min-width: 72px;
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.45rem 0 0.35rem;
}

.size-label {
  margin: 1rem 0 0;
  font-weight: 800;
  color: var(--text);
}

.size-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  font-weight: 800;
  display: grid;
  gap: 0.12rem;
  min-width: 70px;
  text-align: center;
}

.size-btn span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.size-btn.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.size-btn.active span {
  color: #fff;
}

.size-btn.is-unavailable,
.size-btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  text-decoration: line-through;
}

.detail-price {
  display: block;
  margin: 1rem 0;
  font-size: 1.45rem;
}

.product-message {
  min-height: 1.25rem;
  margin: 0.15rem 0 0.75rem;
  color: #9b3318;
  font-weight: 800;
}

.checkout-summary .checkout-totals {
  margin: 0.2rem 0 0.35rem;
}

.cart-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
}

.cart-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.checkout-message {
  min-height: 1.3rem;
  color: var(--brand);
  font-weight: 800;
}

@media (max-width: 820px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 72px 1fr;
  }

  .cart-item .cart-qty,
  .cart-item .btn {
    grid-column: 2;
  }
}

/* Product catalog polish */
.catalog-layout {
  align-items: start;
}

.catalog-layout > section {
  min-width: 0;
}

.catalog-layout .section-head {
  align-items: end;
  margin-bottom: 1.5rem;
}

.catalog-layout .section-head h1 {
  line-height: 0.95;
}

.product-grid,
.catalog-layout .product-grid {
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.product-card > a:not(.btn) {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ece8df;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem 1.1rem 0.85rem;
}

.product-info .product-category {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
}

.product-info h3 {
  min-height: 2.45em;
  line-height: 1.22;
  font-size: 1.12rem;
}

.product-info p:not(.product-category) {
  min-height: 3.45em;
  margin: 0;
  color: var(--text);
  line-height: 1.28;
}

.product-info strong {
  margin-top: auto;
  color: #071629;
  font-size: 1.08rem;
}

.product-card > .btn {
  flex: 0 0 auto;
  align-self: stretch;
  margin: 0 1.1rem 1.1rem;
  width: auto;
  min-width: 0;
  min-height: 40px;
  padding-inline: 0.75rem;
}

.product-promo-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  margin: 0;
  background: #fff3eb;
  box-shadow: 0 4px 14px rgba(12, 24, 44, 0.1);
}

.old-price {
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: line-through;
}

@media (max-width: 900px) {
  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }
}

@media (max-width: 520px) {
  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .product-info h3,
  .product-info p:not(.product-category) {
    min-height: 0;
  }

  .product-card > .btn {
    margin: 0 0.72rem 0.72rem;
    min-height: 38px;
    padding: 0.52rem 0.55rem;
    font-size: 0.78rem;
  }

  .admin-action-row .btn {
    flex-basis: 100%;
  }
}

/* Mobile hardening */
body {
  overflow-x: hidden;
}

.site-header,
.hero-carousel,
.section,
.banner,
.product-card,
.admin-card,
.checkout-summary,
.cart-item {
  max-width: 100%;
}

.hero-carousel .hero-content h1,
.hero-carousel .hero-content p,
.banner h3,
.banner p,
.product-info h3,
.product-info p,
.section-head h1,
.section-head h2,
.category-card span,
.admin-card h3,
.checkout-form h3,
.cart-item h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-carousel .hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 13vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 10ch;
}

.hero-carousel .hero-content > p:not(.eyebrow) {
  max-width: 32ch;
  line-height: 1.35;
}

.hero-carousel .eyebrow {
  display: inline-block;
  max-width: 100%;
  line-height: 1.15;
  letter-spacing: 1px;
}

.banner {
  align-items: stretch;
}

.banner h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 7vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.banner .btn {
  flex: 0 0 auto;
}

@media (max-width: 680px) {
  .section {
    padding: 2rem 0;
  }

  .hero-carousel {
    min-height: min(620px, 72svh);
    align-items: end;
  }

  .hero-carousel .hero-content {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
  }

  .hero-carousel .hero-content h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    max-width: 11ch;
  }

  .hero-carousel .hero-content > p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .banner {
    display: grid;
    gap: 0.9rem;
    padding: 1.1rem;
  }

  .banner .btn {
    width: 100%;
  }

  .section-head {
    display: grid;
    align-items: start;
    gap: 0.45rem;
  }

  .section-head h1,
  .section-head h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    line-height: 0.96;
    letter-spacing: 0;
  }

  .category-card {
    padding: 0.8rem;
  }

  .category-card span {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
    line-height: 0.95;
  }

  .product-info h3 {
    font-size: 0.96rem;
    line-height: 1.18;
  }

  .product-info p:not(.product-category) {
    font-size: 0.82rem;
    line-height: 1.25;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(1120px, 93vw);
  }

  .logo {
    width: 112px;
    min-width: 112px;
  }

  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-carousel .hero-content h1 {
    max-width: 9ch;
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: 1fr;
  }

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

  .category-card {
    min-height: 92px;
  }

  .cart-item,
  .checkout-layout .cart-item {
    grid-template-columns: 64px 1fr;
  }

  .cart-item img {
    width: 64px;
    height: 64px;
  }

  .cart-item .cart-qty,
  .cart-item .btn {
    grid-column: 1 / -1;
  }
}

/* Final storefront polish */
:root {
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --soft-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.container {
  width: min(1160px, 94vw);
}

.section {
  padding: clamp(2.2rem, 4.4vw, 3.8rem) 0;
}

.section-head {
  align-items: end;
  margin-bottom: clamp(0.85rem, 2vw, 1.35rem);
}

h1,
h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-carousel {
  min-height: clamp(380px, 54vh, 540px);
}

.hero-carousel::before {
  background:
    linear-gradient(90deg, rgba(8, 20, 38, 0.78), rgba(8, 20, 38, 0.36) 52%, rgba(8, 20, 38, 0.18)),
    linear-gradient(0deg, rgba(8, 20, 38, 0.4), rgba(8, 20, 38, 0.04) 42%);
}

.hero-slide {
  background-position: center 32%;
}

.hero-carousel .hero-content {
  padding-top: 5rem;
  padding-bottom: clamp(3.2rem, 7vw, 4.8rem);
}

.hero-carousel .hero-content h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5.5vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-carousel .hero-content > p:not(.eyebrow) {
  max-width: 42ch;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1rem);
}

.category-card {
  min-height: 0;
  aspect-ratio: 1.55 / 1;
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: var(--soft-shadow);
  isolation: isolate;
  background-image:
    linear-gradient(135deg, rgba(5, 14, 26, 0.52), rgba(5, 14, 26, 0.12)),
    var(--category-image, linear-gradient(120deg, #24364c, #81523d));
  background-size: cover;
  background-position: center;
}

.category-card::before {
  inset: auto -22px -28px auto;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.12);
}

.category-card span {
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.product-grid,
.catalog-layout .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.product-card {
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
}

.product-card img {
  aspect-ratio: 4 / 4.7;
}

.product-info {
  gap: 0.55rem;
  padding: 0.9rem 0.9rem 0.75rem;
}

.product-info h3 {
  min-height: 0;
  font-size: 1rem;
  line-height: 1.18;
}

.product-info p:not(.product-category) {
  min-height: 0;
  font-size: 0.86rem;
  line-height: 1.28;
}

.product-info strong {
  font-size: 1rem;
}

.product-card > .btn {
  margin: 0 0.9rem 0.9rem;
  min-height: 38px;
  border-radius: var(--radius-sm);
}

.banner {
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.banner h3 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1160px, 92vw);
  }

  .section {
    padding: 1.85rem 0;
  }

  .hero-carousel {
    min-height: clamp(390px, 66svh, 520px);
  }

  .hero-carousel .hero-content {
    padding-top: 4.5rem;
    padding-bottom: 3.8rem;
  }

  .hero-carousel .hero-content h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .hero-carousel .hero-content > p:not(.eyebrow) {
    max-width: 31ch;
    font-size: 0.94rem;
  }

  .section-head h1,
  .section-head h2 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

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

  .category-card {
    aspect-ratio: 1.5 / 1;
    padding: 0.75rem;
  }

  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-card img {
    aspect-ratio: 1 / 1.05;
  }

  .product-info {
    padding: 0.72rem;
  }

  .product-info .product-category {
    font-size: 0.72rem;
  }

  .product-info h3 {
    font-size: 0.9rem;
  }

  .product-info p:not(.product-category) {
    display: none;
  }
}

@media (max-width: 380px) {
  .category-card span {
    font-size: 1.08rem;
  }

  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Final inner-page polish */
.top-strip {
  font-size: 0.78rem;
  padding: 0.38rem 0.75rem;
}

.header-main {
  padding: 0.78rem 0;
}

.logo {
  width: clamp(132px, 18vw, 190px);
  min-width: 132px;
}

.main-nav {
  gap: clamp(0.7rem, 1.8vw, 1.15rem);
  padding-bottom: 0.72rem;
  font-size: 0.92rem;
}

.search input {
  min-height: 40px;
}

.catalog-layout {
  grid-template-columns: minmax(210px, 235px) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.45rem);
}

.filters,
.contact-form,
.contact-card,
.cart-summary,
.checkout-summary,
.admin-card {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.filters {
  padding: 0.9rem;
}

.filters h3,
.checkout-form h3,
.contact-card h3 {
  font-size: 1.05rem;
}

.filters label,
.checkout-form label,
.qty-field {
  font-size: 0.88rem;
}

.filters input,
.filters select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.contact-form input,
.contact-form textarea,
.cart-qty,
.qty-field input {
  min-height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.product-detail {
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}

.product-detail > img {
  max-width: 460px;
  max-height: 560px;
  border-radius: var(--radius-md);
}

.product-detail h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.detail-price {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
}

.size-btn {
  min-width: 64px;
  border-radius: var(--radius-sm);
}

.cart-layout,
.checkout-layout {
  gap: clamp(1rem, 2vw, 1.4rem);
}

.cart-item {
  grid-template-columns: 78px minmax(0, 1fr) 84px auto;
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.cart-item img {
  width: 78px;
  height: 78px;
  border-radius: var(--radius-sm);
}

.cart-item h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.cart-summary {
  padding: 0.9rem;
}

.contact-grid {
  gap: clamp(1rem, 2vw, 1.35rem);
}

@media (max-width: 900px) {
  .catalog-layout,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .product-detail > img {
    max-width: min(100%, 520px);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .header-main {
    padding: 0.68rem 0;
  }

  .main-nav {
    padding-bottom: 0.62rem;
  }

  .cart-item {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .cart-item img {
    width: 68px;
    height: 68px;
  }

  .cart-item .cart-qty,
  .cart-item .btn {
    grid-column: 1 / -1;
  }
}

/* Visual correction from viewport QA */
body {
  background: #f6f4ef;
}

.site-header {
  background: rgba(246, 244, 239, 0.98);
  border-bottom: 1px solid rgba(15, 52, 98, 0.12);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(15, 52, 98, 0.22);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  background: rgba(255, 255, 255, 0.72);
  color: #163455;
}

.product-card {
  background: #fff;
  color: #1d1f24;
  border: 1px solid rgba(24, 32, 45, 0.08);
}

.product-card > a:not(.btn),
.product-info,
.product-info h3,
.product-info p:not(.product-category),
.product-info strong {
  color: inherit;
}

.product-info .product-category {
  color: #1467a8;
}

.banner {
  align-items: center;
  color: #1d1f24;
  background: linear-gradient(135deg, #fff3df, #f7e3be);
  border-color: rgba(177, 111, 35, 0.22);
  box-shadow: var(--soft-shadow);
}

.banner .btn {
  align-self: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  min-height: 42px;
  border-radius: var(--radius-sm);
  padding: 0.72rem 1rem;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .footer-links,
  .footer-contact {
    justify-self: stretch;
  }

  .main-nav {
    gap: 0.5rem;
  }

  .main-nav a {
    min-height: 32px;
    padding: 0.36rem 0.68rem;
    font-size: 0.82rem;
  }

  .banner {
    display: grid;
    gap: 0.9rem;
    align-items: start;
  }

  .banner .btn {
    justify-self: start;
    width: auto;
    white-space: normal;
  }
}

/* Responsive system pass */
html {
  font-size: clamp(14px, 0.35vw + 13px, 16px);
}

body {
  min-width: 320px;
}

.container {
  width: min(1180px, calc(100vw - clamp(1rem, 4vw, 3rem)));
}

.site-header {
  overflow: clip;
}

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

.quick-nav,
.main-nav {
  min-width: 0;
}

.quick-nav a,
.main-nav a,
.btn {
  text-wrap: balance;
}

.hero-carousel {
  min-height: clamp(360px, 52svh, 560px);
}

.hero-carousel .hero-content {
  width: min(1180px, calc(100vw - clamp(1rem, 4vw, 3rem)));
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
}

.product-grid,
.catalog-layout .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(205px, 100%), 1fr));
}

.catalog-layout,
.cart-layout,
.checkout-layout,
.contact-grid,
.admin-layout,
.product-detail {
  min-width: 0;
}

.catalog-layout > *,
.cart-layout > *,
.checkout-layout > *,
.contact-grid > *,
.admin-layout > *,
.product-detail > * {
  min-width: 0;
}

.product-card {
  min-width: 0;
}

.product-card img {
  width: 100%;
  height: auto;
}

.banner {
  width: min(1180px, calc(100vw - clamp(1rem, 4vw, 3rem)));
  margin-inline: auto;
}

.admin-table-wrap,
.admin-order-output {
  max-width: 100%;
  overflow-x: auto;
}

@media (min-width: 1280px) {
  .hero-carousel {
    min-height: 560px;
  }

  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

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

@media (max-width: 1180px) {
  .search {
    max-width: 360px;
  }

  .catalog-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  }
}

@media (max-width: 980px) {
  .header-main {
    gap: 0.75rem;
  }

  .quick-nav {
    gap: 0.65rem;
  }

  .quick-nav a {
    font-size: 0.88rem;
  }

  .catalog-layout,
  .cart-layout,
  .checkout-layout,
  .contact-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .filters,
  .cart-summary {
    position: static;
  }

  .product-detail > img {
    justify-self: center;
    max-width: min(520px, 100%);
  }
}

@media (max-width: 760px) {
  .top-strip {
    font-size: 0.72rem;
  }

  .header-main {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .search {
    display: none;
  }

  .quick-nav {
    top: 62px;
    right: clamp(0.75rem, 4vw, 1.2rem);
    left: auto;
    width: min(300px, calc(100vw - 1.5rem));
  }

  .main-nav {
    width: min(1180px, calc(100vw - 1rem));
    padding-inline: 0;
    scroll-snap-type: x proximity;
  }

  .main-nav a {
    scroll-snap-align: start;
    flex: 0 0 auto;
  }

  .hero-carousel {
    min-height: clamp(340px, 58svh, 500px);
  }

  .hero-carousel .hero-content {
    padding-top: 3.5rem;
    padding-bottom: 3.2rem;
  }

  .hero-carousel .hero-content h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .hero-actions .btn {
    width: auto;
    min-width: min(100%, 160px);
  }

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

  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .filters label {
    margin-top: 0;
  }

  .banner {
    padding: 1rem;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-carousel .hero-content,
  .banner {
    width: calc(100vw - 1rem);
  }

  .section {
    padding: 1.45rem 0;
  }

  .logo {
    width: 112px;
    min-width: 112px;
  }

  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    width: calc(100vw - 0.75rem);
    gap: 0.42rem;
  }

  .main-nav a {
    font-size: 0.78rem;
    min-height: 30px;
    padding: 0.32rem 0.56rem;
  }

  .hero-carousel {
    min-height: clamp(320px, 54svh, 430px);
  }

  .hero-carousel .hero-content h1 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .category-card {
    aspect-ratio: 1.35 / 1;
    border-radius: 10px;
  }

  .product-grid,
  .catalog-layout .product-grid {
    gap: 0.65rem;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-card > .btn {
    font-size: 0.76rem;
  }

  .banner .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .cart-item img {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 360px) {
  .category-grid,
  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel .hero-content h1 {
    max-width: 10ch;
  }
}

/* About page and darker home header */
body[data-page="home"] .site-header {
  background: rgba(14, 17, 25, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(5, 10, 18, 0.22);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.compact {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(14, 17, 25, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(5, 10, 18, 0.2);
}

body[data-page="home"] .header-main {
  padding: 0.5rem 0;
}

body[data-page="home"].header-is-condensed .site-header {
  box-shadow: 0 8px 22px rgba(5, 10, 18, 0.24);
}

body[data-page="home"].header-is-condensed .top-strip {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
}

body[data-page="home"].header-is-condensed .header-main {
  padding: 0.34rem 0;
}

body[data-page="home"].header-is-condensed .logo {
  width: clamp(94px, 9vw, 122px);
  min-width: 94px;
}

body[data-page="home"] .logo {
  width: clamp(116px, 13vw, 158px);
  min-width: 116px;
  transition: width 0.2s ease, min-width 0.2s ease;
}

body[data-page="home"] .top-strip {
  background: #070a10;
  color: #e7edf8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 34px;
  transition: max-height 0.2s ease, padding 0.2s ease, opacity 0.2s ease;
}

body[data-page="home"] .search input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

body[data-page="home"] .search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .quick-nav,
body[data-page="home"] .main-nav {
  color: #edf4ff;
}

body[data-page="home"] .main-nav {
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  padding-bottom: 0.6rem;
}

.site-header.compact .quick-nav {
  color: #edf4ff;
}

.site-header.compact .quick-nav a:hover {
  color: #ff8a64;
}

.site-header.compact .logo {
  width: clamp(112px, 13vw, 154px);
  min-width: 112px;
}

body.header-is-condensed .site-header.compact .header-main {
  padding: 0.46rem 0;
}

body.header-is-condensed .site-header.compact .logo {
  width: clamp(92px, 9vw, 118px);
  min-width: 92px;
}

body[data-page="home"] .main-nav a {
  min-height: 0;
  padding: 0.28rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #edf4ff;
  font-size: 0.96rem;
  position: relative;
}

body[data-page="home"] .main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.1rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #ff6a3d;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

body[data-page="home"] .quick-nav a:hover,
body[data-page="home"] .main-nav a:hover {
  color: #ff8a64;
}

body[data-page="home"] .main-nav a:hover::after {
  transform: scaleX(1);
}

body[data-page="home"] .mobile-nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-page="home"] .mobile-nav-toggle span {
  background: #f5f8ff;
}

.about-hero {
  background: #0e1119;
  color: #f3f6fb;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
  gap: clamp(1.3rem, 3vw, 2.4rem);
  align-items: center;
}

.about-hero-copy {
  display: grid;
  gap: 0.95rem;
  align-content: center;
}

.about-hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  color: #ffffff;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 54ch;
  margin: 0;
  color: #d5dce8;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-hero-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.3);
}

.about-hero-photo img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: start;
}

.about-story h2 {
  max-width: 13ch;
}

.about-story p {
  max-width: 64ch;
  color: #4f5868;
  line-height: 1.65;
}

.about-points {
  display: grid;
  gap: 0.75rem;
}

.about-points article {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid rgba(18, 28, 44, 0.1);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.about-points strong {
  color: #0f3462;
  font-size: 1.05rem;
}

.about-points span {
  color: #5a6373;
  line-height: 1.45;
}

.about-gallery {
  background: #ede8df;
}

.about-gallery .section-head p {
  max-width: 48ch;
  color: #596171;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: clamp(0.75rem, 1.6vw, 1rem);
}

.about-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
}

.about-photo-grid img:first-child {
  aspect-ratio: 4 / 3.25;
}

@media (max-width: 900px) {
  .about-hero-grid,
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story h2 {
    max-width: 100%;
  }

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

@media (max-width: 760px) {
  body[data-page="home"] .main-nav {
    gap: 1rem;
    padding-bottom: 0.55rem;
  }

  body[data-page="home"] .main-nav a {
    min-height: 0;
    padding: 0.28rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.88rem;
  }

  .site-header.compact .quick-nav {
    background: rgba(14, 17, 25, 0.98);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .site-header.compact .quick-nav a {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #edf4ff;
  }

  body[data-page="home"] .quick-nav {
    background: rgba(14, 17, 25, 0.98);
    border-color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="home"] .quick-nav a {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #edf4ff;
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .logo {
    width: 108px;
    min-width: 108px;
  }

  body[data-page="home"].header-is-condensed .logo,
  body.header-is-condensed .site-header.compact .logo {
    width: 88px;
    min-width: 88px;
  }

  .about-hero {
    padding-top: 1.5rem;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .about-hero-photo img {
    aspect-ratio: 1 / 0.86;
  }

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

  .about-photo-grid img {
    min-height: 220px;
  }
}

/* Keep catalog cards from stretching when filters return few items */
.catalog-layout .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(205px, 260px));
  justify-content: start;
  align-items: start;
}

.catalog-layout .product-card {
  width: 100%;
  max-width: 260px;
}

@media (max-width: 760px) {
  .catalog-layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-layout .product-card {
    max-width: none;
  }
}

@media (max-width: 360px) {
  .catalog-layout .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Cart polish */
body[data-page="carrinho"] main.container {
  width: min(1180px, calc(100vw - clamp(1rem, 4vw, 3rem)));
}

body[data-page="carrinho"] .section-head {
  align-items: end;
  margin-bottom: 1.25rem;
}

.cart-empty-state {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgba(21, 33, 51, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 14%, rgba(223, 85, 50, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5f1ea);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.1);
}

.cart-empty-state::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -12% -42% 42%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(15, 52, 98, 0.08);
}

.cart-empty-icon {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, #172a45, #0e1119);
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.22);
}

.cart-empty-icon svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.cart-empty-state h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.cart-empty-state > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 44ch;
  margin: 0;
  color: #586170;
  font-size: 1.02rem;
  line-height: 1.55;
}

.cart-empty-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.cart-empty-actions .btn {
  min-width: 150px;
}

.cart-empty-actions .btn-light {
  background: #ffffff;
  color: #172236;
  border: 1px solid rgba(21, 33, 51, 0.14);
}

.cart-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid rgba(21, 33, 51, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(14, 17, 25, 0.96), rgba(23, 42, 69, 0.94)),
    url("https://images.unsplash.com/photo-1521223890158-f9f7c3d5d504?auto=format&fit=crop&w=1200&q=70") center/cover;
  color: #fff;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.16);
}

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

.cart-hero p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cart-hero span {
  flex: 0 0 auto;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 900;
}

.cart-checkout-layout {
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 0.9rem;
}

.cart-line {
  grid-template-columns: 104px minmax(0, 1fr) 92px auto;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(21, 33, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

.cart-line img {
  width: 104px;
  height: 104px;
  border-radius: 14px;
  object-fit: cover;
}

.cart-line-info {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 0.18rem;
}

.cart-line-kicker {
  margin: 0;
  color: #9b4c24;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.cart-line h3 {
  font-size: 1.05rem;
  line-height: 1.15;
}

.cart-line p {
  margin: 0;
  color: #626b7a;
}

.cart-line-price {
  color: #0f3462 !important;
  font-weight: 900;
}

.cart-qty-wrap {
  display: grid;
  gap: 0.32rem;
  align-content: center;
  color: #697284;
  font-size: 0.76rem;
  font-weight: 900;
}

.cart-remove-btn {
  align-self: center;
  min-height: 40px;
  color: #28344a;
  background: #eef2f8;
  border: 1px solid #d9e2ef;
}

.cart-checkout-card {
  position: sticky;
  top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(21, 33, 51, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
}

.checkout-card-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cart-checkout-card .checkout-totals {
  border-radius: 16px;
  background: #0e1119;
  border: 0;
}

.cart-checkout-card .checkout-totals span {
  color: rgba(255, 255, 255, 0.68) !important;
}

.cart-checkout-card .checkout-totals strong {
  color: #ffffff !important;
}

.cart-checkout-card .checkout-total-line {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.delivery-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.delivery-choice label {
  min-height: 44px;
  border: 1px solid #e3dccf;
  border-radius: 12px;
  padding: 0.65rem;
  background: #fff;
}

.checkout-submit {
  min-height: 48px;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(223, 85, 50, 0.26);
}

@media (max-width: 900px) {
  .cart-checkout-card {
    position: static;
  }

  .cart-line {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-line img {
    width: 82px;
    height: 82px;
  }

  .cart-line .cart-qty-wrap,
  .cart-line .cart-remove-btn {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .cart-hero {
    display: grid;
    align-items: start;
  }

  .cart-empty-actions,
  .cart-empty-actions .btn {
    width: 100%;
  }

  .cart-line {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .cart-line img {
    width: 72px;
    height: 72px;
  }

  .delivery-choice {
    grid-template-columns: 1fr;
  }
}

/* Mobile menu correction */
@media (max-width: 760px) {
  .site-header,
  body[data-page="home"] .site-header,
  .site-header.compact {
    overflow: visible;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 140;
  }

  .quick-nav,
  body[data-page="home"] .quick-nav,
  .site-header.compact .quick-nav {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 8.65rem);
    right: clamp(0.75rem, 4vw, 1.2rem);
    left: clamp(0.75rem, 4vw, 1.2rem);
    width: auto;
    max-width: none;
    max-height: calc(100svh - 9.4rem);
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(5, 10, 18, 0.34);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    z-index: 120;
  }

  body.header-is-condensed .quick-nav {
    top: calc(env(safe-area-inset-top, 0px) + 4.2rem);
    max-height: calc(100svh - 5rem);
  }

  .quick-nav.is-open,
  body[data-page="home"] .quick-nav.is-open,
  .site-header.compact .quick-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .quick-nav a,
  body[data-page="home"] .quick-nav a,
  .site-header.compact .quick-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    font-size: 0.94rem;
  }
}
