:root {
  --navy: #061d31;
  --navy-2: #0d2e4b;
  --gold: #c79b39;
  --gold-soft: #f5e7bf;
  --cream: #fbfaf7;
  --paper: #ffffff;
  --line: #e8dcc8;
  --text: #102133;
  --muted: #687489;
  --danger: #b51f1f;
  --success: #197c45;
  --shadow: 0 18px 50px rgba(11, 31, 52, .10);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 7vw;
  background: rgba(6, 29, 49, .98);
  color: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.08rem;
  white-space: nowrap;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(199, 155, 57, .65);
  border-radius: 8px;
  padding: 4px;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
  opacity: .9;
}

nav a:hover,
.admin-link { color: var(--gold); opacity: 1; }

.cart-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cart-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input {
  width: 220px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.header-search input::placeholder { color: rgba(255, 255, 255, .68); }

.header-search button {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

main { min-height: 75vh; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 7vw;
  background: var(--navy);
  color: #fff;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 74px);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  display: block;
  width: min(144px, 42vw);
  height: auto;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid rgba(199, 155, 57, .7);
  border-radius: 8px;
  padding: 8px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.eyebrow.dark { color: var(--gold); }

.hero h1,
.page-head h1,
.empty-cart h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
  font-weight: 600;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 5.6vw, 5.25rem);
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d8e0f0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--navy);
  padding: 11px 17px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
}

.btn.primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
}

.btn.small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: .85rem;
}

.btn.danger {
  border-color: var(--danger);
  color: var(--danger);
}

.btn:disabled,
button:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.catalogue-btn {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--gold);
  box-shadow: 0 10px 24px rgba(199, 155, 57, .22);
}

.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
  border-radius: 999px;
  color: #d8e0f0;
  font-size: .9rem;
}

.hero-proof strong { color: #fff; }

.hero-showcase {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 460px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: product-marquee 38s linear infinite;
  will-change: transform;
}

.hero-showcase:hover .carousel-track {
  animation-play-state: paused;
}

.hero-product {
  flex: 0 0 238px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.hero-product img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.hero-product span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  font-weight: 900;
  line-height: 1.25;
}

@keyframes product-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
  }
}

.section,
.page-head {
  padding: 54px 7vw;
}

.section h2,
.page-head h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
}

.section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.page-head h1 { font-size: clamp(2.1rem, 4vw, 3.6rem); }

.page-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-title-row,
.title-row,
.cart-panel-head,
.catalogue-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.section-title-row { margin-bottom: 28px; }

.section-title-row a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.trust-band div {
  background: #fff;
  padding: 24px;
}

.trust-band strong {
  display: block;
  color: var(--navy);
  margin-bottom: 7px;
}

.trust-band span {
  color: var(--muted);
  line-height: 1.55;
}

.category-section,
.featured-section,
.catalogue-results {
  background: var(--cream);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.category-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(6, 29, 49, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.category-index {
  color: var(--gold);
  font-weight: 900;
  font-size: .82rem;
}

.category-card h3 {
  margin: 12px 0 8px;
  color: var(--navy);
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.catalogue-head {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.catalogue-filters {
  position: sticky;
  top: 71px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 7vw;
  background: rgba(251, 250, 247, .96);
  border-bottom: 1px solid var(--line);
}

.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-search {
  width: min(620px, 100%);
  padding: 13px 15px;
  border: 1px solid #d6c8af;
  border-radius: 10px;
  background: #fff;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-buttons .btn {
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #e6d8b8;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
}

.filter-buttons .btn.active {
  background: var(--gold);
  border-color: var(--gold);
}

.catalogue-results {
  padding: 28px 0 56px;
}

.catalogue-meta {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 0 7vw 18px;
  color: var(--muted);
}

.catalogue-meta strong {
  color: var(--navy);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
  padding: 0 7vw 8px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(6, 29, 49, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 155, 57, .7);
  box-shadow: var(--shadow);
}

.product-image-link {
  display: block;
  overflow: hidden;
  background: #f4efe6;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .22s ease;
}

.product-card:hover img { transform: scale(1.04); }

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 17px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cat {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.product-info h3 {
  margin: 12px 0 0;
  color: var(--navy);
  line-height: 1.28;
}

.product-info h3 a {
  text-decoration: none;
}

.product-desc {
  color: var(--muted);
  line-height: 1.55;
  font-size: .94rem;
  margin: 10px 0 16px;
}

.price {
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 900;
  white-space: nowrap;
}

.price.big {
  font-size: clamp(2rem, 4vw, 3rem);
}

.stock {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .75rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: right;
}

.stock.ok {
  background: #e9f9ef;
  color: var(--success);
}

.stock.ko {
  background: #ffecec;
  color: var(--danger);
}

.product-buy-row {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.quick-add {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px;
  margin: 0;
}

.quick-add input,
.add-box input,
input,
select,
textarea {
  border: 1px solid #d6c8af;
  border-radius: 10px;
  padding: 11px;
  width: 100%;
  background: #fff;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 570px) minmax(0, 1fr);
  gap: 40px;
  padding: 56px 7vw;
}

.product-media-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.product-large {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.detail-info {
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(6, 29, 49, .06);
}

.detail-info h1 {
  margin: 18px 0 14px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.detail-description {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.detail-benefits,
.cart-checklist {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.detail-benefits span,
.cart-checklist span {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.45;
}

.detail-benefits span::before,
.cart-checklist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.stock-line {
  color: var(--muted);
}

.add-box {
  display: grid;
  gap: 10px;
  max-width: 310px;
}

.premium-add-box .btn {
  width: 100%;
}

.detail-whatsapp {
  display: inline-block;
  margin-top: 18px;
  color: var(--success);
  font-weight: 900;
  text-decoration: none;
}

.table,
table {
  width: 86%;
  margin: 20px auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  background: var(--navy);
  color: #fff;
}

.cart-head {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
  padding: 34px 7vw 16px;
}

.cart-items-panel,
.cart-summary-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(6, 29, 49, .06);
}

.cart-items-panel {
  overflow: hidden;
}

.cart-panel-head {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-panel-head h2,
.cart-summary-panel h2 {
  margin: 0;
  color: var(--navy);
}

.cart-items {
  display: grid;
}

.cart-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) minmax(210px, .42fr);
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f4efe6;
}

.cart-item-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.cart-item-main h3 {
  margin: 8px 0;
  line-height: 1.3;
}

.cart-item-main h3 a {
  text-decoration: none;
}

.cart-item-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cart-item-controls {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 8px;
  text-align: right;
}

.cart-item-controls label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
}

.qty {
  max-width: 92px;
}

.cart-unit {
  color: var(--muted);
  font-size: .9rem;
}

.cart-summary-panel {
  position: sticky;
  top: 112px;
  padding: 22px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 13px 0;
  color: var(--muted);
}

.summary-line strong {
  color: var(--navy);
}

.summary-line.total {
  align-items: center;
  margin: 20px 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}

.cart-summary-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.clear-cart-form {
  padding: 0 7vw 54px;
}

.empty-cart,
.empty-state {
  display: grid;
  place-items: center;
  min-height: 46vh;
  padding: 56px 7vw;
  text-align: center;
}

.empty-cart > div,
.empty-state {
  max-width: 680px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.empty-cart p,
.empty-state p {
  color: var(--muted);
  line-height: 1.7;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 48%, #f3eadb 100%);
  border-top: 1px solid var(--line);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 29, 49, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 29, 49, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .45;
}

.reviews-heading,
.reviews-layout {
  position: relative;
  z-index: 1;
}

.reviews-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 30px;
}

.reviews-heading h2 {
  margin: 0;
  max-width: 720px;
}

.reviews-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-heading-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.reviews-link {
  min-width: 210px;
  border-color: rgba(199, 155, 57, .65);
  background: #fff;
  box-shadow: 0 10px 26px rgba(6, 29, 49, .08);
}

.reviews-score {
  min-width: 210px;
  padding: 18px 20px;
  border: 1px solid rgba(199, 155, 57, .55);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 44px rgba(6, 29, 49, .18);
}

.reviews-score strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
}

.reviews-score span {
  display: block;
  margin-top: 8px;
  color: #d8e0f0;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.35;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.review-card,
.review-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(6, 29, 49, .08);
}

.review-card {
  position: relative;
  display: flex;
  min-height: 255px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 155, 57, .72);
  box-shadow: 0 24px 54px rgba(6, 29, 49, .12);
}

.quote-mark {
  position: absolute;
  top: 4px;
  right: 18px;
  color: rgba(199, 155, 57, .16);
  font-family: Georgia, serif;
  font-size: 5.2rem;
  line-height: 1;
}

.review-rating {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1.08rem;
  letter-spacing: .03em;
}

.review-card p {
  margin: 16px 0 22px;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.75;
}

.review-reply {
  margin: -4px 0 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(199, 155, 57, .34);
}

.review-reply span {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-reply span::before {
  content: "";
  width: 18px;
  height: 2px;
  margin-right: 8px;
  background: var(--gold);
}

.review-reply p {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: .94rem;
  line-height: 1.65;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-author > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.review-author strong,
.review-author em {
  display: block;
}

.review-author strong {
  color: var(--navy);
}

.review-author em,
.form-note {
  color: var(--muted);
  font-size: .92rem;
  font-style: normal;
}

.review-form {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 11px;
  padding: 24px;
}

.review-form::before {
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #f4d892);
}

.review-form h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.review-form .eyebrow,
.review-form .form-note {
  margin: 0;
}

.review-form label {
  margin-top: 4px;
  font-weight: 800;
  color: var(--navy);
}

.review-form input,
.review-form select,
.review-form textarea {
  border-color: #d7c59d;
  background: #fff;
}

.review-form textarea {
  resize: vertical;
}

.review-form button {
  margin-top: 6px;
}

.reviews-page-head {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.reviews-all-section {
  padding-top: 44px;
}

.reviews-list-all {
  align-content: start;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 30px;
  padding: 40px 7vw;
}

.form-card,
.summary-card,
.payment-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(6, 29, 49, .06);
}

.form-card {
  display: grid;
  gap: 10px;
}

.payment-box {
  max-width: 720px;
  margin: 50px auto;
}

.pay-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  background: var(--gold-soft);
  border: 1px dashed var(--gold);
  padding: 18px;
  border-radius: 8px;
  text-align: center;
}

.page-head.about-page,
.about-page {
  padding: 44px 7vw;
}

.about-copy {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.about-copy p {
  margin: 0;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.8;
}

.whatsapp-contact-link {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

.engagements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.engagements div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.engagements span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.flash-zone {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 28px));
  pointer-events: none;
}

.flash {
  padding: 13px 16px;
  border: 1px solid #d7e8dc;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(6, 29, 49, .18);
  font-weight: 800;
  line-height: 1.4;
  animation: toast-in .18s ease-out, toast-out .35s ease-in 3.6s forwards;
}

.flash.success { border-color: #b7e2c7; background: #ecf9f0; }
.flash.danger { border-color: #ffc6c6; background: #fff0f0; }
.flash.warning { border-color: #f3d99d; background: #fff8e8; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
  to { opacity: 0; transform: translateY(-8px); visibility: hidden; }
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 24px 7vw;
  font-size: .9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

@media (max-width: 1040px) {
  .home-hero,
  .product-detail,
  .cart-layout,
  .reviews-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .cart-summary-panel {
    position: static;
  }

  .review-form {
    position: static;
  }
}

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 4vw;
  }

  nav {
    width: 100%;
    gap: 12px;
  }

  .header-search {
    width: 100%;
  }

  .header-search input {
    flex: 1;
    width: auto;
  }

  .hero,
  .section,
  .page-head,
  .about-page {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 14vw, 3.5rem);
  }

  .trust-band,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 310px;
  }

  .hero-product {
    flex-basis: 210px;
    min-height: 310px;
  }

  .section-title-row,
  .reviews-heading,
  .catalogue-head,
  .cart-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-score {
    width: 100%;
  }

  .reviews-heading-actions {
    width: 100%;
    justify-items: stretch;
  }

  .catalogue-filters {
    position: static;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-grid,
  .catalogue-meta,
  .cart-layout,
  .clear-cart-form {
    padding-left: 4vw;
    padding-right: 4vw;
  }

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

  .cart-item-controls {
    justify-items: stretch;
    text-align: left;
  }

  .cart-item-controls label {
    max-width: 140px;
  }

  .table,
  table {
    width: 100%;
    font-size: .9rem;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .actions,
  .cart-summary-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  button {
    width: 100%;
  }

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

  .quick-add {
    grid-template-columns: 72px 1fr;
  }
}
