:root {
  --red: #e63946;
  --red-dark: #c1121f;
  --ink: #111;
  --ink-2: #1d1d1f;
  --ink-3: #2a2a2d;
  --paper: #fff;
  --soft: #f4f5f7;
  --soft-2: #eceef2;
  --line: #dedfe4;
  --muted: #6d7178;
  --green: #1e8f63;
  --shadow: 0 18px 40px rgba(17, 17, 17, .12);
  --radius: 8px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Montserrat", var(--font);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--soft);
}

body.menu-open,
body.cart-open,
body.product-menu-open,
body.admin-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink-2);
  color: var(--paper);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .22);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(16px, 4vw, 36px);
  background: #0e0e0f;
  color: #c7c9ce;
  font-size: 13px;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.header-main {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(360px, 720px) auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 36px);
}

.logo,
.footer-logo {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.logo-image {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo-image img {
  display: block;
  width: min(255px, 100%);
  height: 56px;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .25));
}

.logo span,
.footer-logo span {
  color: var(--red);
}

.search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 8px 0 14px;
  background: var(--paper);
  color: var(--muted);
  border: 2px solid transparent;
  border-radius: var(--radius);
}

.search:focus-within {
  border-color: var(--red);
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.search button,
.newsletter button {
  border: 0;
  background: var(--red);
  color: var(--paper);
  font-weight: 800;
  border-radius: 6px;
  padding: 10px 15px;
}

.quick-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.quick-link,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #d4d6dc;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 700;
}

.quick-link:hover,
.icon-btn:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
}

.cart-trigger {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: var(--paper);
  font-size: 11px;
}

.category-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 clamp(16px, 4vw, 36px) 12px;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-pill,
.category-menu-btn {
  flex: 0 0 auto;
  border: 1px solid #37383d;
  background: #161617;
  color: #c1c4ca;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

.category-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
}

.category-menu-btn svg {
  width: 18px;
  height: 18px;
}

.category-pill:hover,
.category-pill.is-active,
.category-menu-btn:hover,
.category-menu-btn.is-active {
  color: var(--paper);
  border-color: var(--red);
  background: var(--red);
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 36px) 0;
}

.hero {
  min-height: 315px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(22px, 3.6vw, 40px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(230, 57, 70, .18), transparent 34%),
    linear-gradient(120deg, #141414, #242426);
  color: var(--paper);
  overflow: hidden;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.service-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4.1vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 560px;
  margin: 14px 0 22px;
  color: #c7c9ce;
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .06);
}

.hero-media img {
  display: block;
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .35));
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 0 16px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  background: var(--paper);
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-item svg {
  color: var(--red);
}

.promo-section {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 14px;
  margin-bottom: 22px;
}

.promo-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.promo-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: currentColor;
  opacity: .08;
}

.promo-card span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.promo-card strong {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 10px 0 18px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.08;
  text-transform: uppercase;
}

.promo-card small {
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.promo-red {
  background: var(--red);
}

.promo-dark {
  background: var(--ink-2);
}

.promo-light {
  background: #fff;
  border: 1px solid var(--line);
}

.promo-light span,
.promo-light small {
  color: var(--muted);
}

.promo-light strong {
  color: var(--ink);
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 142px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  max-height: calc(100dvh - 164px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.panel-head h2,
.footer h2 {
  margin: 0;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.filter-link {
  width: 100%;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  border-radius: 6px;
  padding: 10px 11px;
  font-weight: 700;
  text-align: left;
}

.filter-link:hover,
.filter-link.is-active {
  background: #fff1f2;
  color: var(--red);
}

.product-menu-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-menu-block h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-menu-list {
  display: grid;
  gap: 6px;
}

.product-menu-link {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #f8f8f9;
  color: var(--ink-3);
  padding: 9px 10px;
  text-align: left;
}

.product-menu-link:hover,
.product-menu-link.is-active {
  border-color: #f1bcc2;
  background: #fff5f6;
  color: var(--red);
}

.product-menu-link span {
  min-width: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.product-menu-link strong {
  min-width: 25px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-menu-link.is-active strong,
.product-menu-link:hover strong {
  color: var(--red);
}

.filter-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.filter-block h3 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.products-area {
  min-width: 0;
  overscroll-behavior: contain;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 10px 0 18px;
}

.section-heading h2,
.service-section h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toolbar select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 0 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.product-media {
  position: relative;
  aspect-ratio: 1.18;
  background: #f7f7f8;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 14px;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: var(--ink-2);
  color: var(--paper);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
}

.badge.sale {
  background: var(--red);
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #9b9ea5;
}

.wish-btn.is-active {
  color: var(--red);
  border-color: var(--red);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.product-brand {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-name {
  margin: 0;
  min-height: 48px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.product-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 62px;
  margin: 9px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 13px;
}

.stock {
  color: var(--green);
  font-weight: 800;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-top: auto;
}

.current-price {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
}

.old-price {
  color: #a4a7ad;
  text-decoration: line-through;
  font-size: 14px;
}

.add-btn {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 0;
  border-radius: 6px;
  background: var(--ink-2);
  color: var(--paper);
  font-weight: 800;
}

.add-btn:hover {
  background: var(--red);
}

.empty-state {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  margin: 28px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.brand-strip span,
.brand-strip-btn {
  border: 0;
  background: transparent;
  color: #a5a8ae;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-strip-btn:hover,
.brand-strip-btn.is-active {
  color: var(--red);
}

.service-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-section p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.service-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer {
  background: var(--ink-2);
  color: #b8bbc2;
}

.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr .9fr 1fr;
  gap: 28px;
  padding: 42px clamp(16px, 4vw, 36px);
}

.footer a {
  display: block;
  color: #dfe1e6;
  text-decoration: none;
  margin: 10px 0;
}

.footer p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.footer-logo {
  color: var(--paper);
}

.footer-logo.logo-image img {
  width: 240px;
  height: 70px;
  padding: 0;
}

.newsletter label {
  display: block;
  margin: 14px 0 8px;
  font-size: 13px;
  font-weight: 800;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.newsletter input {
  min-width: 0;
  border: 1px solid #35363b;
  border-radius: 6px;
  background: #111;
  color: var(--paper);
  padding: 0 12px;
}

.footer-bottom {
  padding: 15px clamp(16px, 4vw, 36px);
  border-top: 1px solid #303035;
  color: #858891;
  text-align: center;
  font-size: 13px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, .48);
}

.product-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 92;
  width: min(390px, 92vw);
  height: 100dvh;
  background: var(--paper);
  box-shadow: 20px 0 50px rgba(0, 0, 0, .22);
  transform: translateX(-104%);
  transition: transform .2s ease;
  overflow: auto;
}

.product-menu-open .product-drawer {
  transform: translateX(0);
}

.product-drawer-head {
  background: #fafafa;
}

.product-drawer-head h2 {
  font-size: 19px;
}

.product-drawer-body {
  padding: 22px 0 28px;
}

.contact-pill {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 18px 24px;
  padding: 0 22px;
  border: 1px solid #d5d5d8;
  border-radius: 999px;
  color: #45464a;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.contact-pill svg {
  width: 27px;
  height: 27px;
}

.drawer-category {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  border: 0;
  border-top: 1px solid transparent;
  background: var(--paper);
  color: #46474b;
  padding: 0 28px;
  text-align: left;
}

.drawer-category:hover {
  background: #f8f8f9;
  color: var(--red);
}

.drawer-category svg {
  width: 31px;
  height: 31px;
}

.drawer-category span {
  font-size: 19px;
  font-weight: 800;
}

.drawer-category strong {
  color: currentColor;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-open .admin-modal {
  display: flex;
}

.admin-panel {
  width: min(1050px, 100%);
  max-height: 92dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.admin-panel > .drawer-head {
  background: #fafafa;
}

.admin-login,
.admin-dashboard {
  overflow: auto;
  padding: 22px;
}

.admin-login {
  display: grid;
  gap: 14px;
  max-width: 460px;
}

.admin-login[hidden],
.admin-dashboard[hidden] {
  display: none;
}

.admin-login h3,
.admin-toolbar h3 {
  margin: 0;
}

.admin-login label,
.admin-product-form label,
.admin-promo-form label,
.admin-site-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 800;
}

.admin-login input,
.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea,
.admin-promo-form input,
.admin-promo-form select,
.admin-promo-form textarea,
.admin-site-form input,
.admin-site-form select,
.admin-site-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  outline: 0;
}

.admin-login input:focus,
.admin-product-form input:focus,
.admin-product-form select:focus,
.admin-product-form textarea:focus,
.admin-promo-form input:focus,
.admin-promo-form select:focus,
.admin-promo-form textarea:focus,
.admin-site-form input:focus,
.admin-site-form select:focus,
.admin-site-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, .12);
}

.admin-error {
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.admin-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-toolbar p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-toolbar > div:last-child,
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.admin-product-form,
.admin-promo-form,
.admin-site-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.admin-site-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.admin-site-form legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.admin-form-actions {
  align-items: end;
}

.admin-photo-tools {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.admin-photo-tools img {
  width: 116px;
  height: 92px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--soft);
}

.admin-photo-tools strong,
.admin-photo-tools p {
  display: block;
  margin: 0 0 8px;
}

.admin-photo-tools p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.admin-promotions {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.admin-list {
  display: grid;
  gap: 8px;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 58px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.admin-product-row img {
  width: 58px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--soft);
}

.admin-product-row strong,
.admin-product-row span {
  display: block;
}

.admin-product-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.admin-product-row button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  padding: 8px 10px;
  font-weight: 800;
}

.admin-product-row button:last-child {
  color: var(--red);
}

.promo-swatch {
  width: 58px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(560px, 100vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  box-shadow: -20px 0 50px rgba(0, 0, 0, .22);
  transform: translateX(104%);
  transition: transform .2s ease;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 0;
}

.drawer-head .icon-btn {
  color: var(--ink);
}

.drawer-body {
  overflow: auto;
  padding: 12px 18px;
}

.cart-lines {
  padding: 0 0 8px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 54px;
  border-radius: 6px;
  background: var(--soft);
  object-fit: contain;
}

.cart-line p {
  margin: 0 0 4px;
  font-weight: 800;
}

.cart-line span {
  color: var(--muted);
  font-size: 13px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button {
  width: 30px;
  height: 30px;
  border: 0;
  background: var(--soft);
  font-weight: 800;
}

.qty-control strong {
  min-width: 28px;
  text-align: center;
}

.cart-footer {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.cart-footer div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-footer .btn {
  width: 100%;
}

.cart-footer .btn:disabled {
  cursor: not-allowed;
  background: #c7c9ce;
}

.checkout-form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-form[hidden],
.online-payment[hidden],
.order-success[hidden] {
  display: none;
}

.checkout-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.checkout-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--paper);
  font-weight: 800;
}

.checkout-step h3,
.order-success h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.checkout-step p,
.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 800;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 11px 12px;
  outline: 0;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, .12);
}

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

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-option {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.payment-option input {
  width: auto;
  margin-top: 3px;
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 500;
}

.online-payment {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #f0c1c7;
  border-radius: var(--radius);
  background: #fff6f7;
}

.order-success {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #b9e1cf;
  border-radius: var(--radius);
  background: #f2fbf6;
  color: #174b33;
}

.order-success p,
.order-success ul {
  margin: 8px 0;
  color: #286347;
  line-height: 1.55;
}

.order-success ul {
  padding-left: 18px;
}

.text-btn {
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 800;
}

@media (min-width: 901px) {
  .shop-layout {
    height: calc(100dvh - 154px);
    overflow: hidden;
  }

  .products-area {
    max-height: calc(100dvh - 154px);
    overflow-y: auto;
    padding-right: 4px;
  }
}

.mobile-only,
.desktop-hidden {
  display: none;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
  }

  .search {
    grid-column: 1 / -1;
    order: 3;
  }

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

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .mobile-only,
  .desktop-hidden {
    display: inline-flex;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
  }

  .quick-actions .quick-link:not(.cart-trigger) {
    display: none;
  }

  .category-nav {
    display: none;
  }

  main {
    padding-top: 16px;
  }

  .hero {
    min-height: 0;
    padding: 24px;
  }

  .trust-band,
  .promo-section,
  .service-section,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .filters {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 90;
    width: min(340px, 88vw);
    border-radius: 0;
    transform: translateX(-104%);
    transition: transform .2s ease;
    overflow: auto;
  }

  .menu-open .filters {
    transform: translateX(0);
  }

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

@media (max-width: 640px) {
  .top-strip {
    display: none;
  }

  .header-main {
    gap: 10px;
    padding: 12px 14px;
  }

  .logo {
    font-size: 23px;
  }

  .logo-image img {
    width: 180px;
    height: 48px;
  }

  .search {
    min-height: 44px;
    padding-left: 12px;
  }

  .search button {
    display: none;
  }

  .hero {
    padding: 22px 18px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-media {
    display: none;
  }

  .trust-band,
  .promo-section,
  .product-grid,
  .service-section,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar {
    align-items: stretch;
    justify-content: space-between;
  }

  .toolbar label {
    justify-content: flex-end;
  }

  .product-card {
    flex-direction: row;
  }

  .product-media {
    width: 42%;
    min-width: 138px;
    aspect-ratio: auto;
  }

  .product-name {
    min-height: 0;
  }

  .product-description {
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .current-price {
    font-size: 22px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-product-row {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    display: grid;
  }

  .admin-product-form {
    grid-template-columns: 1fr;
  }

  .admin-promo-form {
    grid-template-columns: 1fr;
  }

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

  .admin-site-form,
  .admin-site-form fieldset {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    justify-content: flex-start;
  }
}

/* ── ADMIN TABS ── */
.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 22px;
}

.admin-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s;
}

.admin-tab:hover { color: var(--ink); }
.admin-tab.is-active { color: var(--red); border-bottom-color: var(--red); }

.admin-tab-panel[hidden] { display: none; }

.order-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

/* ── ORDER CARDS ── */
.orders-list {
  display: grid;
  gap: 16px;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.order-card--archived {
  opacity: .85;
  background: #fafafa;
}

.order-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #f7f7f8;
  border-bottom: 1px solid var(--line);
}

.order-id {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.order-date {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.order-status {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.order-status--pending {
  background: #fff7e6;
  color: #b45309;
}

.order-status--shipped {
  background: #ecfdf5;
  color: #065f46;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.order-section {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.order-section:last-child { border-right: 0; }

.order-section h4 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.order-section p {
  margin: 4px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
}

.order-section a { color: var(--red); text-decoration: none; }
.order-section a:hover { text-decoration: underline; }

.order-lines {
  margin: 0 0 10px;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-3);
}

.order-total {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink);
}

.cod-tag {
  margin-top: 8px !important;
  font-size: 12px !important;
  color: var(--muted) !important;
  font-style: italic;
}

.order-actions {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: #fafafa;
}

.ship-btn {
  font-size: 13px;
}

.order-shipped-at {
  padding: 10px 18px;
  margin: 0;
  border-top: 1px solid var(--line);
  background: #f0fdf4;
  font-size: 12px;
  color: #065f46;
  font-weight: 700;
}

/* ── COD NOTICE ── */
.cod-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #d1fae5;
  border-radius: var(--radius);
  background: #f0fdf4;
  color: #065f46;
  font-size: 14px;
  font-weight: 700;
}

.cod-notice svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #065f46;
}

@media (max-width: 640px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-section { border-right: 0; border-bottom: 1px solid var(--line); }
  .admin-tab { padding: 10px 12px; font-size: 13px; }
}

/* ── BRAND FILTERS ── */
.brand-filter-list {
  display: grid;
  gap: 6px;
}

.brand-filter-btn {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8f8f9;
  color: var(--ink-3);
  padding: 10px 14px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
  transition: all .15s;
}

.brand-filter-btn:hover {
  border-color: #f1bcc2;
  background: #fff5f6;
  color: var(--red);
}

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

.brand-filter-btn[data-brand="all"] {
  font-size: 12px;
  text-transform: none;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  padding: 6px 14px;
}

.brand-filter-btn[data-brand="all"].is-active {
  color: var(--red);
  background: #fff1f2;
  border-color: #f1bcc2;
}

/* ── WHATSAPP ── */
.top-strip-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25d366;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: opacity .15s;
}

.whatsapp-link:hover { opacity: .8; }

.whatsapp-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
  flex-shrink: 0;
}

/* Footer WhatsApp link */
.footer-whatsapp {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: #25d366 !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  margin: 10px 0;
  transition: opacity .15s;
}

.footer-whatsapp:hover { opacity: .8; }

.footer-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
  flex-shrink: 0;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke: none;
  flex-shrink: 0;
}

.whatsapp-float-label {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 16px; }
  .top-strip-contacts { gap: 10px; }
}
