:root {
  --primary: #d6a85f;
  --primary-dark: #9f7134;
  --navy: #164a48;
  --navy-deep: #0c302f;
  --ink: #243433;
  --muted: #667775;
  --soft: #f2f8f6;
  --line: #d8e7e3;
  --white: #fff;
  --success: #17753c;
  --danger: #b42318;
  --shadow: 0 16px 45px rgba(12, 48, 47, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background: #fff;
  font: 15px/1.6 Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 16px; }
h1, h2, h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.15;
}
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(27px, 3.5vw, 40px); }
h3 { font-size: 20px; }
small { color: var(--muted); }
.container { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.grid { display: grid; gap: 24px; }
.center { justify-content: center; text-align: center; }
.inline { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.mt { margin-top: 24px; }
.mb { margin-bottom: 24px; }
.full-btn { width: 100%; }
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}
.text-link { color: var(--primary-dark); font-weight: 700; }
.danger-text { color: var(--danger); }

.announcement {
  padding: 8px 20px;
  color: #fff;
  background: var(--navy-deep);
  text-align: center;
  font-size: 13px;
}
.header {
  position: sticky;
  z-index: 60;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #edf2f5;
  box-shadow: 0 3px 18px rgba(12, 48, 47, .08);
}
.nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(205px, 1fr) auto minmax(205px, 1fr);
  align-items: center;
  gap: 22px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 900; }
.logo img { width: 76px; height: 60px; object-fit: contain; }
.logo span { max-width: 130px; line-height: 1.1; }
.menu { display: flex; align-items: center; justify-content: center; gap: 24px; }
.menu > a, .dropdown > a { padding: 30px 0; color: var(--navy); font-weight: 700; }
.menu a:hover, .menu a.active { color: var(--primary); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: -20px;
  width: 230px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: .2s ease;
}
.dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; transform: none; }
.dropdown-menu a { display: block; padding: 9px 12px; border-radius: 7px; font-weight: 600; }
.dropdown-menu a:hover { background: var(--soft); }
.actions { display: flex; min-width: 0; align-items: center; justify-content: flex-end; gap: 10px; }
.phone { color: var(--navy); font-size: 13px; font-weight: 800; }
.user-link { color: var(--navy); font-weight: 700; }
.logout-form { margin: 0; }
.link-button { padding: 0; color: var(--primary-dark); background: none; border: 0; font-weight: 700; }
.icon-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 9px;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  gap: 3px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.cart-count {
  min-width: 17px;
  padding: 1px 5px;
  color: #fff;
  background: var(--primary);
  border-radius: 20px;
  font-size: 10px;
}
.mobile-toggle { display: none; padding: 7px; background: none; border: 0; color: var(--navy); font-size: 24px; }
.mobile-only { display: none !important; }

.flash {
  margin-top: 16px;
  padding: 13px 16px;
  border: 1px solid;
  border-radius: 9px;
  font-weight: 600;
}
.flash-success { color: var(--success); background: #eaf8ef; border-color: #bde5ca; }
.flash-warning { color: #815300; background: #fff7dd; border-color: #edd18a; }
.flash-danger { color: var(--danger); background: #fff0ef; border-color: #f0b9b4; }

.hero-slider { position: relative; overflow: hidden; background: #eef5fa; }
.hero-slide { display: none; position: relative; }
.hero-slide.active { display: block; animation: fade-in .45s ease; }
@keyframes fade-in { from { opacity: .35; } to { opacity: 1; } }
.hero-slide picture, .hero-slide img { display: block; width: 100%; }
.hero-slide img {
  width: 100%;
  aspect-ratio: 2040 / 771;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}
.hero-action {
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 24px;
  left: max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(3, 29, 56, .88);
  border-radius: 12px;
}
.hero-action strong, .hero-action span { display: block; }
.hero-action span { color: #dceaf3; font-size: 13px; }
.slider-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(3, 29, 56, .78);
  border: 0;
  border-radius: 50%;
  font-size: 32px;
  transform: translateY(-50%);
}
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots {
  position: absolute;
  top: 18px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}
.slider-dots button { width: 9px; height: 9px; padding: 0; background: #ffffffa0; border: 0; border-radius: 50%; }
.slider-dots button.active { width: 26px; background: var(--primary); border-radius: 8px; }
.trust-strip { padding: 22px 0; color: #fff; background: var(--navy); }
.trust-strip .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); text-align: center; }

.section { padding: 72px 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 680px; margin: 0 auto 34px; text-align: center; }
.section-head p { color: var(--muted); }
.categories { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.category-card {
  padding: 14px 14px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition: .22s ease;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--soft);
  border-radius: 13px;
}
.category-card h3 { margin: 14px 0 4px; font: 800 16px/1.3 Arial, sans-serif; }
.products { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: .22s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card > a {
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fbfdff;
}
.product-card img { width: 100%; height: 100%; object-fit: contain; background: #fbfdff; }
.product-info { flex: 1; display: flex; flex-direction: column; padding: 17px; }
.product-info h3 {
  min-height: 45px;
  margin: 5px 0 9px;
  display: -webkit-box;
  overflow: hidden;
  font: 700 16px/1.4 Arial, sans-serif;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-info > div:not(.product-actions) { min-height: 32px; }
.price { color: var(--primary-dark); font-size: 20px; font-weight: 900; }
.old-price { margin-left: 6px; color: #8d969e; text-decoration: line-through; }
.product-actions { margin-top: auto; padding-top: 16px; display: flex; gap: 8px; }
.product-actions .btn { flex: 1; }
.about-grid, .enquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}
.about-grid > div > p, .enquiry-grid > div > p { color: var(--muted); font-size: 16px; }
.about-grid > img, .about-page-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--soft);
  border-radius: 18px;
}
.trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-grid .card { border-top: 4px solid var(--primary); }

.btn {
  min-height: 43px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-weight: 800;
  transition: .2s ease;
}
.btn, .input, .qty { max-width: 100%; }
.btn:hover { color: #fff; background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { color: var(--primary-dark); background: transparent; border-color: var(--primary); }
.btn-outline:hover { color: #fff; }
.btn-sm { min-height: 34px; padding: 6px 10px; font-size: 12px; }
.danger-btn { background: var(--danger); border-color: var(--danger); }
.card { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.notice { padding: 13px 15px; color: #715000; background: #fff7dc; border: 1px solid #ebd18d; border-radius: 9px; }
.breadcrumbs { padding: 18px 0; color: var(--muted); background: var(--soft); border-bottom: 1px solid var(--line); }
.empty { padding: 65px 25px; text-align: center; }
.empty-icon { font-size: 58px; }
.success-card { max-width: 800px; margin: 0 auto; }
.success-icon { width: 82px; height: 82px; margin: 0 auto 20px; display: grid; place-items: center; color: #fff; background: var(--success); border-radius: 50%; font-size: 42px; }

.shop-layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 34px; }
.shop-layout > div { min-width: 0; }
.shop-layout form.inline .input { min-width: 220px; flex: 1; }
.sidebar { height: max-content; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.sidebar a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); }
.sidebar a:last-child { border-bottom: 0; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: start; }
.product-detail > * { min-width: 0; }
.product-main-image { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.gallery-thumbs { margin-top: 12px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-thumbs button { padding: 4px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.gallery-thumbs img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.stock { display: inline-block; padding: 5px 10px; color: var(--success); background: #eaf8ef; border-radius: 20px; font-size: 13px; font-weight: 700; }
.product-copy { margin-top: 20px; color: var(--muted); font-size: 16px; }
.sku { margin-top: 18px; color: var(--muted); font-size: 13px; }
.product-description p { white-space: pre-line; }
.specs { width: 100%; border-collapse: collapse; }
.specs td { padding: 12px; border-bottom: 1px solid var(--line); }
.specs td:first-child { width: 35%; font-weight: 800; }

.cart-table, .admin-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td, .admin-table th, .admin-table td { padding: 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.cart-table th, .admin-table th { color: var(--navy); background: #f7fafc; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.cart-card { padding: 0; overflow: hidden; }
.cart-img { width: 70px; height: 70px; object-fit: contain; }
.qty { width: 76px; padding: 10px; border: 1px solid var(--line); border-radius: 7px; }
.cart-summary { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.cart-summary > div { display: grid; gap: 2px; min-width: 140px; }
.cart-summary strong { color: var(--navy); font-size: 24px; }
.checkout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(310px, .7fr); gap: 35px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; color: var(--navy); font-weight: 800; }
.field small { display: block; margin-top: 6px; line-height: 1.4; }
.input { width: 100%; min-height: 44px; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #cbd9e2; border-radius: 8px; }
.input:focus { outline: 2px solid rgba(244, 122, 18, .2); border-color: var(--primary); }
textarea.input { resize: vertical; }
.order-summary { position: sticky; top: 110px; }
.summary-row { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.summary-row span:first-child { max-width: 70%; }
.payment-option, .payment-disabled { margin-top: 14px; padding: 14px; display: flex; gap: 10px; border: 1px solid var(--primary); border-radius: 9px; }
.payment-option small, .payment-disabled small { display: block; }
.payment-disabled { display: block; color: #8e969d; background: #f6f7f8; border-color: #d9dee2; }
.contact-details p { display: grid; gap: 2px; margin-bottom: 20px; }
.contact-details a { color: var(--primary-dark); }
.policy-card { max-width: 900px; }
.auth-section { min-height: 620px; display: grid; place-items: center; background: linear-gradient(145deg, #edf8f5, #fff9ef); }
.auth-card { width: min(520px, calc(100% - 32px)); box-shadow: var(--shadow); }
.account-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.status-pill { display: inline-block; padding: 4px 9px; color: var(--navy); background: #eaf4fb; border-radius: 20px; font-size: 12px; font-weight: 800; text-transform: capitalize; }

.footer { padding: 58px 0 20px; color: #dce7ee; background: var(--navy-deep); }
.footer-grid { grid-template-columns: 2fr 1fr 1.2fr 1.5fr; }
.footer h3 { color: #fff; font: 800 17px Arial, sans-serif; }
.footer a { display: block; margin: 8px 0; color: #dce7ee; }
.footer a:hover { color: var(--primary); }
.footer p, .footer a { overflow-wrap: anywhere; }
.footer p { color: #b9cbd7; }
.footer-policies { margin-top: 38px; padding: 18px 0; display: flex; gap: 24px; flex-wrap: wrap; border-top: 1px solid #ffffff1a; border-bottom: 1px solid #ffffff1a; }
.footer-policies span { margin-left: auto; color: #9fb1bd; }
.footer-bottom { padding-top: 18px; color: #95aaba; text-align: center; }
.whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #20b85a;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
  font-size: 28px;
}

.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px minmax(0, 1fr); }
.admin-side {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--navy-deep);
  overflow-y: auto;
}
.admin-brand { margin-bottom: 24px; padding-bottom: 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #ffffff1a; font-weight: 800; line-height: 1.2; }
.admin-brand img { width: 56px; height: 52px; object-fit: contain; background: #fff; border-radius: 9px; }
.admin-brand small { display: block; color: #9fb6c5; font-weight: 400; }
.admin-side nav { flex: 1; }
.admin-side nav a { display: block; padding: 10px 12px; color: #dce8ef; border-radius: 8px; }
.admin-side nav a:hover { color: #fff; background: #ffffff14; }
.admin-logout { width: 100%; padding: 10px; color: #fff; background: transparent; border: 1px solid #ffffff30; border-radius: 8px; }
.admin-main { min-width: 0; padding: 28px; background: #f4f7f9; }
.admin-top { display: flex; align-items: center; justify-content: space-between; }
.admin-top h1 { margin-bottom: 0; font-size: 36px; }
.stats { grid-template-columns: repeat(5, 1fr); }
.stat { padding: 22px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--primary); border-radius: 11px; }
.stat span { color: var(--muted); }
.stat strong { display: block; color: var(--navy); font-size: 30px; }
.admin-two-column { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.4fr); gap: 24px; align-items: start; }
.admin-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.thumb { width: 58px; height: 58px; object-fit: contain; background: var(--soft); border-radius: 6px; }
.edit-preview, .settings-preview { max-width: 200px; max-height: 150px; margin: 8px 0 16px; object-fit: contain; background: var(--soft); border-radius: 8px; }
.product-preview { width: 180px; height: 180px; }
.logo-preview { max-height: 90px; }
.banner-admin-card { padding: 0 0 18px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.banner-admin-card img { width: 100%; max-height: 180px; margin-bottom: 10px; object-fit: cover; border-radius: 8px; }
.table-wrap { overflow-x: auto; }
.message-cell { min-width: 260px; max-width: 480px; white-space: pre-wrap; }
.compact-select { min-width: 125px; min-height: 36px; padding: 5px 8px; }
.order-totals { margin: 20px 0 0 auto; max-width: 320px; }
.order-totals p { display: flex; justify-content: space-between; }
.login-wrap { min-height: 100vh; padding: 28px 0; display: grid; place-items: center; background: linear-gradient(145deg, var(--navy-deep), #267570); }
.login-card { width: min(430px, calc(100% - 32px)); padding: 34px; background: #fff; border-radius: 16px; box-shadow: 0 24px 70px rgba(0, 0, 0, .28); }
.login-logo { width: 82px; height: 70px; margin-bottom: 12px; object-fit: contain; }

@media (max-width: 1160px) {
  .container { width: min(100% - 32px, 1080px); }
  .phone { display: none; }
  .nav { grid-template-columns: minmax(180px, 1fr) auto minmax(120px, 1fr); gap: 16px; }
  .menu { gap: 18px; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 940px) {
  .header { position: sticky; }
  .mobile-toggle { display: block; }
  .nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo img { width: 62px; height: 52px; }
  .logo span { max-width: 150px; }
  .menu {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 74px);
    padding: 14px max(20px, calc((100% - 720px) / 2)) 24px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .menu.open { display: block; }
  .menu > a, .dropdown > a { display: block; padding: 10px 0; }
  .dropdown-menu {
    position: static;
    width: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 2px 0 4px 14px;
    transform: none;
    border: 0;
    box-shadow: none;
  }
  .dropdown-menu a { padding: 8px 10px; }
  .mobile-only { display: block !important; }
  .menu-account {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .menu-account form { margin: 0; }
  .menu-account .link-button { width: 100%; padding: 10px 0; text-align: left; }
  .actions { margin-left: auto; }
  .user-link { font-size: 13px; }
  .logout-form { display: none; }
  body.menu-open { overflow: hidden; }
  .hero-action { position: static; border-radius: 0; }
  .hero-slide img { min-height: 260px; aspect-ratio: 16 / 7; object-fit: cover; }
  .trust-strip .grid { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .enquiry-grid, .product-detail, .checkout, .shop-layout, .admin-two-column { grid-template-columns: 1fr; }
  .shop-layout { gap: 24px; }
  .sidebar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 16px; }
  .sidebar h3 { grid-column: 1 / -1; }
  .order-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { display: block; }
  .admin-side { position: static; height: auto; padding: 16px; }
  .admin-brand { margin-bottom: 12px; padding-bottom: 12px; }
  .admin-side nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .admin-side nav a { padding: 9px; text-align: center; }
  .admin-main { padding: 22px; }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(30px, 9vw, 40px); }
  h2 { font-size: clamp(25px, 7vw, 32px); }
  .container { width: calc(100% - 28px); }
  .section { padding: 54px 0; }
  .section-head { margin-bottom: 26px; }
  .card { padding: 20px; }
  .hero-action { padding: 15px 16px; }
  .hero-action .btn { width: 100%; }
  .about-grid, .enquiry-grid { gap: 30px; }
  .about-grid > img { grid-row: 1; }
  .product-detail { gap: 28px; }
  .product-description { overflow-x: auto; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .checkout { gap: 22px; }
  .account-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 16px; }
  .footer { padding-top: 46px; }
  .footer-policies { gap: 10px 18px; }
  .admin-side nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-top { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .announcement { padding: 7px 12px; font-size: 11px; line-height: 1.4; }
  .nav { min-height: 66px; gap: 8px; }
  .menu { top: 66px; max-height: calc(100vh - 66px); }
  .logo { gap: 6px; }
  .logo img { width: 50px; height: 46px; }
  .logo span { max-width: 94px; font-size: 12px; }
  .mobile-toggle { padding: 5px; font-size: 22px; }
  .actions { gap: 6px; }
  .user-link { display: none; }
  .icon-btn { min-width: 40px; height: 40px; }
  .hero-action { align-items: stretch; flex-direction: column; }
  .hero-slide img { min-height: 210px; aspect-ratio: 4 / 3; }
  .slider-arrow { width: 38px; height: 38px; font-size: 25px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .trust-strip .grid { grid-template-columns: 1fr 1fr; gap: 12px; font-size: 12px; }
  .categories { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 8px; }
  .category-card h3 { font-size: 13px; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-info { padding: 11px; }
  .product-info h3 { min-height: 38px; margin-bottom: 7px; font-size: 13px; line-height: 1.45; }
  .product-info small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .product-info > div:not(.product-actions) { min-height: 25px; }
  .price { font-size: 15px; }
  .old-price { font-size: 11px; }
  .product-actions { padding-top: 10px; display: grid; grid-template-columns: 1fr; gap: 6px; }
  .product-actions .btn { width: 100%; min-height: 34px; padding: 6px 7px; font-size: 11px; }
  .form-grid, .footer-grid, .stats { grid-template-columns: 1fr; }
  .cart-summary { align-items: stretch; flex-direction: column; }
  .cart-summary { gap: 12px; }
  .cart-table thead { display: none; }
  .cart-table tr { display: grid; padding: 14px; border-bottom: 1px solid var(--line); }
  .cart-table td { padding: 5px; border: 0; }
  .cart-table td .inline { align-items: flex-start; flex-wrap: nowrap; }
  .cart-img { flex: 0 0 64px; width: 64px; height: 64px; }
  .shop-layout form.inline { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
  .shop-layout form.inline .input { min-width: 0; }
  .specs td { padding: 10px 8px; }
  .specs td:first-child { width: 43%; }
  .footer-policies { display: block; }
  .footer-policies a { display: block; margin: 8px 0; }
  .footer-policies span { display: block; margin-top: 12px; }
  .admin-main { padding: 16px; }
  .admin-table th, .admin-table td { padding: 9px; }
  .login-card { padding: 26px 20px; }
  .whatsapp { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 20px); }
  .logo span { display: none; }
  .products { gap: 8px; }
  .product-info { padding: 9px; }
  .category-card h3 { min-height: 34px; }
  .sidebar { grid-template-columns: 1fr; }
  .shop-layout form.inline { grid-template-columns: 1fr; }
  .shop-layout form.inline .btn { width: 100%; }
}
