:root {
  --orange: #f97316;
  --orange-strong: #ea580c;
  --orange-soft: #fff3e8;
  --brand-gradient: linear-gradient(135deg, #f97316, #fb923c);
  --btn-text-color: #ffffff;
  --btn-hover-text-color: #ffffff;
  --btn-shadow: 0 12px 24px rgba(249, 115, 22, .22);
  --ink: #1f2937;
  --muted: #667085;
  --line: #e8ebf0;
  --surface: #ffffff;
  --soft: #f7f8fb;
  --shadow: 0 18px 45px rgba(31, 41, 55, .08);
  --shadow-sm: 0 10px 24px rgba(31, 41, 55, .06);
}

* {
  letter-spacing: 0;
}

body {
  background: #fbfcfe;
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .95rem;
}

a {
  color: var(--orange-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111827;
  font-weight: 700;
}

.text-orange,
.price {
  color: var(--orange-strong) !important;
}

.site-header {
  z-index: 1030;
}

.top-commerce-bar {
  background: linear-gradient(90deg, #fff7ed 0%, #ffffff 45%, #f8fafc 100%);
  border-bottom: 1px solid #fed7aa;
  color: var(--ink);
}

.top-commerce-inner {
  align-items: center;
  display: flex;
  gap: 1.35rem;
  justify-content: flex-end;
  min-height: 50px;
}

.top-action {
  align-items: center;
  background: transparent;
  border: 0;
  color: #344054;
  display: inline-flex;
  gap: .7rem;
  padding: 0;
  text-decoration: none;
}

.top-action:hover {
  color: var(--orange-strong);
}

.top-school-registration {
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 11px;
  padding: .35rem .7rem;
}

.top-school-registration:hover {
  background: var(--orange-soft);
}

.top-stock-alert { align-items: center; background: #fff; border: 1px solid #fed7aa; border-radius: 11px; color: #344054; display: flex; height: 36px; justify-content: center; position: relative; width: 38px; }
.top-stock-alert > span { align-items: center; background: #dc2626; border: 2px solid #fff; border-radius: 999px; color: #fff; display: flex; font-size: .58rem; font-weight: 800; height: 19px; justify-content: center; min-width: 19px; position: absolute; right: -7px; top: -7px; }
.stock-alert-menu { border: 1px solid var(--line); border-radius: 14px !important; box-shadow: 0 20px 50px rgba(17,24,39,.18) !important; min-width: 340px; overflow: hidden; padding: 0 !important; }
.stock-alert-menu header { background: #fffaf5; border-bottom: 1px solid #fed7aa; display: grid; padding: .9rem 1rem; }
.stock-alert-menu header small { color: #667085; font-size: .68rem; }
.stock-alert-menu > a { align-items: center; border-bottom: 1px solid var(--line); color: #344054; display: flex; gap: .7rem; padding: .7rem 1rem; text-decoration: none; }
.stock-alert-menu > a > i { color: #dc2626; width: 20px; }
.stock-alert-menu > a span { display: grid; }
.stock-alert-menu > a strong { font-size: .76rem; }
.stock-alert-menu > a small { color: #667085; font-size: .62rem; }
.stock-alert-menu footer { background: #f8fafc; padding: .7rem 1rem; }
.stock-alert-menu footer a { color: var(--orange-strong); display: flex; font-size: .72rem; font-weight: 700; justify-content: space-between; text-decoration: none; }
.stock-alert-empty { color: #15803d; font-size: .76rem; padding: 1rem; }

.top-action > i:first-child {
  align-items: center;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(249, 115, 22, .08);
  color: var(--orange-strong);
  display: inline-flex;
  font-size: 1.05rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.top-action span {
  display: grid;
  line-height: 1.05;
}

.top-action small {
  color: #667085;
  font-size: .72rem;
  font-weight: 500;
}

.top-action strong {
  color: #1f2937;
  font-size: .82rem;
  font-weight: 700;
}

.top-action .chevron {
  color: #98a2b3;
  font-size: .62rem;
  margin-left: -.35rem;
}

.top-cart {
  align-items: center;
  background: var(--orange);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(249, 115, 22, .18);
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  height: 36px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  width: 42px;
}

.top-cart span {
  align-items: center;
  background: #111827;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  height: 19px;
  justify-content: center;
  min-width: 24px;
  padding: 0 .35rem;
  position: absolute;
  right: -18px;
  top: 2px;
}

.top-dropdown {
  position: relative;
}

.top-dropdown .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, .18);
  margin-top: .8rem !important;
  opacity: 0;
  padding: 0;
  transform: translateY(10px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
}

.top-dropdown .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.top-dropdown .dropdown-menu::before {
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
  position: absolute;
  right: 28px;
  top: -10px;
}

.service-menu {
  min-width: 240px;
}

.service-menu section {
  padding: .8rem .9rem .65rem;
}

.service-menu section + section {
  border-top: 1px solid var(--line);
}

.service-menu h3 {
  color: #344054;
  font-size: .9rem;
  margin: 0 0 .45rem;
}

.service-menu a,
.service-line {
  align-items: center;
  color: #1f2937;
  display: flex;
  gap: .7rem;
  line-height: 1.1;
  margin: .4rem 0;
  text-decoration: none;
}

.service-menu a:hover {
  color: var(--orange-strong);
}

.service-menu i,
.service-line i {
  color: #111827;
  font-size: 1rem;
  text-align: center;
  width: 20px;
}

.service-menu i.whatsapp,
.service-cta i {
  color: #22c55e;
}

.service-menu strong {
  display: block;
  font-size: .9rem;
}

.service-menu small,
.service-line span {
  color: #475467;
  font-size: .74rem;
}

.service-cta {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #1f2937 !important;
  display: flex;
  font-weight: 600;
  gap: .5rem;
  justify-content: center;
  margin: .65rem .9rem .85rem !important;
  min-height: 42px;
  text-decoration: none;
}

.service-cta:hover {
  background: #ecfdf3;
  border-color: #bbf7d0;
}

.account-menu {
  min-width: 216px;
}

.account-menu .account-greeting {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: .8rem;
  padding: .9rem 1rem;
}

.account-menu .avatar {
  align-items: center;
  background: #eef2f6;
  border-radius: 50%;
  color: #64748b;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.account-menu a {
  align-items: center;
  color: #344054;
  display: flex;
  font-weight: 600;
  gap: .8rem;
  padding: .65rem 1rem;
  text-decoration: none;
}

.account-menu a:hover {
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.account-menu a i {
  color: #111827;
  width: 20px;
}

.app-navbar {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(232, 235, 240, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(31, 41, 55, .05);
}

.navbar-brand {
  align-items: center;
  color: #101828 !important;
  display: inline-flex;
  font-weight: 800;
  gap: .65rem;
}

.brand-mark {
  align-items: center;
  background: var(--brand-gradient);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, .25);
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.navbar .nav-link {
  align-items: center;
  border-radius: 999px;
  color: #4b5563;
  display: inline-flex;
  font-size: .9rem;
  font-weight: 500;
  gap: .45rem;
  margin: .15rem;
  padding: .48rem .72rem;
}

.navbar .nav-link:hover {
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.header-product-search {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: flex;
  flex: 0 1 320px;
  margin: 0 1rem;
  min-width: 210px;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.header-product-search:focus-within {
  background: #fff;
  border-color: #fdba74;
  box-shadow: 0 0 0 .2rem rgba(249, 115, 22, .1);
}

.header-product-search > i {
  color: #98a2b3;
  margin-left: .8rem;
}

.header-product-search input {
  background: transparent;
  border: 0;
  color: #111827;
  font-size: .8rem;
  min-height: 38px;
  min-width: 0;
  outline: 0;
  padding: .45rem .65rem;
  width: 100%;
}

.header-product-search button {
  align-self: stretch;
  background: var(--orange);
  border: 0;
  color: var(--btn-text-color);
  font-size: .75rem;
  font-weight: 700;
  padding: 0 .8rem;
}

.header-product-search button:hover {
  background: var(--orange-strong);
  color: var(--btn-hover-text-color);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.admin-mobile-menu-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #344054;
  display: flex;
  font-size: .82rem;
  font-weight: 700;
  justify-content: space-between;
  margin-bottom: 1rem;
  min-height: 46px;
  padding: .7rem .9rem;
  width: 100%;
}

.admin-mobile-menu-toggle span {
  align-items: center;
  display: flex;
  gap: .55rem;
}

.admin-mobile-menu-toggle span i {
  color: var(--orange-strong);
}

.admin-mobile-menu-toggle[aria-expanded="true"] > i {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .mobile-navigation.offcanvas {
    background: transparent;
    border: 0;
    flex-grow: 1;
    position: static;
    transform: none !important;
    visibility: visible !important;
    width: auto !important;
    z-index: auto;
  }

  .mobile-navigation .offcanvas-body {
    align-items: center;
    display: flex;
    flex-grow: 1;
    padding: 0;
  }

  .admin-mobile-offcanvas .offcanvas-body {
    display: block;
    padding: 0;
  }
}

.btn {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-weight: 600;
  gap: .45rem;
  justify-content: center;
  min-height: 42px;
  padding: .62rem 1rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn-sm {
  border-radius: 9px;
  min-height: 34px;
  padding: .42rem .7rem;
}

.btn-lg {
  border-radius: 12px;
  min-height: 50px;
  padding: .8rem 1.2rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-orange {
  --bs-btn-bg: var(--orange);
  --bs-btn-border-color: var(--orange);
  --bs-btn-hover-bg: var(--orange-strong);
  --bs-btn-hover-border-color: var(--orange-strong);
  --bs-btn-active-bg: var(--orange-strong);
  --bs-btn-active-border-color: var(--orange-strong);
  --bs-btn-color: var(--btn-text-color);
  --bs-btn-hover-color: var(--btn-hover-text-color);
  box-shadow: var(--btn-shadow);
}

.btn-soft {
  background: #fff;
  border: 1px solid var(--line);
  color: #344054;
  box-shadow: 0 8px 18px rgba(31, 41, 55, .05);
}

.btn-soft:hover,
.btn-outline-dark:hover {
  background: var(--orange-soft);
  border-color: #fed7aa;
  color: var(--orange-strong);
}

.home-carousel-wrap {
  background: #050505;
  height: 460px;
  overflow: hidden;
}

.carousel-banner {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: flex;
  height: 460px;
  min-height: 460px;
  position: relative;
}

.home-carousel-wrap .carousel,
.home-carousel-wrap .carousel-inner,
.home-carousel-wrap .carousel-item {
  height: 100%;
}

.carousel-banner::before {
  background: linear-gradient(90deg, var(--carousel-overlay, rgba(0, 0, 0, .78)) 0%, color-mix(in srgb, var(--carousel-overlay, rgba(0, 0, 0, .54)) 78%, transparent) 42%, rgba(0, 0, 0, .1) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.carousel-banner .container {
  position: relative;
  z-index: 1;
}

.carousel-copy {
  max-width: 620px;
  padding: 2.3rem 0 5.2rem;
}

.carousel-copy h1,
.carousel-copy h2 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.carousel-copy p {
  color: #f2f4f7;
  font-size: 1.06rem;
  margin-bottom: 1.4rem;
  max-width: 530px;
}

.carousel-copy .btn-lg {
  border-radius: 10px;
  font-size: .96rem;
  min-height: 44px;
  padding: .64rem 1rem;
}

.home-carousel-wrap .carousel-indicators {
  align-items: center;
  background: rgba(17, 24, 39, .52);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  gap: .42rem;
  left: 50%;
  margin: 0;
  padding: .48rem .6rem;
  right: auto;
  transform: translateX(-50%);
  width: max-content;
}

.home-carousel-wrap .carousel-indicators [data-bs-target] {
  background: rgba(255, 255, 255, .62);
  border: 0;
  border-radius: 999px;
  box-sizing: border-box;
  flex: 0 0 auto;
  height: 8px;
  margin: 0;
  opacity: 1;
  transition: background-color .2s ease, width .2s ease, transform .2s ease;
  width: 8px;
}

.home-carousel-wrap .carousel-indicators [data-bs-target]:hover {
  background: #fff;
  transform: scale(1.15);
}

.home-carousel-wrap .carousel-indicators .active {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .2);
  width: 24px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 7%;
}

.eyebrow {
  align-items: center;
  background: #111827;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 600;
  gap: .4rem;
  margin-bottom: 1rem;
  padding: .42rem .75rem;
}

.benefit-strip {
  background: #fffaf5;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(31, 41, 55, .04);
}

.benefit-item {
  align-items: center;
  border-right: 1px solid #fed7aa;
  display: flex;
  gap: .9rem;
  min-height: 70px;
  padding: .9rem 1.05rem;
}

.benefit-item i {
  align-items: center;
  background: #fff;
  border: 1px solid #fdba74;
  border-radius: 10px;
  color: var(--orange-strong);
  display: inline-flex;
  flex: 0 0 38px;
  font-size: 1.05rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.benefit-item span {
  display: grid;
  line-height: 1.15;
}

.benefit-item strong {
  color: #1f2937;
  font-size: .92rem;
  font-weight: 800;
}

.benefit-item small {
  color: #475467;
  font-size: .78rem;
}

.home-categories {
  background: #f4f5f7;
  border-bottom: 1px solid var(--line);
  padding: .8rem 0;
}

.home-categories-inner {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 110px minmax(0, 1fr);
}

.home-categories h2 {
  font-size: .82rem;
  margin: 0;
}

.home-category-list {
  display: flex;
  gap: 1.35rem;
  overflow-x: auto;
  padding: .15rem 0;
  scrollbar-width: thin;
}

.home-category {
  align-items: center;
  color: #344054;
  display: flex;
  flex: 0 0 82px;
  flex-direction: column;
  gap: .45rem;
  text-align: center;
  text-decoration: none;
}

.home-category-image {
  align-items: center;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(31, 41, 55, .06);
  color: var(--orange-strong);
  display: flex;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  width: 58px;
}

.home-category-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-category strong {
  font-size: .7rem;
  line-height: 1.2;
}

.home-category:hover .home-category-image {
  border-color: #fdba74;
  box-shadow: 0 12px 26px rgba(249, 115, 22, .13);
  transform: translateY(-2px);
}

.category-admin-thumb {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  object-fit: cover;
  width: 48px;
}

.category-admin-placeholder {
  color: #98a2b3;
}

.home-quick-links {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 2rem;
}

.home-quick-links-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.home-quick-links-heading span {
  color: var(--orange-strong);
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .15rem;
  text-transform: uppercase;
}

.home-quick-links-heading h2 {
  font-size: 1.25rem;
  margin: 0;
}

.quick-card,
.metric-card {
  background: linear-gradient(135deg, var(--quick-bg, #ffffff) 0%, #ffffff 78%);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  display: grid;
  gap: .15rem .8rem;
  grid-template-columns: 42px 1fr;
  height: 100%;
  min-height: 76px;
  padding: .85rem 1rem;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.quick-card::after {
  background: var(--quick-accent, var(--orange));
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 4px;
}

.quick-card i {
  align-items: center;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 11px;
  color: var(--quick-accent, var(--orange-strong));
  display: inline-flex;
  grid-row: 1 / span 2;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.quick-card span {
  align-self: end;
  color: var(--quick-text, #111827);
  font-weight: 600;
}

.quick-card small {
  color: color-mix(in srgb, var(--quick-text, #111827) 58%, #667085);
  font-size: .76rem;
  line-height: 1.2;
}

.quick-card:hover {
  border-color: color-mix(in srgb, var(--quick-accent, var(--orange)) 45%, #fff);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--quick-accent, var(--orange)) 14%, transparent);
  transform: translateY(-2px);
}

.quick-card b {
  background: color-mix(in srgb, var(--quick-accent, var(--orange)) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--quick-accent, var(--orange)) 28%, #fff);
  border-radius: 999px;
  color: var(--quick-accent, var(--orange-strong));
  font-size: .62rem;
  font-weight: 800;
  padding: .22rem .48rem;
  position: absolute;
  right: .8rem;
  top: .65rem;
}

.quick-card-featured {
  --quick-accent: #f97316;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 58%);
  border-color: #fdba74;
  box-shadow: 0 16px 34px rgba(249, 115, 22, .13);
}

.quick-card-featured i {
  background: var(--orange);
  color: #fff;
}

.quick-card-product {
  --quick-accent: #2563eb;
}

.quick-card-kit {
  --quick-accent: #7c3aed;
}

.quick-card-promo {
  --quick-accent: #dc2626;
  background: linear-gradient(135deg, #fff1f2 0%, #fff 62%);
}

.metric-card span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
  grid-column: 1 / -1;
}

.metric-card strong {
  color: #111827;
  display: block;
  font-size: 1.55rem;
  grid-column: 1 / -1;
  margin-top: .15rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  border-color: #fed7aa;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card .card-body {
  padding: 1rem;
}
.product-card-actions { align-items: stretch; display: flex; gap: .4rem; }
.product-card-actions > a { flex: 1; min-width: 0; }
.product-card-actions > form { display: flex; flex: 0 0 auto; }
.btn-quick-cart { background: #fff; border: 1px solid var(--orange); color: var(--orange-strong); min-height: 34px; padding: 0; width: 36px; }
.btn-quick-cart:hover { background: var(--orange); color: #fff; }
.btn-quick-cart:disabled { background: #f2f4f7; border-color: var(--line); color: #98a2b3; }

.promotions-carousel {
  position: relative;
}

.promotions-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.promotions-track::-webkit-scrollbar {
  display: none;
}

.promotions-item {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  scroll-snap-align: start;
}

.promotions-control {
  align-items: center;
  background: rgba(17, 24, 39, .72);
  border: 0;
  border-radius: 50%;
  color: #fff;
  display: none;
  height: 34px;
  justify-content: center;
  opacity: .9;
  position: absolute;
  top: 32%;
  transform: translateY(-50%);
  transition: opacity .18s ease, background-color .18s ease;
  width: 34px;
  z-index: 2;
}

.promotions-carousel.is-scrollable .promotions-control {
  display: inline-flex;
}

.promotions-control-prev {
  left: -17px;
}

.promotions-control-next {
  right: -17px;
}

.promotions-control:hover,
.promotions-control:focus-visible {
  background: var(--orange);
}

@media (max-width: 991.98px) {
  .promotions-item {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
}

.product-img,
.detail-img {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f1f4f8, #ffffff);
  color: #98a2b3;
  display: grid;
  font-weight: 800;
  justify-items: center;
}

.product-img span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.product-img img,
.detail-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.detail-img {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.price {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
}

.auth-wrap {
  max-width: 520px;
}

.school-registration-page {
  background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 48%, #fff 100%);
}

.school-directory-page { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); min-height: 65vh; }
.school-directory-hero { background: linear-gradient(135deg, #fff7ed, #fff 58%, #f8fafc); border-bottom: 1px solid #fed7aa; padding: 3rem 0 4.5rem; }
.school-directory-hero span { color: var(--orange-strong); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.school-directory-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); margin: .35rem 0 .6rem; }
.school-directory-hero p { color: #667085; font-size: 1rem; margin: 0; max-width: 620px; }
.school-search-panel { align-items: end; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 22px 50px rgba(31, 41, 55, .1); display: grid; gap: .8rem; grid-template-columns: minmax(260px, 1fr) 150px 220px auto; margin-top: -6.5rem; padding: 1rem; position: relative; }
.school-search-panel .form-label { font-size: .7rem; font-weight: 700; }
.school-results-heading { align-items: end; display: flex; justify-content: space-between; margin: 2.5rem 0 1rem; }
.school-results-heading span { color: var(--orange-strong); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.school-results-heading h2 { font-size: 1.25rem; margin: .15rem 0 0; }
.school-results-heading a { color: #475467; font-size: .78rem; font-weight: 600; }
.school-directory-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.school-directory-card { align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); display: grid; gap: 1rem; grid-template-columns: 58px minmax(0, 1fr) auto; padding: 1rem; transition: border-color .18s ease, transform .18s ease; }
.school-directory-card:hover { border-color: #fdba74; transform: translateY(-2px); }
.school-directory-icon { align-items: center; background: var(--orange-soft); border-radius: 14px; color: var(--orange-strong); display: flex; font-size: 1.25rem; height: 54px; justify-content: center; width: 54px; }
.school-directory-info > span { color: #15803d; font-size: .62rem; font-weight: 700; }
.school-directory-info h3 { font-size: .95rem; margin: .2rem 0; }
.school-directory-info p { color: #667085; font-size: .7rem; margin: 0; }
.school-directory-info small { color: #98a2b3; font-size: .65rem; }
.school-directory-empty { background: #fff; border: 1px dashed #fdba74; border-radius: 18px; grid-column: 1 / -1; padding: 3rem 1rem; text-align: center; }
.school-directory-empty > i { color: var(--orange-strong); font-size: 2.2rem; }
.school-directory-empty h3 { font-size: 1.2rem; margin: .8rem 0 .35rem; }
.school-directory-empty p { color: #667085; }

.school-registration-layout {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1fr);
  margin: 0 auto;
  max-width: 1120px;
}

.school-registration-copy .eyebrow {
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.school-registration-copy h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.school-registration-copy > p {
  color: #475467;
  font-size: 1.02rem;
  line-height: 1.75;
}

.school-partner-benefits {
  display: grid;
  gap: .75rem;
  margin-top: 1.4rem;
}

.school-partner-benefits span {
  align-items: center;
  color: #344054;
  display: flex;
  font-weight: 600;
  gap: .6rem;
}

.school-partner-benefits i {
  color: #16a34a;
}

.school-registration-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(31, 41, 55, .1);
  padding: 1.5rem;
}

.school-form-note {
  align-items: center;
  color: #667085;
  display: flex;
  gap: .4rem;
  justify-content: center;
  margin-top: .9rem;
  text-align: center;
}

.register-wrap {
  max-width: 920px;
}

.form-control,
.form-select {
  border-color: var(--line);
  border-radius: 10px;
  min-height: 42px;
}

.form-control:focus,
.form-select:focus {
  border-color: #fdba74;
  box-shadow: 0 0 0 .22rem rgba(249, 115, 22, .12);
}

.form-label {
  color: #344054;
  font-size: .86rem;
  font-weight: 600;
}

.admin-menu {
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: 88px;
}

.admin-menu .list-group-item {
  align-items: center;
  border-color: var(--line);
  color: #475467;
  display: flex;
  font-weight: 500;
  gap: .7rem;
  min-height: 46px;
}

.admin-menu .list-group-item i {
  color: var(--orange-strong);
  width: 20px;
}

.admin-menu .list-group-item:hover {
  background: var(--orange-soft);
  color: #111827;
}

.super-store-context {
  align-items: center;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 72%);
  border: 1px solid #fed7aa;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(249, 115, 22, .08);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.super-store-context-main {
  align-items: center;
  display: flex;
  gap: .85rem;
}

.super-store-icon {
  align-items: center;
  background: var(--orange);
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.super-store-context small,
.super-store-context em {
  color: var(--muted);
  display: block;
  font-size: .78rem;
  font-style: normal;
}

.super-store-context strong {
  color: #111827;
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.super-store-context-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-end;
}

.admin-page-heading,
.admin-list-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.admin-page-heading span {
  color: var(--orange-strong);
  display: block;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-page-heading h1,
.admin-list-heading h2 {
  margin: 0;
}

.admin-list-heading {
  margin-top: 1.5rem;
}

.admin-list-heading p {
  color: #667085;
  font-size: .84rem;
  margin: .2rem 0 0;
}

.admin-form-card,
form.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
  padding: .9rem;
}

.admin-table-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-table-card .table thead th {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  color: #344054;
  font-size: .74rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.admin-table-card .table td,
.admin-table-card .table th {
  padding: .9rem 1rem;
}

form.card > .card-body {
  padding: .25rem;
}

.form-section-title {
  align-items: center;
  display: flex;
  gap: .8rem;
  margin-bottom: .75rem;
}

.form-section-title > i {
  align-items: center;
  background: var(--orange-soft);
  border: 1px solid #fed7aa;
  border-radius: 12px;
  color: var(--orange-strong);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.brand-logo {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  width: 40px;
}

.brand-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.form-section-title strong {
  display: block;
}

.form-section-title small {
  color: #667085;
  font-size: .78rem;
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  background: #fff;
  border-top: 1px solid var(--line);
  margin: .9rem -.9rem -.9rem;
  padding: .85rem .9rem;
}

.input-group-text {
  background: #fffaf5;
  border-color: var(--line);
  border-radius: 10px;
  color: var(--orange-strong);
  font-weight: 800;
}

.admin-toggle-row {
  display: grid;
  gap: .8rem;
  grid-template-columns: 1fr 1fr;
  margin-top: .8rem;
}

.admin-toggle {
  align-items: center;
  background: #fffaf5;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  gap: .1rem .75rem;
  grid-template-columns: 42px minmax(0, 1fr);
  margin: 0;
  padding: .7rem;
}

.admin-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.admin-toggle > span {
  align-items: center;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 11px;
  color: var(--orange-strong);
  display: inline-flex;
  grid-row: 1 / span 2;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.admin-toggle input:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.admin-toggle strong {
  color: #111827;
  font-size: .9rem;
}

.admin-toggle small {
  color: #667085;
  font-size: .76rem;
  line-height: 1.25;
}

.product-promo-price.is-hidden {
  display: none;
}

.product-admin-form .form-section-title.mt-4 {
  margin-top: 1rem !important;
}

.admin-product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-product-thumb {
  align-items: center;
  aspect-ratio: 4 / 2.6;
  background: linear-gradient(135deg, #f1f5f9, #fff);
  color: #98a2b3;
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
  overflow: hidden;
}

.admin-product-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.admin-product-body {
  display: grid;
  gap: .55rem;
  padding: .9rem;
}

.admin-product-tags {
  align-items: center;
  display: flex;
  gap: .5rem;
  justify-content: space-between;
}

.admin-product-tags > span {
  color: var(--orange-strong);
  font-size: .72rem;
  font-weight: 800;
}

.admin-product-body h3 {
  font-size: .98rem;
  line-height: 1.35;
  margin: 0;
  min-height: 2.65rem;
}

.admin-product-price small {
  color: #98a2b3;
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: line-through;
}

.admin-product-price strong {
  color: var(--orange-strong);
  font-size: 1.08rem;
}

.admin-product-meta {
  color: #667085;
  display: flex;
  flex-wrap: wrap;
  font-size: .74rem;
  gap: .45rem .7rem;
}

.admin-product-meta i {
  color: var(--orange-strong);
}

.admin-product-actions {
  border-top: 1px solid var(--line);
  display: grid;
  gap: .55rem;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  padding: .8rem .9rem;
}

.school-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .24), transparent 24%),
    linear-gradient(90deg, var(--school-color), #2b2f33);
  color: #fff;
}

.school-hero h1,
.school-hero p {
  color: #fff;
}

.table {
  --bs-table-bg: #fff;
  border-color: var(--line);
  border-radius: 14px;
  overflow: hidden;
  vertical-align: middle;
}

.table th {
  background: #f8fafc;
  color: #475467;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge {
  border-radius: 999px;
  font-weight: 600;
  padding: .38rem .6rem;
}

footer {
  color: var(--muted);
}

.admin-row-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: flex-end;
}

.admin-row-actions form {
  display: inline-flex;
  margin: 0;
}

.inventory-tabs { background: #fff; border: 1px solid var(--line); border-radius: 14px; display: flex; gap: .35rem; margin-bottom: 1rem; padding: .4rem; }
.inventory-tabs a { align-items: center; border-radius: 10px; color: #475467; display: flex; font-size: .75rem; font-weight: 700; gap: .4rem; padding: .55rem .75rem; text-decoration: none; }
.inventory-tabs a.active { background: var(--orange); color: #fff; }
.inventory-product-list { display: grid; gap: .7rem; }
.inventory-product { align-items: center; background: #fff; border: 1px solid var(--line); border-left: 4px solid #16a34a; border-radius: 14px; box-shadow: var(--shadow-sm); display: grid; gap: .8rem; grid-template-columns: 62px minmax(0,1fr) 85px 100px auto auto; padding: .7rem; }
.inventory-product.is-low { border-left-color: #f59e0b; }
.inventory-product.has-shortage { border-left-color: #dc2626; }
.inventory-product-image { align-items: center; aspect-ratio: 1; background: #f4f6f8; border-radius: 10px; color: #98a2b3; display: flex; justify-content: center; overflow: hidden; }
.inventory-product-image img { height: 100%; object-fit: cover; width: 100%; }
.inventory-product-info > span { color: var(--orange-strong); font-size: .58rem; font-weight: 800; text-transform: uppercase; }
.inventory-product-info h2 { font-size: .82rem; margin: .15rem 0; }
.inventory-product-info small { color: #667085; font-size: .62rem; }
.inventory-stock-number { display: grid; text-align: center; }
.inventory-stock-number span { color: #667085; font-size: .62rem; }
.inventory-stock-number strong { font-size: 1.15rem; }
.inventory-stock-number small { color: #98a2b3; font-size: .58rem; }
.purchase-forecast-note { align-items: center; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 14px; color: #1e40af; display: flex; gap: .8rem; margin-bottom: 1rem; padding: .8rem 1rem; }
.purchase-forecast-note > i { font-size: 1.25rem; }
.purchase-forecast-note div { display: grid; }
.purchase-forecast-note span { font-size: .7rem; }
.purchase-quantity { background: #fee2e2; border-radius: 999px; color: #b91c1c; font-size: .72rem; font-weight: 800; padding: .35rem .55rem; }

.site-socials {
  display: inline-flex;
  gap: .5rem;
}

.site-socials a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--orange-strong);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  width: 36px;
}

.site-socials a:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.site-footer {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  border-top: 1px solid #fed7aa;
  color: #344054;
  padding-top: 3rem;
}

.site-footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  padding-bottom: 2.5rem;
}

.site-footer h2 { font-size: .95rem; margin-bottom: 1rem; }
.footer-links, .footer-contact-list { display: grid; gap: .65rem; }
.footer-links a, .footer-contact-list a { color: #475467; font-size: .8rem; text-decoration: none; }
.footer-links a:hover, .footer-contact-list a:hover { color: var(--orange-strong); }
.footer-contact-list i { color: var(--orange-strong); margin-right: .35rem; width: 16px; }
.footer-links span, .footer-contact-list span { color: #98a2b3; font-size: .78rem; }
.footer-trust-image { align-items: center; display: flex; min-height: 56px; }
.footer-trust-image > img { max-height: 62px; max-width: 100%; object-fit: contain; object-position: left center; }
.footer-payment-placeholder { align-items: center; display: flex; flex-wrap: wrap; font-size: 1.75rem; gap: .5rem; }
.footer-security-placeholder { align-items: center; background: #f8fafc; border: 1px solid var(--line); border-radius: 10px; display: inline-flex; gap: .65rem; padding: .65rem .8rem; }
.footer-security-placeholder > i { color: #16a34a; font-size: 1.65rem; }
.footer-security-placeholder span { display: grid; line-height: 1.2; }
.footer-security-placeholder strong { font-size: .75rem; }
.footer-security-placeholder small { color: #667085; font-size: .62rem; }
.site-footer-bottom { align-items: center; border-top: 1px solid var(--line); display: flex; gap: 1rem; justify-content: space-between; min-height: 70px; padding: .8rem 0; }
.footer-credit-link { color: var(--orange-strong); font-weight: 700; text-decoration: none; }
.footer-credit-link:hover { text-decoration: underline; }
.cookie-consent { align-items: center; background: rgba(255,255,255,.98); border: 1px solid #fed7aa; border-radius: 18px; bottom: 1rem; box-shadow: 0 24px 65px rgba(17,24,39,.22); display: grid; gap: 1rem; grid-template-columns: 48px minmax(0,1fr) auto; left: 50%; max-width: 1120px; opacity: 0; padding: 1rem 1.1rem; position: fixed; transform: translate(-50%, 20px); transition: opacity .22s ease, transform .22s ease; width: calc(100% - 2rem); z-index: 1070; }
.cookie-consent[hidden] { display: none; }
.cookie-consent.is-visible { opacity: 1; transform: translate(-50%, 0); }
.cookie-consent-icon { align-items: center; background: var(--orange-soft); border-radius: 14px; color: var(--orange-strong); display: flex; font-size: 1.25rem; height: 48px; justify-content: center; width: 48px; }
.cookie-consent-copy strong { color: #111827; display: block; font-size: .9rem; margin-bottom: .2rem; }
.cookie-consent-copy p { color: #667085; font-size: .7rem; line-height: 1.55; margin: 0; }
.cookie-consent-copy a { font-weight: 700; }
.cookie-consent-actions { display: flex; gap: .5rem; }
.cookie-consent-actions .btn { font-size: .7rem; min-height: 38px; white-space: nowrap; }
.lgpd-admin-note { align-items: flex-start; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 12px; color: #475467; display: flex; font-size: .72rem; gap: .6rem; margin-top: 1rem; padding: .8rem; }
.lgpd-admin-note i { color: #2563eb; margin-top: .1rem; }
.whatsapp-widget { bottom: 1.25rem; position: fixed; right: 1.25rem; transition: bottom .25s ease; z-index: 1060; }
body:has(.cookie-consent.is-visible) .whatsapp-widget { bottom: 7.5rem; }
.whatsapp-float { align-items: center; animation: whatsapp-float 3.2s ease-in-out infinite; background: linear-gradient(135deg, #25d366, #14a94f); border: 0; border-radius: 999px; box-shadow: 0 14px 35px rgba(20,169,79,.34); color: #fff; display: flex; gap: .55rem; min-height: 58px; padding: 0 1rem; position: relative; }
.whatsapp-float > i { font-size: 1.65rem; position: relative; z-index: 1; }
.whatsapp-float > em { font-size: .72rem; font-style: normal; font-weight: 800; position: relative; z-index: 1; }
.whatsapp-float > b { align-items: center; background: #dc2626; border: 2px solid #fff; border-radius: 50%; display: flex; font-size: .55rem; height: 20px; justify-content: center; position: absolute; right: -2px; top: -5px; width: 20px; z-index: 2; }
.whatsapp-pulse { animation: whatsapp-pulse 2s ease-out infinite; background: #25d366; border-radius: inherit; inset: 0; position: absolute; }
.whatsapp-chat { background: #fff; border: 1px solid var(--line); border-radius: 18px; bottom: 72px; box-shadow: 0 24px 65px rgba(17,24,39,.24); opacity: 0; overflow: hidden; position: absolute; right: 0; transform: translateY(18px) scale(.96); transform-origin: bottom right; transition: opacity .22s ease, transform .22s ease; visibility: hidden; width: min(360px, calc(100vw - 2rem)); }
.whatsapp-chat[hidden] { display: none; }
.whatsapp-widget.is-open .whatsapp-chat { opacity: 1; transform: translateY(0) scale(1); visibility: visible; }
.whatsapp-chat header { align-items: center; background: linear-gradient(135deg, #075e54, #128c7e); color: #fff; display: grid; gap: .65rem; grid-template-columns: 44px minmax(0,1fr) 30px; padding: .9rem; }
.whatsapp-agent { align-items: center; background: #25d366; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; display: flex; font-size: 1.25rem; height: 44px; justify-content: center; position: relative; width: 44px; }
.whatsapp-agent b { background: #7cff99; border: 2px solid #075e54; border-radius: 50%; bottom: -1px; height: 11px; position: absolute; right: -1px; width: 11px; }
.whatsapp-chat header > div { display: grid; }
.whatsapp-chat header strong { color: #fff; font-size: .78rem; }
.whatsapp-chat header small { align-items: center; color: #d1fae5; display: flex; font-size: .55rem; gap: .3rem; }
.whatsapp-chat header small i { background: #7cff99; border-radius: 50%; height: 6px; width: 6px; }
.whatsapp-chat header button { background: transparent; border: 0; color: #fff; font-size: 1rem; }
.whatsapp-chat-body { background: #efeae2; padding: .85rem; }
.whatsapp-bubble { background: #fff; border-radius: 4px 12px 12px 12px; box-shadow: 0 3px 10px rgba(17,24,39,.08); color: #475467; font-size: .68rem; line-height: 1.5; margin-bottom: .75rem; padding: .65rem .75rem; }
.whatsapp-chat form { background: rgba(255,255,255,.9); border-radius: 12px; display: grid; gap: .55rem; padding: .7rem; }
.whatsapp-chat form label { color: #475467; display: grid; font-size: .58rem; font-weight: 700; gap: .2rem; }
.whatsapp-chat form .form-control { font-size: .7rem; min-height: 36px; }
.whatsapp-chat form textarea { resize: vertical; }
.whatsapp-send-button { background: #25d366; border: 0; color: #fff; font-size: .7rem; min-height: 38px; }
.whatsapp-send-button:hover { background: #14a94f; color: #fff; }
.whatsapp-privacy { color: #667085; display: block; font-size: .52rem; margin-top: .55rem; text-align: center; }
@keyframes whatsapp-pulse { 0% { opacity: .45; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.32); } }
@keyframes whatsapp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.footer-admin-preview { background: #fff; border: 1px solid var(--line); border-radius: 10px; display: block; margin-top: .75rem; max-height: 72px; max-width: 100%; object-fit: contain; padding: .5rem; }
.content-pages-table th { color: #667085; font-size: .72rem; text-transform: uppercase; }
.content-page-modal-form { border: 0; border-radius: 18px; }
.content-page-editor { line-height: 1.65; resize: vertical; }
.content-page-wrap { background: linear-gradient(180deg, #f8fafc, #fff); min-height: 60vh; }
.content-page-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); margin: 0 auto; max-width: 920px; overflow: hidden; padding: clamp(1.4rem, 4vw, 3rem); }
.content-page-heading { border-bottom: 1px solid var(--line); margin-bottom: 1.75rem; padding-bottom: 1.25rem; }
.content-page-heading span { color: var(--orange-strong); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.content-page-heading h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: .25rem 0 0; }
.content-page-body { color: #475467; font-size: .96rem; line-height: 1.9; }
.not-found-page { align-items: center; background: radial-gradient(circle at top left, var(--orange-soft), transparent 42%), #f8fafc; display: flex; min-height: 68vh; padding: 4rem 0; }
.not-found-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); margin: auto; max-width: 680px; overflow: hidden; padding: clamp(2rem, 6vw, 4rem); position: relative; text-align: center; }
.not-found-code { color: var(--orange-soft); font-size: clamp(7rem, 22vw, 13rem); font-weight: 800; left: 50%; line-height: 1; position: absolute; top: -.9rem; transform: translateX(-50%); user-select: none; }
.not-found-icon { align-items: center; background: var(--brand-gradient); border-radius: 18px; box-shadow: var(--btn-shadow); color: #fff; display: inline-flex; font-size: 1.5rem; height: 58px; justify-content: center; margin-bottom: 1rem; position: relative; width: 58px; }
.not-found-kicker { color: var(--orange-strong); display: block; font-size: .68rem; font-weight: 800; position: relative; text-transform: uppercase; }
.not-found-card h1 { font-size: clamp(1.7rem, 5vw, 2.6rem); margin: .35rem 0 .75rem; position: relative; }
.not-found-card p { color: #667085; margin: 0 auto 1.4rem; max-width: 500px; position: relative; }
.not-found-actions { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; position: relative; }
.not-found-card > small { color: #98a2b3; display: block; font-size: .68rem; margin-top: 1.2rem; position: relative; }

.appearance-tabs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  gap: .35rem;
  padding: .45rem;
}

.appearance-tabs .nav-link {
  align-items: center;
  border-radius: 12px;
  color: #475467;
  display: inline-flex;
  font-weight: 700;
  gap: .45rem;
}

.appearance-tabs .nav-link.active {
  background: var(--orange);
  color: #fff;
}

.appearance-section-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.appearance-section-head h2 {
  font-size: 1.35rem;
  margin: 0;
}

.appearance-section-head p {
  color: var(--muted);
  margin: .15rem 0 0;
}

.appearance-color-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.appearance-color-grid label {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #344054;
  display: grid;
  font-size: .78rem;
  font-weight: 700;
  gap: .35rem;
  padding: .75rem;
}

.appearance-color-grid input {
  border: 0;
  height: 38px;
  padding: 0;
  width: 100%;
}

.appearance-color-grid-compact {
  grid-template-columns: repeat(2, minmax(130px, 1fr));
}

.appearance-preview {
  background: linear-gradient(135deg, var(--preview-a), var(--preview-b), var(--preview-c));
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: #fff;
  min-height: 260px;
  padding: 1.5rem;
}

.appearance-preview span {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  opacity: .9;
  text-transform: uppercase;
}

.appearance-preview strong {
  display: block;
  font-size: 2rem;
  margin: .35rem 0 1rem;
}

.appearance-preview button {
  background: #fff;
  border: 0;
  border-radius: 12px;
  color: var(--orange-strong);
  font-weight: 800;
  padding: .75rem 1rem;
}

.appearance-preview-real {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-top {
  align-items: center;
  background: var(--preview-top-bg, #fff7ed);
  color: var(--preview-top-text, #1f2937);
  display: flex;
  font-size: .72rem;
  font-weight: 800;
  justify-content: space-between;
  padding: .7rem .9rem;
}

.preview-top span {
  color: inherit;
}

.preview-nav {
  align-items: center;
  background: var(--preview-nav-bg, #fff);
  border-bottom: 1px solid var(--line);
  color: var(--preview-nav-text, #344054);
  display: flex;
  gap: .7rem;
  padding: .9rem;
}

.preview-brand {
  background: linear-gradient(135deg, var(--preview-a, #f97316), var(--preview-b, #fb923c));
  border-radius: 11px;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--preview-a, #f97316) 22%, transparent);
  display: inline-block;
  height: 34px;
  width: 34px;
}

.preview-nav strong {
  color: inherit;
  font-size: 1rem;
  margin-right: auto;
}

.preview-nav em {
  color: inherit;
  font-size: .78rem;
  font-style: normal;
  font-weight: 700;
  opacity: .82;
}

.preview-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .78), rgba(15, 23, 42, .18)),
    linear-gradient(135deg, var(--preview-a, #f97316), var(--preview-b, #fb923c));
  color: #fff;
  min-height: 190px;
  padding: 1.55rem;
}

.preview-hero span {
  display: block;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  opacity: .9;
  text-transform: uppercase;
}

.preview-hero h3 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.08;
  margin: .5rem 0 1rem;
}

.preview-hero button {
  background: var(--preview-btn, #f97316);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--preview-shadow, #f97316) 24%, transparent);
  color: var(--preview-btn-text, #fff);
  font-weight: 900;
  padding: .7rem 1rem;
}

.preview-card-row {
  background: var(--preview-card-bg, #fffaf5);
  display: grid;
  gap: .65rem;
  grid-template-columns: repeat(3, 1fr);
  padding: .9rem;
}

.preview-card-row div {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--preview-a, #f97316) 20%, var(--line));
  border-left: 4px solid var(--preview-a, #f97316);
  border-radius: 12px;
  min-height: 54px;
}

.appearance-sort-list {
  display: grid;
  gap: .8rem;
}

.appearance-edit-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: .85rem;
  grid-template-columns: auto minmax(0, auto) 1fr auto;
  padding: .85rem;
}

.appearance-edit-card.is-dragging {
  opacity: .55;
}

.drag-handle {
  color: var(--muted);
  cursor: grab;
  font-size: 1.1rem;
  padding: .4rem;
}

.appearance-thumb {
  background-color: #e5e7eb;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  height: 72px;
  width: 120px;
}

.appearance-icon-preview {
  align-items: center;
  background: var(--orange-soft);
  border: 1px solid #fed7aa;
  border-radius: 12px;
  color: var(--orange-strong);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.appearance-inline-form {
  min-width: 0;
}

.appearance-delete-form {
  align-self: center;
}

.appearance-card-preview {
  max-width: 260px;
  min-width: 230px;
  pointer-events: none;
}

.product-page {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.product-breadcrumb {
  align-items: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(31, 41, 55, .04);
  color: #98a2b3;
  display: flex;
  flex-wrap: wrap;
  font-size: .78rem;
  gap: .25rem;
  margin-bottom: 1.6rem;
  padding: .55rem .75rem;
  width: fit-content;
}

.product-breadcrumb a {
  align-items: center;
  border-radius: 7px;
  color: #475467;
  display: inline-flex;
  gap: .4rem;
  font-weight: 600;
  padding: .35rem .45rem;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}

.product-breadcrumb a:hover {
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.product-breadcrumb a i {
  color: var(--orange-strong);
}

.product-breadcrumb a + a::before,
.product-breadcrumb strong::before {
  color: #cbd5e1;
  content: "\203A";
  font-size: 1.15rem;
  font-weight: 400;
  margin-right: .25rem;
}

.product-breadcrumb strong {
  align-items: center;
  color: #111827;
  display: inline-flex;
  font-weight: 700;
  padding: .35rem .45rem .35rem .2rem;
}

.product-detail-grid {
  align-items: start;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
}

.product-gallery-panel,
.product-buy-panel,
.product-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.product-gallery-panel {
  padding: .9rem;
}

.product-gallery-layout {
  display: grid;
  gap: .8rem;
  grid-template-columns: 76px minmax(0, 1fr);
}

.product-gallery-layout:not(:has(.product-thumbnails)) {
  grid-template-columns: 1fr;
}

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  max-height: 540px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.product-thumbnail {
  aspect-ratio: 1;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 11px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 68px;
}

.product-thumbnail.is-active,
.product-thumbnail:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 18px rgba(249, 115, 22, .14);
}

.product-thumbnail img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-main-image {
  align-items: center;
  aspect-ratio: 1 / .78;
  background: linear-gradient(135deg, #f1f5f9, #fff);
  border-radius: 14px;
  display: grid;
  justify-items: center;
  overflow: hidden;
  position: relative;
}

.product-main-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-main-image span {
  color: #98a2b3;
  font-weight: 800;
}

.product-buy-panel {
  padding: 1.25rem;
}

.product-meta-row {
  color: #667085;
  display: flex;
  flex-wrap: wrap;
  font-size: .74rem;
  font-weight: 700;
  gap: .8rem;
  justify-content: space-between;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.product-category {
  color: var(--orange-strong);
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.product-buy-panel h1 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: .6rem;
}

.product-short-description {
  color: #475467;
  margin-bottom: 1rem;
}

.product-old-price {
  color: #98a2b3;
  font-weight: 600;
  text-decoration: line-through;
}

.product-price {
  color: var(--orange-strong);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.product-pix {
  color: #344054;
  font-size: .88rem;
  margin-top: .2rem;
}

.product-stock {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: .45rem;
  margin: 1rem 0;
}

.product-stock.is-available {
  color: #15803d;
}

.product-stock.is-unavailable {
  color: #dc2626;
}

.product-purchase-form {
  border-top: 1px solid var(--line);
  margin-top: .25rem;
  padding-top: 1rem;
}

.product-qty-row {
  display: grid;
  gap: .8rem;
  grid-template-columns: 96px minmax(0, 1fr);
}

.product-qty-row .form-control {
  font-weight: 800;
  text-align: center;
}

.product-buy-button {
  font-size: 1.05rem;
  min-height: 48px;
  text-transform: uppercase;
}

.product-actions-row {
  display: grid;
  gap: .65rem;
  grid-template-columns: 1fr 1fr;
  margin-top: .8rem;
}

.product-actions-row .fa-whatsapp {
  color: #22c55e;
}

.product-freight-box {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.product-info-section,
.related-products-section {
  padding: 1.5rem 0 0;
}

.product-info-card {
  padding: 1.35rem;
}

.product-info-card h2,
.section-title-row h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.product-info-card p {
  color: #475467;
  line-height: 1.8;
  margin-bottom: 0;
}

.product-spec-list {
  display: grid;
  gap: .65rem;
  margin: 0;
}

.product-spec-list div {
  background: #fffaf5;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: .72rem .85rem;
}

.product-spec-list dt {
  color: #667085;
  font-size: .78rem;
  font-weight: 700;
}

.product-spec-list dd {
  color: #111827;
  font-size: .82rem;
  font-weight: 700;
  margin: 0;
  text-align: right;
}

.section-title-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-title-row a {
  color: #111827;
  font-weight: 600;
}

.related-carousel {
  position: relative;
}

.related-control {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--orange-strong);
  display: flex;
  height: 42px;
  justify-content: center;
  opacity: 1;
  top: 42%;
  width: 42px;
}

.related-control.carousel-control-prev {
  left: -18px;
}

.related-control.carousel-control-next {
  right: -18px;
}

.client-account-layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
}

.client-account-summary {
  background: linear-gradient(145deg, #fff7ed, #fff);
  border: 1px solid #fed7aa;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  padding: 1.2rem;
}

.client-avatar {
  align-items: center;
  background: var(--orange);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .22);
  color: #fff;
  display: flex;
  font-size: 1.35rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 54px;
}

.client-account-summary h1 {
  font-size: 1.45rem;
}

.client-account-summary p {
  color: #667085;
  line-height: 1.65;
}

.client-summary-list {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}

.client-summary-list span,
.client-summary-list a {
  align-items: center;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  color: #344054;
  display: flex;
  font-size: .82rem;
  font-weight: 600;
  gap: .6rem;
  padding: .7rem;
  text-decoration: none;
}

.client-summary-list i,
.client-summary-list a i {
  color: var(--orange-strong);
}

.client-summary-list a:hover {
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.cep-feedback {
  color: #667085;
  display: block;
  font-size: .72rem;
  font-weight: 600;
  margin-top: .35rem;
}

.cep-feedback.is-error {
  color: #dc2626;
}

.page-transition {
  align-items: center;
  background: rgba(17, 24, 39, .22);
  backdrop-filter: blur(7px);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .2s ease;
  z-index: 3000;
}

.page-transition.show {
  opacity: 1;
  pointer-events: auto;
}

.page-loader-card {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(253, 186, 116, .62);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, .22);
  display: grid;
  gap: .2rem .9rem;
  grid-template-columns: 48px minmax(0, 1fr);
  min-width: min(340px, calc(100vw - 48px));
  padding: 1rem;
  transform: translateY(10px) scale(.97);
  transition: transform .24s cubic-bezier(.2, .8, .2, 1);
}

.page-transition.show .page-loader-card {
  transform: translateY(0) scale(1);
}

.page-loader-mark {
  align-items: center;
  animation: loader-pulse 1.15s ease-in-out infinite;
  background: linear-gradient(135deg, var(--orange), #ffb36b);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(249, 115, 22, .28);
  color: #fff;
  display: flex;
  font-size: 1.25rem;
  grid-row: 1 / span 2;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.page-loader-copy {
  display: grid;
  gap: .1rem;
}

.page-loader-copy strong {
  color: #111827;
  font-size: .95rem;
}

.page-loader-copy span {
  color: #667085;
  font-size: .78rem;
}

.page-loader-bar {
  background: #fff1e8;
  border-radius: 999px;
  grid-column: 1 / -1;
  height: 5px;
  margin-top: .65rem;
  overflow: hidden;
}

.page-loader-bar span {
  animation: loader-bar 1.05s ease-in-out infinite;
  background: linear-gradient(90deg, var(--orange), #fb923c, var(--orange-strong));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 42%;
}

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@keyframes loader-bar {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(250%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition,
  .page-loader-card,
  .page-loader-mark,
  .page-loader-bar span {
    animation: none;
    transition: none;
  }
}

@media (max-width: 991.98px) {
  body:has(#adminMobileMenu.show)::before,
  body:has(#superMobileMenu.show)::before,
  body:has(#adminMobileMenu.showing)::before,
  body:has(#superMobileMenu.showing)::before {
    background: rgba(0, 0, 0, .55);
    content: "";
    inset: 0;
    position: fixed;
    z-index: 1040;
  }

  body:has(#adminMobileMenu.show) .offcanvas-backdrop,
  body:has(#superMobileMenu.show) .offcanvas-backdrop,
  body:has(#adminMobileMenu.showing) .offcanvas-backdrop,
  body:has(#superMobileMenu.showing) .offcanvas-backdrop {
    opacity: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .top-commerce-inner {
    gap: .45rem;
    justify-content: flex-end;
    min-height: 54px;
  }

  .top-action > i:first-child {
    font-size: 1rem;
    height: 36px;
    width: 38px;
  }

  .top-action > span,
  .top-action > .chevron,
  .top-school-registration > span {
    display: none;
  }

  .top-school-registration {
    background: transparent;
    border: 0;
    padding: 0;
  }

  .top-cart {
    height: 38px;
    width: 42px;
  }

  .top-cart span {
    right: -5px;
    top: -7px;
  }

  .app-navbar .container {
    position: relative;
  }

  .app-navbar {
    backdrop-filter: none;
  }

  .mobile-navigation {
    --bs-offcanvas-width: 370px;
    background: #fff;
    border-left: 0 !important;
    box-shadow: -18px 0 50px rgba(17, 24, 39, .2);
    height: 100vh;
    left: auto !important;
    max-width: none;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    transition: transform .28s ease-in-out, visibility .28s ease-in-out !important;
    width: min(370px, calc(100vw - 24px)) !important;
    z-index: 1045;
  }

  .mobile-navigation.offcanvas-end {
    transform: translate3d(100%, 0, 0) !important;
  }

  .mobile-navigation.offcanvas-end.show:not(.hiding),
  .mobile-navigation.offcanvas-end.showing {
    transform: translate3d(0, 0, 0) !important;
  }

  .mobile-navigation .offcanvas-header,
  .admin-mobile-offcanvas .offcanvas-header {
    align-items: center;
    background: linear-gradient(135deg, #fff7ed, #fff);
    border-bottom: 1px solid #fed7aa;
    min-height: 76px;
    padding: 1rem 1.1rem;
  }

  .mobile-navigation .offcanvas-header > div,
  .admin-mobile-offcanvas .offcanvas-header > div {
    display: grid;
    line-height: 1.2;
  }

  .mobile-navigation .offcanvas-header small,
  .admin-mobile-offcanvas .offcanvas-header small {
    color: var(--orange-strong);
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-navigation .offcanvas-header strong,
  .admin-mobile-offcanvas .offcanvas-header strong {
    color: #111827;
    font-size: 1rem;
  }

  .mobile-navigation .offcanvas-body {
    display: block;
    padding: 1rem;
  }

  .mobile-navigation .navbar-nav:first-of-type {
    display: grid;
    gap: .35rem;
    grid-template-columns: 1fr;
  }

  .mobile-navigation .navbar-nav:last-child {
    border-top: 1px solid var(--line);
    display: grid;
    gap: .4rem;
    grid-template-columns: 1fr;
    margin-top: .85rem;
    padding-top: .85rem;
  }

  .mobile-navigation .navbar .nav-link,
  .mobile-navigation .nav-link,
  .mobile-navigation .btn {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #f0f2f5;
    border-radius: 9px;
    justify-content: flex-start;
    margin: 0;
    min-height: 48px;
    padding: .7rem .65rem;
    width: 100%;
  }

  .mobile-navigation .nav-link:hover,
  .mobile-navigation .btn:hover {
    background: var(--orange-soft);
    color: var(--orange-strong);
  }

  .mobile-navigation .navbar-nav:last-child .btn-soft {
    background: var(--orange-soft);
    border: 1px solid #fed7aa;
    color: var(--orange-strong);
  }

  .mobile-navigation .navbar-nav:last-child .nav-link {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
  }

  .mobile-navigation .navbar-nav:last-child .btn-orange {
    background: var(--orange) !important;
    border: 1px solid var(--orange) !important;
    box-shadow: 0 10px 22px rgba(249,115,22,.22);
    color: var(--btn-text-color) !important;
    justify-content: center;
  }

  .mobile-navigation .navbar-nav:last-child .btn-orange:hover {
    background: var(--orange-strong) !important;
    border-color: var(--orange-strong) !important;
    color: var(--btn-hover-text-color) !important;
  }

  .mobile-navigation .header-product-search {
    margin: 1rem 0 0;
  }

  .site-area-admin .mobile-navigation,
  .site-area-super .mobile-navigation {
    display: none;
  }

  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 22px 45px rgba(17, 24, 39, .16);
    left: .75rem;
    max-height: calc(100vh - 125px);
    overflow-y: auto;
    padding: .8rem;
    position: absolute;
    right: .75rem;
    top: calc(100% + 1px);
  }

  .navbar-collapse .navbar-nav:first-child {
    display: grid;
    gap: .45rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .navbar-collapse .navbar-nav:first-child .nav-item {
    min-width: 0;
  }

  .navbar .nav-link,
  .navbar .btn {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 11px;
    justify-content: flex-start;
    margin: 0;
    min-height: 44px;
    padding: .65rem .75rem;
    width: 100%;
  }

  .header-product-search {
    flex-basis: auto;
    margin: .75rem 0 .55rem;
    width: 100%;
  }

  .navbar-collapse > .navbar-nav:last-child {
    display: grid;
    gap: .45rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .navbar-collapse > .navbar-nav:last-child .nav-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .admin-layout {
    padding-top: .25rem;
  }

  #adminMobileMenu,
  #superMobileMenu {
    --bs-offcanvas-width: 350px;
    background: #f8fafc;
    bottom: 0 !important;
    border-right: 0;
    box-shadow: 18px 0 50px rgba(17, 24, 39, .2);
    height: 100vh;
    left: 0 !important;
    margin: 0 !important;
    max-width: none;
    position: fixed !important;
    right: auto !important;
    top: 0 !important;
    transition: transform .28s ease-in-out, visibility .28s ease-in-out !important;
    width: min(350px, calc(100vw - 24px)) !important;
    z-index: 1045;
  }

  #adminMobileMenu.offcanvas-start,
  #superMobileMenu.offcanvas-start {
    transform: translate3d(-100%, 0, 0) !important;
  }

  #adminMobileMenu.offcanvas-start.show:not(.hiding),
  #adminMobileMenu.offcanvas-start.showing,
  #superMobileMenu.offcanvas-start.show:not(.hiding),
  #superMobileMenu.offcanvas-start.showing {
    transform: translate3d(0, 0, 0) !important;
  }

  #adminMobileMenu .offcanvas-body,
  #superMobileMenu .offcanvas-body {
    display: block;
    overflow-y: auto;
    padding: .85rem;
  }

  .admin-menu {
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
    max-height: none;
    overflow: hidden;
    position: static;
  }

  .admin-site-shortcuts {
    order: -2;
  }

  .admin-menu .list-group-item {
    min-height: 46px;
  }

  .admin-site-shortcuts {
    background: #fffaf5;
    border-top: 1px solid #fed7aa;
    display: grid;
    margin-bottom: 2rem;
    position: relative;
    padding: .65rem;
  }

  .admin-site-shortcuts::after {
    bottom: -1.65rem;
    color: var(--orange-strong);
    content: "Menu administrativo";
    font-size: .62rem;
    font-weight: 800;
    left: .65rem;
    position: absolute;
    text-transform: uppercase;
  }

  .admin-site-shortcuts > span {
    color: var(--orange-strong);
    font-size: .62rem;
    font-weight: 800;
    padding: .35rem .55rem .5rem;
    text-transform: uppercase;
  }

  .admin-site-shortcuts > a {
    align-items: center;
    border-radius: 9px;
    color: #475467;
    display: flex;
    font-size: .78rem;
    font-weight: 600;
    gap: .7rem;
    min-height: 42px;
    padding: .55rem;
    text-decoration: none;
  }

  .admin-site-shortcuts > a:hover {
    background: #fff;
    color: var(--orange-strong);
  }

  .admin-site-shortcuts > a i {
    color: var(--orange-strong);
    text-align: center;
    width: 20px;
  }

  .super-store-context {
    align-items: stretch;
    flex-direction: column;
  }

  .super-store-context-actions {
    justify-content: flex-start;
  }

  .carousel-banner {
    height: 420px;
    min-height: 420px;
  }

  .home-carousel-wrap {
    height: 420px;
  }

  .carousel-copy {
    padding-bottom: 4.4rem;
  }

  .benefit-item {
    border-bottom: 1px solid var(--line);
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .client-account-layout {
    grid-template-columns: 1fr;
  }

  .school-registration-layout {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-item-card {
    grid-template-columns: 80px minmax(0, 1fr) 130px 95px 38px;
  }

  .material-list-layout {
    grid-template-columns: 1fr;
  }

  .material-list-summary {
    position: static;
  }

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

  .school-search-panel {
    grid-template-columns: 1fr 1fr;
  }

  .school-search-panel > div:first-child {
    grid-column: 1 / -1;
  }

  .admin-toggle-row,
  .admin-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-buy-panel {
    padding: 1rem;
  }

.related-control {
    display: none;
  }
}

.checkout-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.product-actions-row.is-single { grid-template-columns: 1fr; }
.product-actions-row.is-single .btn { min-height: 46px; }

.cart-page { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); min-height: 65vh; }
.cart-page-heading { align-items: end; display: flex; justify-content: space-between; margin-bottom: 1.5rem; }
.cart-page-heading > div > span { color: var(--orange-strong); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.cart-page-heading h1 { font-size: 2rem; margin: .15rem 0; }
.cart-page-heading p { color: #667085; font-size: .82rem; margin: 0; }
.cart-layout { align-items: start; display: grid; gap: 1.5rem; grid-template-columns: minmax(0, 1fr) 340px; }
.cart-items-list { display: grid; gap: .85rem; }
.cart-item-card { align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); display: grid; gap: 1rem; grid-template-columns: 92px minmax(0, 1fr) 145px 110px 38px; padding: .85rem; }
.cart-item-image { align-items: center; aspect-ratio: 1; background: #f4f6f8; border-radius: 12px; color: #98a2b3; display: flex; justify-content: center; overflow: hidden; }
.cart-item-image img { height: 100%; object-fit: cover; width: 100%; }
.cart-item-info > span { color: var(--orange-strong); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.cart-item-info h2 { font-size: .95rem; margin: .2rem 0; }
.cart-item-info h2 a { color: #111827; text-decoration: none; }
.cart-item-info h2 a:hover { color: var(--orange-strong); }
.cart-item-info small { color: #667085; font-size: .72rem; }
.cart-quantity-form label { color: #667085; display: block; font-size: .68rem; font-weight: 700; margin-bottom: .3rem; }
.cart-quantity-form > div { display: grid; gap: .15rem; grid-template-columns: 1fr; }
.cart-quantity-form .form-control { min-height: 38px; text-align: center; }
.cart-quantity-saving { color: #98a2b3; display: block; font-size: .55rem; min-height: .8rem; text-align: center; }
.cart-quantity-saving.is-saved { color: #15803d; }
.cart-quantity-saving.is-error { color: #dc2626; }
.cart-item-total { display: grid; gap: .15rem; text-align: right; }
.cart-item-total small { color: #667085; font-size: .68rem; }
.cart-item-total strong { color: var(--orange-strong); font-size: 1rem; }
.cart-remove-form button { align-items: center; background: #fff1f2; border: 0; border-radius: 9px; color: #dc2626; display: flex; height: 36px; justify-content: center; width: 36px; }
.cart-remove-form button:hover { background: #dc2626; color: #fff; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); padding: 1.25rem; position: sticky; top: 145px; }
.cart-summary h2 { border-bottom: 1px solid var(--line); font-size: 1.1rem; margin-bottom: .5rem; padding-bottom: 1rem; }
.cart-summary > div { align-items: center; display: flex; gap: .75rem; justify-content: space-between; padding: .7rem 0; }
.cart-summary > div span { color: #667085; font-size: .8rem; }
.cart-summary > div small { color: #98a2b3; font-size: .7rem; text-align: right; }
.cart-summary-total { border-top: 1px solid var(--line); margin-top: .25rem; }
.cart-summary-total strong { color: var(--orange-strong); font-size: 1.35rem; }
.cart-continue-link { color: #475467; display: block; font-size: .78rem; font-weight: 600; margin: 1rem 0; text-align: center; text-decoration: none; }
.cart-summary > p { color: #15803d; font-size: .7rem; margin: 0; text-align: center; }
.cart-empty-state { background: #fff; border: 1px dashed #fdba74; border-radius: 20px; box-shadow: var(--shadow-sm); margin: 0 auto; max-width: 620px; padding: 3rem 1.5rem; text-align: center; }
.cart-empty-state > span { align-items: center; background: var(--orange-soft); border-radius: 50%; color: var(--orange-strong); display: inline-flex; font-size: 1.7rem; height: 72px; justify-content: center; margin-bottom: 1rem; width: 72px; }
.cart-empty-state h2 { font-size: 1.35rem; }
.cart-empty-state p { color: #667085; margin-bottom: 1.25rem; }

.text-orange {
  color: var(--orange);
}

.checkout-form {
  padding: 1.25rem;
}

.payment-options {
  display: grid;
  gap: .85rem;
}

.payment-choice {
  cursor: pointer;
  display: block;
}

.payment-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-choice span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  gap: .85rem;
  padding: .95rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.payment-choice i {
  align-items: center;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 107, 26, .22);
  border-radius: 12px;
  color: var(--orange);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.payment-choice strong,
.payment-choice small {
  display: block;
}

.payment-choice small {
  color: var(--muted);
  font-size: .82rem;
  margin-top: .1rem;
}

.payment-choice input:checked + span {
  border-color: var(--orange);
  box-shadow: 0 18px 35px rgba(255, 107, 26, .13);
  transform: translateY(-1px);
}

.payment-choice input:disabled + span {
  cursor: not-allowed;
  opacity: .55;
}

.checkout-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, .06);
  padding: 1.25rem;
  position: sticky;
  top: 150px;
}

.summary-line {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .85rem 0;
}

.summary-line span {
  color: var(--ink);
  font-weight: 600;
}

.summary-line small {
  color: var(--muted);
  display: block;
  font-size: .78rem;
  font-weight: 500;
  margin-top: .15rem;
}

.summary-total {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 .8rem;
}

.summary-total span {
  color: var(--muted);
  font-weight: 600;
}

.summary-total strong {
  color: var(--orange);
  font-size: 1.45rem;
}

.secure-note {
  align-items: center;
  background: var(--orange-soft);
  border-radius: 12px;
  color: var(--ink);
  display: flex;
  font-size: .86rem;
  gap: .55rem;
  padding: .8rem;
}

.secure-note i {
  color: var(--orange);
}

.product-zoom-button {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 50%;
  bottom: 16px;
  box-shadow: var(--shadow-sm);
  color: #111827;
  display: flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 16px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
  width: 44px;
}

.product-zoom-button:hover {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}

.product-image-modal .modal-content {
  background: #fff;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}

.product-image-modal .modal-body {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 70vh;
  padding: 1rem;
}

.product-image-modal .modal-body img {
  max-height: 82vh;
  max-width: 100%;
  object-fit: contain;
}

.product-modal-close {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  padding: .7rem;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}

.admin-product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.admin-product-gallery img {
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 72px;
  object-fit: cover;
  width: 72px;
}

.list-required-toggle {
  min-height: 42px;
  padding: .4rem .55rem;
}

.list-required-toggle > span {
  height: 32px;
  width: 32px;
}

.list-builder-summary {
  align-items: center;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 1px solid #fed7aa;
  border-radius: 16px;
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.list-builder-summary > div {
  display: grid;
}

.list-builder-summary span {
  color: #667085;
  font-size: .7rem;
}

.list-builder-summary strong {
  color: #111827;
  font-size: 1.1rem;
}

.list-builder-summary > a {
  margin-left: auto;
}

.list-builder-items {
  display: grid;
  gap: .75rem;
}

.list-builder-item {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
  grid-template-columns: 64px minmax(0, 1fr) auto 100px auto;
  padding: .75rem;
}

.list-builder-thumb {
  align-items: center;
  aspect-ratio: 1;
  background: #f4f6f8;
  border-radius: 10px;
  color: #98a2b3;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.list-builder-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.list-builder-item h2 {
  font-size: .9rem;
  margin: 0;
}

.list-builder-item p,
.list-builder-item small {
  color: #667085;
  font-size: .7rem;
  margin: .2rem 0 0;
}

.list-builder-item > strong {
  color: var(--orange-strong);
  text-align: right;
}

.list-catalog-filters { display: grid; gap: .75rem; grid-template-columns: minmax(0, 1fr) 240px; margin: 1rem 0; }
.list-product-catalog { display: grid; gap: .7rem; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: .15rem; }
.list-catalog-product { background: #fff; border: 1px solid var(--line); border-radius: 12px; display: grid; gap: .6rem; grid-template-columns: 64px minmax(0, 1fr); padding: .6rem; }
.list-catalog-product[hidden] { display: none; }
.list-catalog-image { align-items: center; aspect-ratio: 1; background: #f4f6f8; border-radius: 10px; color: #98a2b3; display: flex; justify-content: center; overflow: hidden; }
.list-catalog-image img { height: 100%; object-fit: cover; width: 100%; }
.list-catalog-info span { color: var(--orange-strong); display: block; font-size: .55rem; font-weight: 700; text-transform: uppercase; }
.list-catalog-info h2 { font-size: .72rem; line-height: 1.3; margin: .12rem 0; }
.list-catalog-info strong { color: var(--orange-strong); display: block; font-size: .8rem; }
.list-catalog-info small { color: #667085; font-size: .56rem; }
.list-catalog-add-form { border-top: 1px solid var(--line); display: grid; gap: .4rem; grid-column: 1 / -1; grid-template-columns: 48px minmax(0, 1fr); padding-top: .55rem; }
.list-catalog-add-form > label:first-child { color: #667085; font-size: .48rem; font-weight: 700; line-height: 1; white-space: nowrap; }
.list-catalog-add-form > label:first-child input.form-control { font-size: .62rem; height: 27px !important; margin-top: .18rem; min-height: 27px !important; padding: .1rem .25rem; width: 44px !important; }
.list-catalog-required { align-items: center; color: #475467; display: flex; font-size: .62rem; gap: .3rem; }
.list-catalog-add-form > input { grid-column: 1 / -1; }
.list-catalog-add-form > button { grid-column: 1 / -1; }
.list-catalog-add-form > input { font-size: .68rem; min-height: 34px; padding: .4rem .55rem; }
.list-catalog-add-form > button { font-size: .68rem; min-height: 34px; padding: .4rem .6rem; }
.list-catalog-empty { color: #98a2b3; display: grid; gap: .4rem; grid-column: 1 / -1; justify-items: center; padding: 2rem; }
.list-catalog-empty[hidden] { display: none; }
.admin-pagination, .catalog-pagination { align-items: center; display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: 1rem; }
.admin-pagination a, .catalog-page-button { align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 9px; color: #344054; display: inline-flex; font-size: .75rem; font-weight: 700; height: 36px; justify-content: center; min-width: 36px; padding: 0 .65rem; text-decoration: none; }
.admin-pagination a:hover, .catalog-page-button:hover:not(:disabled), .admin-pagination a.is-active, .catalog-page-button.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }
.admin-pagination a.is-disabled, .catalog-page-button:disabled { opacity: .4; pointer-events: none; }
.catalog-page-ellipsis { color: #98a2b3; padding: 0 .15rem; }
.admin-product-filters { margin-top: 1.5rem; }
.admin-filter-actions { display: flex; gap: .45rem; }
.admin-filter-actions .btn:first-child { flex: 1; }
.admin-list-heading .product-result-count { display: block; }
.admin-list-heading .product-result-count + p { display: none; }
.admin-empty-state { align-items: center; background: #fff; border: 1px dashed var(--line); border-radius: 16px; color: #667085; display: flex; flex-direction: column; grid-column: 1 / -1; justify-content: center; min-height: 220px; padding: 2rem; text-align: center; }
.admin-empty-state > i { color: var(--orange-strong); font-size: 1.8rem; margin-bottom: .7rem; }
.admin-empty-state h3 { font-size: 1rem; }
.admin-empty-state p { font-size: .75rem; margin: 0; }

.material-list-purchase { display: grid; gap: 1rem; }
.material-list-page-heading { margin-bottom: 1.25rem; }
.material-list-page-heading > span { color: var(--orange-strong); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.material-list-page-heading h1 { font-size: 1.8rem; margin: .2rem 0; }
.material-list-page-heading p { color: #667085; font-size: .82rem; margin: 0; }
.list-finder-wizard { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); display: grid; gap: 1.25rem; margin-bottom: 2rem; padding: 1.25rem; }
.list-finder-progress { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.list-finder-progress::before { background: var(--line); content: ''; height: 2px; left: 8%; position: absolute; right: 8%; top: 17px; }
.list-finder-progress > span { align-items: center; color: #98a2b3; display: flex; flex-direction: column; font-size: .68rem; font-weight: 700; gap: .35rem; position: relative; text-align: center; }
.list-finder-progress b { align-items: center; background: #f2f4f7; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px var(--line); display: flex; height: 34px; justify-content: center; width: 34px; }
.list-finder-progress > span.is-active { color: var(--orange-strong); }
.list-finder-progress > span.is-active b { background: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); color: #fff; }
.list-finder-progress > span.is-complete { color: #15803d; }
.list-finder-progress > span.is-complete b { background: #16a34a; color: #fff; }
.list-finder-fields { display: grid; gap: .8rem; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.list-finder-fields label > span { color: #475467; display: block; font-size: .7rem; font-weight: 700; margin-bottom: .35rem; }
.list-finder-fields select:disabled { background-color: #f8fafc; color: #98a2b3; }
.list-finder-wizard > button { justify-self: end; min-width: 190px; }
.list-finder-wizard > button:disabled { box-shadow: none; opacity: .5; }
.material-list-heading { align-items: end; background: linear-gradient(135deg, #fff 0%, #fffaf5 100%); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); display: flex; gap: 1rem; justify-content: space-between; padding: 1.2rem 1.3rem; }
.material-list-heading-main { min-width: 0; }
.material-list-breadcrumb { align-items: center; display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .55rem; }
.material-list-breadcrumb a, .material-list-breadcrumb span { align-items: center; color: #667085; display: inline-flex; font-size: .62rem; font-weight: 600; gap: .3rem; text-decoration: none; }
.material-list-breadcrumb a:hover { color: var(--orange-strong); }
.material-list-breadcrumb a + a::before, .material-list-breadcrumb span::before { color: #c4c9d1; content: "/"; margin-right: .05rem; }
.material-list-breadcrumb span { color: #344054; }
.material-list-breadcrumb i { color: var(--orange-strong); }
.material-list-heading h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); line-height: 1.2; margin: 0 0 .65rem; }
.material-list-context { display: flex; flex-wrap: wrap; gap: .45rem; }
.material-list-context span { align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 999px; color: #667085; display: inline-flex; font-size: .68rem; gap: .35rem; padding: .32rem .55rem; }
.material-list-context i { color: var(--orange-strong); }
.material-list-heading > strong { align-items: center; background: var(--orange-soft); border-radius: 999px; color: var(--orange-strong); display: inline-flex; flex: 0 0 auto; font-size: .72rem; gap: .4rem; padding: .48rem .75rem; }
.material-list-layout { align-items: start; display: grid; gap: 1.25rem; grid-template-columns: minmax(0, 1fr) 320px; }
.material-list-items { display: grid; gap: .75rem; }
.material-list-item { align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow-sm); display: grid; gap: .8rem; grid-template-columns: 34px 76px minmax(0, 1fr) auto 110px 100px; padding: .75rem; }
.material-list-item.is-optional { border-style: dashed; }
.material-list-check input { opacity: 0; position: absolute; }
.material-list-check > span { align-items: center; background: #fff; border: 2px solid #cbd5e1; border-radius: 7px; color: transparent; cursor: pointer; display: flex; height: 24px; justify-content: center; width: 24px; }
.material-list-check input:checked + span { background: var(--orange); border-color: var(--orange); color: #fff; }
.material-list-check input:disabled + span { cursor: default; }
.material-list-item-image { align-items: center; aspect-ratio: 1; background: #f4f6f8; border-radius: 10px; color: #98a2b3; display: flex; justify-content: center; overflow: hidden; }
.material-list-item-image img { height: 100%; object-fit: cover; width: 100%; }
.material-list-item-info > small { color: var(--orange-strong); font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.material-list-item-info h3 { font-size: .88rem; margin: .15rem 0; }
.material-list-item-info h3 a { color: #111827; text-decoration: none; }
.material-list-item-info p { color: #667085; font-size: .7rem; margin: 0; }
.material-list-item-info em { color: #667085; display: block; font-size: .65rem; margin-top: .2rem; }
.material-list-item > strong { color: var(--orange-strong); text-align: right; }
.material-list-quantity { display: grid; gap: .25rem; }
.material-list-quantity span { color: #667085; font-size: .58rem; font-weight: 700; text-transform: uppercase; }
.material-list-quantity input { font-size: .78rem; min-height: 38px; text-align: center; }
.material-list-summary { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); padding: 1.15rem; position: sticky; top: 145px; }
.material-list-summary h3 { border-bottom: 1px solid var(--line); font-size: 1rem; margin-bottom: .5rem; padding-bottom: .8rem; }
.material-list-summary > div { align-items: center; display: flex; justify-content: space-between; padding: .55rem 0; }
.material-list-summary > div span { color: #667085; font-size: .75rem; }
.material-list-summary-total { border-top: 1px solid var(--line); margin-top: .35rem; padding-top: .8rem !important; }
.material-list-summary-total strong { color: var(--orange-strong); font-size: 1.2rem; }
.material-list-summary > small { color: #667085; display: block; font-size: .65rem; margin-top: .7rem; text-align: center; }

.flash-stack {
  display: grid;
  gap: .85rem;
  margin-bottom: 1.2rem;
}

.flash-message {
  align-items: center;
  animation: flashSlideIn .28s ease both;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--flash-color, var(--orange));
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, .08);
  display: grid;
  gap: .9rem;
  grid-template-columns: auto 1fr auto;
  overflow: hidden;
  padding: .95rem 1rem;
  position: relative;
}

.flash-message.is-leaving {
  animation: flashSlideOut .22s ease both;
}

.flash-message::before {
  background: linear-gradient(135deg, var(--flash-color, var(--orange)), transparent);
  content: "";
  inset: 0 auto 0 0;
  opacity: .08;
  position: absolute;
  width: 38%;
}

.flash-icon,
.flash-content,
.flash-close {
  position: relative;
  z-index: 1;
}

.flash-icon {
  align-items: center;
  background: color-mix(in srgb, var(--flash-color, var(--orange)) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--flash-color, var(--orange)) 20%, #fff);
  border-radius: 14px;
  color: var(--flash-color, var(--orange));
  display: inline-flex;
  font-size: 1.05rem;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.flash-content {
  display: grid;
  gap: .12rem;
}

.flash-content strong {
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.2;
}

.flash-content span {
  color: #475467;
  font-size: .92rem;
  line-height: 1.35;
}

.flash-close {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #667085;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  width: 34px;
}

.flash-close:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}

.flash-success {
  --flash-color: #12a150;
}

.flash-error {
  --flash-color: #dc2626;
}

.flash-warning {
  --flash-color: #f59e0b;
}

.flash-info {
  --flash-color: #2563eb;
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  gap: .8rem;
  grid-template-columns: auto 1fr;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  background: var(--line);
  content: "";
  height: calc(100% + 1rem);
  left: 8px;
  position: absolute;
  top: 18px;
  width: 2px;
}

.timeline-dot {
  background: var(--orange);
  border: 4px solid var(--orange-soft);
  border-radius: 999px;
  height: 18px;
  margin-top: .15rem;
  position: relative;
  width: 18px;
  z-index: 1;
}

.timeline-item strong,
.timeline-item small,
.timeline-item p {
  display: block;
}

.timeline-item strong {
  color: var(--ink);
  font-size: .95rem;
}

.timeline-item small {
  color: var(--muted);
  font-size: .78rem;
  margin-top: .1rem;
}

.timeline-item p {
  color: #475467;
  font-size: .9rem;
  margin: .35rem 0 0;
}

.tracking-steps {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(6, 1fr);
}

.tracking-step {
  align-items: center;
  color: var(--muted);
  display: grid;
  gap: .45rem;
  justify-items: center;
  text-align: center;
}

.tracking-step span {
  align-items: center;
  background: #f2f4f7;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #98a2b3;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.tracking-step strong {
  font-size: .78rem;
  line-height: 1.2;
}

.tracking-step.is-done {
  color: var(--ink);
}

.tracking-step.is-done span {
  background: var(--orange-soft);
  border-color: color-mix(in srgb, var(--orange) 24%, #fff);
  color: var(--orange);
}

@keyframes flashSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flashSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  body {
    font-size: .92rem;
  }

  .cookie-consent { align-items: start; bottom: .65rem; gap: .7rem; grid-template-columns: 38px minmax(0,1fr); padding: .85rem; width: calc(100% - 1.3rem); }
  .cookie-consent-icon { border-radius: 11px; font-size: 1rem; height: 38px; width: 38px; }
  .cookie-consent-actions { grid-column: 1 / -1; width: 100%; }
  .cookie-consent-actions .btn { flex: 1; font-size: .62rem; padding: .45rem .5rem; white-space: normal; }
  .whatsapp-widget { bottom: max(1.15rem, env(safe-area-inset-bottom)); right: max(1.15rem, env(safe-area-inset-right)); }
  body:has(.cookie-consent.is-visible) .whatsapp-widget { bottom: max(12rem, calc(env(safe-area-inset-bottom) + 11rem)); }
  .whatsapp-float { border-radius: 50%; height: 54px; justify-content: center; min-height: 54px; padding: 0; width: 54px; }
  .whatsapp-float > em { display: none; }
  .whatsapp-float > i { left: auto; }
  .whatsapp-float > b { right: 0; top: 0; transform: translate(30%, -30%); }
  .whatsapp-chat { bottom: 64px; width: calc(100vw - 1.6rem); }

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

  .home-categories-inner {
    gap: .75rem;
    grid-template-columns: 1fr;
  }

  .home-categories {
    padding: 1rem 0;
  }

  .home-category-list {
    gap: .8rem;
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    padding: .25rem calc(var(--bs-gutter-x) * .5) .65rem;
    scroll-padding-left: calc(var(--bs-gutter-x) * .5);
    scroll-snap-type: x proximity;
  }

  .home-category {
    flex-basis: 84px;
    scroll-snap-align: start;
  }

  .home-category-image {
    height: 62px;
    width: 62px;
  }

  .home-featured-products {
    padding-bottom: 2rem !important;
    padding-top: 2rem !important;
  }

  .home-section-heading {
    align-items: flex-end !important;
    gap: .75rem;
  }

  .home-section-heading h2 {
    font-size: 1.15rem !important;
    line-height: 1.25;
  }

  .home-section-heading a {
    flex: 0 0 auto;
    font-size: .75rem;
  }

  .home-featured-grid {
    --bs-gutter-y: .85rem;
  }

  .home-featured-grid .product-card,
  .promotions-item .product-card {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 180px;
  }

  .home-featured-grid .product-img,
  .promotions-item .product-img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .home-featured-grid .card-body,
  .promotions-item .card-body {
    min-width: 0;
    padding: .85rem;
  }

  .home-featured-grid .card-body h3,
  .promotions-item .card-body h3 {
    font-size: .9rem;
    line-height: 1.3;
    margin-bottom: .3rem;
  }

  .home-featured-grid .card-body p,
  .promotions-item .card-body p {
    font-size: .68rem;
    margin-bottom: .35rem !important;
  }

  .home-featured-grid .price,
  .promotions-item .price {
    font-size: 1rem;
  }

  .home-featured-grid .btn,
  .promotions-item .btn {
    font-size: .7rem;
    min-height: 36px;
    padding: .45rem .55rem;
  }

  .promotions-item {
    flex-basis: 94%;
  }

  .promotions-track {
    gap: .85rem;
    scroll-padding-left: .1rem;
  }

  .promotions-item .product-card {
    min-height: 190px;
  }

  .display-5 {
    font-size: 2.1rem;
  }

  .btn-lg {
    width: 100%;
  }

  .carousel-copy .btn-lg {
    width: auto;
  }

  .top-commerce-inner {
    gap: .45rem;
  }

  .top-action {
    gap: .45rem;
  }

  .top-action .chevron {
    display: none;
  }

  .top-action:first-child span {
    display: none;
  }

  .top-school-registration span {
    display: none;
  }

  .top-school-registration {
    padding: 0;
  }

  .top-cart {
    margin-right: 1rem;
  }

  .carousel-banner {
    height: 430px;
    min-height: 430px;
  }

  .home-carousel-wrap {
    height: 430px;
  }

  .carousel-banner::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .68) 58%, rgba(0, 0, 0, .24) 100%);
  }

  .carousel-copy {
    padding: 2rem 0 4.8rem;
  }

  .benefit-item {
    align-items: center;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    flex-direction: column;
    gap: .5rem;
    justify-content: flex-start;
    min-height: 132px;
    padding: .8rem .55rem;
    text-align: center;
  }

  .benefit-strip {
    padding: .75rem 0;
  }

  .benefit-strip .row {
    --bs-gutter-x: .65rem;
    --bs-gutter-y: .65rem;
  }

  .benefit-item span {
    line-height: 1.18;
  }

  .benefit-item strong {
    font-size: .78rem;
  }

  .benefit-item small {
    font-size: .66rem;
  }

  .product-page .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .product-meta-row {
    display: grid;
  }

  .product-qty-row,
  .product-actions-row {
    grid-template-columns: 1fr;
  }

  .product-main-image {
    aspect-ratio: 1 / .92;
  }

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

  .product-thumbnails {
    flex-direction: row;
    max-height: none;
    order: 2;
    overflow-x: auto;
  }

  .product-price {
    font-size: 1.7rem;
  }

  .product-spec-list div {
    display: grid;
    gap: .2rem;
  }

  .product-spec-list dd {
    text-align: left;
  }

  .admin-page-heading,
  .admin-list-heading,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-toggle-row,
  .admin-product-grid,
  .admin-product-actions {
    grid-template-columns: 1fr;
  }

  .flash-message {
    align-items: flex-start;
    grid-template-columns: auto 1fr;
    padding: .85rem;
  }

  .flash-close {
    grid-column: 2;
    justify-self: end;
    margin-top: -.35rem;
  }

  .tracking-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .site-footer {
    margin-top: 2rem !important;
    padding-top: 1.25rem;
  }

  .site-footer-grid > section {
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
  }

  .site-footer h2 {
    align-items: center;
    display: flex;
    font-size: .85rem;
    margin-bottom: .75rem;
  }

  .footer-links,
  .footer-contact-list {
    gap: 0;
  }

  .footer-links a,
  .footer-contact-list a {
    align-items: center;
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    min-height: 40px;
    overflow-wrap: anywhere;
  }

  .footer-links a:last-child,
  .footer-contact-list a:last-child {
    border-bottom: 0;
  }

  .footer-trust-image {
    min-height: 44px;
  }

  .footer-trust-image > img {
    max-height: 50px;
  }

  .footer-payment-placeholder {
    font-size: 1.55rem;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .75rem;
    padding: 1rem 0;
  }

  .site-footer-bottom .small {
    color: #667085;
    font-size: .68rem;
    line-height: 1.6;
  }

  .cart-page-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-item-card {
    align-items: start;
    grid-template-columns: 72px minmax(0, 1fr) 34px;
  }

  .cart-quantity-form {
    grid-column: 1 / 3;
  }

  .cart-item-total {
    align-self: center;
    grid-column: 3;
    grid-row: 2;
  }

  .cart-remove-form {
    grid-column: 3;
    grid-row: 1;
  }

  .list-builder-summary {
    align-items: stretch;
    flex-direction: column;
    gap: .75rem;
  }

  .list-builder-summary > a {
    margin-left: 0;
  }

  .list-builder-item {
    align-items: start;
    grid-template-columns: 58px minmax(0, 1fr) auto;
  }

  .list-builder-item > .badge,
  .list-builder-item > strong {
    grid-column: 2;
    text-align: left;
  }

  .list-catalog-filters {
    grid-template-columns: 1fr;
  }

  .material-list-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: .75rem;
  }

  .list-finder-progress > span {
    font-size: .58rem;
  }

  .list-finder-fields {
    grid-template-columns: 1fr;
  }

  .list-finder-wizard > button {
    justify-self: stretch;
    width: 100%;
  }

  .material-list-item {
    align-items: start;
    grid-template-columns: 28px 64px minmax(0, 1fr);
  }

  .material-list-item > .badge,
  .material-list-item > .material-list-quantity,
  .material-list-item > strong {
    grid-column: 3;
    justify-self: start;
    text-align: left;
  }

  .school-search-panel {
    grid-template-columns: 1fr;
    margin-top: -5.5rem;
  }

  .school-search-panel > div:first-child {
    grid-column: auto;
  }

  .school-directory-grid {
    grid-template-columns: 1fr;
  }

  .school-directory-card {
    align-items: start;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .school-directory-card > a {
    grid-column: 1 / -1;
  }

  .inventory-tabs {
    overflow-x: auto;
  }

  .inventory-tabs a {
    flex: 0 0 auto;
  }

  .inventory-product {
    align-items: start;
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .inventory-stock-number {
    text-align: left;
  }

  .inventory-product > .btn {
    grid-column: auto;
  }

  .stock-alert-menu {
    min-width: min(340px, calc(100vw - 24px));
  }
}

@media (min-width: 576.02px) and (max-width: 991.98px) {
  .list-finder-fields {
    grid-template-columns: 1fr 1fr;
  }

  .material-list-layout {
    grid-template-columns: 1fr;
  }

  .material-list-summary {
    position: static;
  }
}
