:root {
  --ink: #11223b;
  --muted: #637083;
  --paper: #ffffff;
  --canvas: #f5f7fb;
  --blue: #155eef;
  --blue-dark: #0d3eb6;
  --coral: #ff5d4f;
  --yellow: #ffd84d;
  --green: #0f9f6e;
  --line: #dfe5ee;
  --shadow: 0 20px 55px rgba(28, 45, 75, .11);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--ink); color: white; padding: 12px 18px; border-radius: 10px; }
.skip-link:focus { top: 16px; }
.topbar { background: var(--ink); color: white; font-size: .875rem; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 24px; }
.topbar__inner span { display: inline-flex; align-items: center; gap: 7px; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(223,229,238,.8); }
.header-row { min-height: 78px; display: grid; grid-template-columns: auto minmax(250px, 1fr) auto; gap: 34px; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 900; font-size: 1.45rem; letter-spacing: -.04em; }
.brand__mark { display: grid; place-items: center; width: 42px; height: 42px; color: white; background: var(--blue); border-radius: 13px 13px 13px 4px; transform: rotate(-3deg); box-shadow: 0 7px 16px rgba(21,94,239,.25); }
.brand__dot { color: var(--coral); }
.search { position: relative; }
.search input { width: 100%; height: 48px; padding: 0 46px 0 18px; border: 1px solid var(--line); border-radius: 14px; background: #f8faff; color: var(--ink); outline: none; }
.search input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,94,239,.12); background: white; }
.search button { position: absolute; right: 5px; top: 5px; width: 38px; height: 38px; border: 0; border-radius: 10px; background: var(--blue); color: white; cursor: pointer; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-button { position: relative; min-height: 46px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); background: white; padding: 0 15px; border-radius: 14px; font-weight: 750; cursor: pointer; }
.icon-button:hover { border-color: #b8c5d8; transform: translateY(-1px); }
.cart-count { display: grid; place-items: center; min-width: 22px; height: 22px; padding-inline: 5px; border-radius: 99px; background: var(--coral); color: white; font-size: .75rem; }
.hero { padding: 34px 0 22px; }
.hero__panel { min-height: 430px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; background: var(--blue); border-radius: 30px; box-shadow: var(--shadow); }
.hero__panel::before { content: ""; position: absolute; width: 380px; height: 380px; left: -170px; top: -190px; border: 70px solid rgba(255,216,77,.28); border-radius: 50%; }
.hero__copy { position: relative; z-index: 2; padding: 54px 20px 54px 58px; color: white; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 15px; padding: 7px 11px; border-radius: 99px; color: #11223b; background: var(--yellow); font-size: .83rem; font-weight: 850; letter-spacing: .02em; }
.hero h1 { max-width: 610px; margin: 0; font-size: clamp(2.35rem, 5.2vw, 4.8rem); line-height: .98; letter-spacing: -.058em; }
.hero__copy > p:not(.eyebrow) { max-width: 540px; margin: 22px 0 28px; color: rgba(255,255,255,.86); font-size: 1.08rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid transparent; border-radius: 14px; background: var(--ink); color: white; font-weight: 800; cursor: pointer; transition: .18s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(17,34,59,.18); }
.btn--light { background: white; color: var(--blue-dark); }
.btn--outline-light { border-color: rgba(255,255,255,.5); background: transparent; }
.btn--primary { background: var(--blue); }
.btn--danger { background: #c62f3b; }
.btn--ghost { border-color: var(--line); background: white; color: var(--ink); }
.hero__visual { position: relative; align-self: stretch; min-height: 430px; }
.hero__visual::before { content: ""; position: absolute; inset: 42px 40px 22px 20px; border-radius: 42% 58% 54% 46% / 52% 38% 62% 48%; background: var(--yellow); transform: rotate(-4deg); }
.hero__visual img { position: absolute; z-index: 2; width: min(440px, 92%); right: 5%; bottom: -6%; filter: drop-shadow(0 28px 30px rgba(11,33,87,.27)); mix-blend-mode: multiply; border-radius: 22px; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.trust-item { display: flex; gap: 12px; align-items: center; padding: 17px 20px; background: white; }
.trust-item strong, .trust-item span { display: block; }
.trust-item span { color: var(--muted); font-size: .83rem; }
.trust-icon { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 13px; background: #eaf0ff; color: var(--blue); }
.section { padding: 52px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.55rem); line-height: 1.1; letter-spacing: -.04em; }
.section-heading p { margin: 8px 0 0; color: var(--muted); }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab { min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--muted); font-weight: 700; cursor: pointer; }
.filter-tab[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { position: relative; display: flex; flex-direction: column; overflow: hidden; min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.product-card__media { position: relative; aspect-ratio: 1 / .88; overflow: hidden; background: #edf1f7; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.badge { position: absolute; z-index: 2; left: 14px; top: 14px; padding: 6px 10px; border-radius: 99px; background: var(--coral); color: white; font-size: .76rem; font-weight: 850; }
.product-card__body { flex: 1; display: flex; flex-direction: column; padding: 18px; }
.product-meta { color: var(--muted); font-size: .82rem; font-weight: 650; }
.product-card h3 { margin: 6px 0 10px; font-size: 1.17rem; line-height: 1.3; letter-spacing: -.02em; }
.rating { margin-bottom: 15px; color: #e9a500; font-size: .87rem; }
.rating span { color: var(--muted); }
.product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { display: flex; align-items: baseline; gap: 7px; }
.price strong { font-size: 1.28rem; letter-spacing: -.03em; }
.price del { color: #98a2b3; font-size: .82rem; }
.add-btn { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; border: 0; border-radius: 14px; background: var(--blue); color: white; font-size: 1.35rem; cursor: pointer; }
.add-btn:hover { background: var(--blue-dark); transform: rotate(-4deg) scale(1.04); }
.cod-banner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; margin: 22px auto 54px; padding: 28px 34px; border-radius: 24px; background: var(--yellow); }
.cod-banner h2 { margin: 0; font-size: clamp(1.4rem, 2.7vw, 2rem); letter-spacing: -.035em; }
.cod-banner p { margin: 7px 0 0; color: #485267; }
.site-footer { padding: 38px 0; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 48px; }
.site-footer p, .site-footer a { color: #b9c5d6; }
.site-footer h3 { margin: 0 0 12px; font-size: .92rem; }
.footer-links { display: grid; gap: 8px; }
.copyright { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #96a6bb; font-size: .84rem; }
.mobile-cart { display: none; }
.flash-stack { display: grid; gap: 10px; padding-top: 16px; }
.flash { padding: 13px 16px; border-radius: 13px; border: 1px solid; font-weight: 700; }
.flash--success { color: #075f46; background: #e8fbf4; border-color: #9ce4ca; }
.flash--error { color: #8c1d2a; background: #fff0f1; border-color: #ffc3c8; }
.toast { position: fixed; z-index: 80; right: 20px; bottom: 20px; max-width: min(380px, calc(100% - 32px)); padding: 14px 18px; border-radius: 14px; background: var(--ink); color: white; box-shadow: var(--shadow); font-weight: 750; }
.stock-label { margin: 0 0 14px; color: var(--green); font-size: .82rem; font-weight: 700; }
.stock-label--low, .text-danger { color: #bd2431; }
.filter-tab { display: inline-flex; align-items: center; }
.filter-tab[aria-current="page"] { border-color: var(--ink); background: var(--ink); color: white; }
.empty-state { padding: 54px 24px; border: 1px dashed #b9c4d4; border-radius: var(--radius); background: white; text-align: center; }
.empty-state h1, .empty-state h3 { margin: 0 0 8px; }
.empty-state p { margin: 0 0 20px; color: var(--muted); }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 20px; color: var(--muted); font-size: .9rem; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr); gap: 56px; align-items: center; }
.product-detail__media { overflow: hidden; border-radius: 28px; background: #edf1f7; box-shadow: var(--shadow); }
.product-detail__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-detail__content h1 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.05; letter-spacing: -.055em; }
.eyebrow--blue { color: var(--blue-dark); background: #e9f0ff; }
.price--large strong { font-size: 2rem; }
.product-description { color: var(--muted); white-space: normal; }
.detail-checks { display: grid; gap: 10px; margin: 22px 0; padding: 18px; border-radius: 16px; background: white; }
.btn--wide { width: 100%; }
.btn--small { min-height: 38px; padding: 0 12px; border-radius: 10px; font-size: .84rem; }
.page-heading { margin-bottom: 28px; }
.page-heading h1 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.05em; }
.page-heading > p:last-child { color: var(--muted); }
.narrow-wide { max-width: 1080px; }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); gap: 22px; align-items: start; }
.panel, .admin-panel { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 24px rgba(28,45,75,.05); }
.panel h2, .admin-panel h2 { margin: 0 0 20px; font-size: 1.24rem; }
.order-summary { position: sticky; top: 112px; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; color: var(--muted); border-bottom: 1px solid var(--line); }
.summary-row strong { color: var(--ink); }
.summary-total { margin-top: 5px; padding: 18px 0; color: var(--ink); font-size: 1.08rem; border-bottom: 0; }
.summary-total strong { font-size: 1.4rem; }
.summary-note, .secure-note { color: var(--muted); font-size: .82rem; text-align: center; }
.text-link { display: inline-block; color: var(--blue); font-weight: 750; }
.order-summary > .text-link { display: block; margin-top: 14px; text-align: center; }
.is-disabled { pointer-events: auto; opacity: .45; cursor: not-allowed; }
.cart-line { display: grid; grid-template-columns: 88px 1fr auto auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line:first-child { padding-top: 0; }
.cart-line:last-child { border-bottom: 0; }
.cart-line img { width: 88px; height: 88px; object-fit: cover; border-radius: 14px; background: #edf1f7; }
.cart-line__info { display: grid; gap: 4px; }
.cart-line__info span { color: var(--muted); font-size: .9rem; }
.cart-line__total { min-width: 72px; text-align: right; }
.quantity { display: inline-grid; grid-template-columns: 34px 32px 34px; align-items: center; border: 1px solid var(--line); border-radius: 11px; }
.quantity button { height: 34px; border: 0; background: transparent; cursor: pointer; font-size: 1.1rem; }
.quantity span { text-align: center; font-weight: 750; }
.form-error { margin-bottom: 18px; padding: 14px 16px; border: 1px solid #ffc3c8; border-radius: 13px; color: #8c1d2a; background: #fff0f1; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; color: #344054; font-weight: 700; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea, .field select, .status-form select { width: 100%; border: 1px solid #cbd5e1; border-radius: 12px; background: white; color: var(--ink); outline: none; }
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { padding: 12px 13px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus, .status-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,94,239,.11); }
.field small { color: var(--muted); font-size: .78rem; font-weight: 500; }
.check-field { display: flex; gap: 10px; align-items: flex-start; color: #475467; font-size: .9rem; }
.check-field input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.form-panel > .check-field { margin-top: 20px; }
.honeypot { position: fixed !important; left: -100vw !important; opacity: 0 !important; pointer-events: none !important; }
.success-card { max-width: 760px; margin: 30px auto; padding: 48px; border-radius: 28px; background: white; box-shadow: var(--shadow); text-align: center; }
.success-card h1 { margin: 0; font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -.055em; }
.success-card > p:not(.eyebrow) { max-width: 580px; margin: 16px auto 28px; color: var(--muted); }
.success-icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%; background: #e4f8f0; color: var(--green); font-size: 2.2rem; font-weight: 900; }
.success-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0 30px; }
.success-steps div { display: grid; gap: 7px; padding: 17px; border-radius: 15px; background: var(--canvas); }
.success-steps strong { display: grid; place-items: center; width: 30px; height: 30px; margin: auto; border-radius: 50%; background: var(--blue); color: white; }
.success-steps span { font-size: .86rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Administration */
.admin-body { background: #eef2f7; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 260px minmax(0, 1fr); }
.admin-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 26px 20px; background: var(--ink); color: white; }
.brand--admin { margin: 0 8px 30px; }
.admin-nav { display: grid; gap: 6px; }
.admin-nav a { padding: 12px 14px; border-radius: 11px; color: #c7d2e1; font-weight: 700; }
.admin-nav a:hover, .admin-nav a:focus { background: rgba(255,255,255,.09); color: white; }
.admin-user { display: grid; margin-top: auto; padding: 16px 10px 0; border-top: 1px solid rgba(255,255,255,.12); }
.admin-user span { font-weight: 800; }
.admin-user small { color: #9cabbf; }
.admin-user button { margin-top: 10px; padding: 0; border: 0; background: transparent; color: #ffafa8; cursor: pointer; }
.admin-main { min-width: 0; }
.admin-mobile-header { display: none; }
.admin-content { width: min(1280px, calc(100% - 48px)); margin-inline: auto; padding: 42px 0 70px; }
.admin-page-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 26px; }
.admin-page-heading h1 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1; letter-spacing: -.05em; }
.admin-page-heading > div > p:last-child { margin-bottom: 0; color: var(--muted); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat-card { display: grid; gap: 7px; padding: 22px; border-radius: 18px; background: white; border: 1px solid var(--line); }
.stat-card span { color: var(--muted); font-size: .88rem; }
.stat-card strong { font-size: 1.8rem; letter-spacing: -.04em; }
.panel-heading { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-bottom: 16px; }
.panel-heading h2, .panel-heading p { margin: 0; }
.panel-heading p { color: var(--muted); }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
th { color: var(--muted); font-size: .77rem; letter-spacing: .035em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }
.table-sub { display: block; max-width: 300px; margin-top: 4px; color: var(--muted); font-size: .76rem; font-weight: 400; }
.status { display: inline-flex; padding: 5px 9px; border-radius: 99px; background: #eef2f7; color: #475467; font-size: .76rem; font-weight: 800; white-space: nowrap; }
.status--new { background: #e9f0ff; color: #1749a3; }
.status--confirmed, .status--preparing { background: #fff5cf; color: #735b00; }
.status--shipped { background: #e8f6ff; color: #006494; }
.status--delivered { background: #e4f8f0; color: #087454; }
.status--cancelled { background: #fff0f1; color: #a52330; }
.product-cell { min-width: 240px; display: flex; align-items: center; gap: 12px; }
.product-cell img { border-radius: 12px; object-fit: cover; background: var(--canvas); }
.row-actions, .form-actions, .check-row { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.row-actions form { margin: 0; }
.product-form { max-width: 900px; }
.product-form .check-row { margin: 22px 0; gap: 28px; }
.profile-form { max-width: 600px; display: grid; gap: 18px; }
.status-form select { min-width: 160px; height: 40px; padding: 0 10px; }
.admin-login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at top left, #dfe9ff, transparent 40%), var(--canvas); }
.admin-login-card { width: min(460px, 100%); display: grid; gap: 25px; padding: 38px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow); }
.admin-login-card h1 { margin: 0; font-size: 2rem; line-height: 1.1; letter-spacing: -.04em; }
.admin-login-card p { color: var(--muted); }
.stack-form { display: grid; gap: 17px; }

@media (max-width: 1000px) {
  .admin-shell { grid-template-columns: 210px minmax(0, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .header-row { grid-template-columns: auto 1fr; gap: 18px; }
  .search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 14px; }
  .header-actions { justify-self: end; }
  .hero__panel { grid-template-columns: 1fr; }
  .hero__copy { padding: 44px 38px 18px; }
  .hero__visual { min-height: 300px; }
  .hero__visual::before { inset: 20px 12% 18px; }
  .hero__visual img { width: 380px; right: calc(50% - 190px); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .admin-shell { display: block; }
  .admin-sidebar { position: static; height: auto; padding: 16px; flex-direction: row; align-items: center; overflow-x: auto; }
  .brand--admin, .admin-user { display: none; }
  .admin-nav { display: flex; min-width: max-content; }
  .admin-content { width: min(100% - 28px, 1280px); padding-top: 28px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 22px, 1180px); }
  .topbar__inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .topbar__inner span:nth-child(2) { display: none; }
  .site-header { position: relative; }
  .header-row { min-height: 68px; }
  .brand { font-size: 1.22rem; }
  .brand__mark { width: 38px; height: 38px; }
  .header-actions .icon-button { display: none; }
  .hero { padding-top: 16px; }
  .hero__panel { min-height: auto; border-radius: 22px; }
  .hero__copy { padding: 32px 22px 12px; }
  .hero h1 { font-size: clamp(2.1rem, 12vw, 3.4rem); }
  .hero__copy > p:not(.eyebrow) { margin: 16px 0 22px; font-size: 1rem; }
  .hero__visual { min-height: 255px; }
  .hero__visual img { width: 285px; right: calc(50% - 142px); }
  .trust-strip { grid-template-columns: 1fr; }
  .section { padding: 38px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-tab { white-space: nowrap; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 43% 57%; }
  .product-card__media { aspect-ratio: auto; min-height: 220px; }
  .product-card__body { padding: 15px; }
  .product-card__footer { align-items: end; }
  .price { display: grid; gap: 0; }
  .cod-banner { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-cart { position: fixed; z-index: 40; display: flex; align-items: center; justify-content: space-between; left: 10px; right: 10px; bottom: 10px; min-height: 56px; padding: 0 18px; border: 0; border-radius: 16px; background: var(--ink); color: white; box-shadow: 0 15px 35px rgba(9,21,39,.3); font-weight: 800; }
  .cart-line { grid-template-columns: 70px 1fr auto; gap: 11px; }
  .cart-line img { width: 70px; height: 70px; }
  .cart-line__total { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .success-card { padding: 32px 20px; }
  .success-steps { grid-template-columns: 1fr; }
  .admin-page-heading { align-items: flex-start; flex-direction: column; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 16px; }
  .stat-card strong { font-size: 1.4rem; }
  .admin-panel { padding: 16px; }
  .admin-login-card { padding: 28px 22px; }
  .toast { bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
