@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0B3D91;
  --azure: #2F80ED;
  --azure-light: #EAF2FF;
  --ink: #10213B;
  --ink-soft: #5B6B8C;
  --white: #FFFFFF;
  --border: #D7E3F7;
  --error: #E0473C;
  --success: #138A5B;
  --surface: #F5F8FC;
  --warning: #C47B12;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
}

.screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ---------- Left panel: brand ---------- */
.brand-panel {
  position: relative;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 56px;
  overflow: hidden;
}

.brand-panel .wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  z-index: 2;
}

.brand-panel .wordmark span { color: var(--azure); }

.brand-copy {
  z-index: 2;
  max-width: 380px;
}

.brand-copy h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.brand-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: #C9D9F7;
  margin: 0;
}

.brand-panel .stamp {
  z-index: 2;
  font-size: 13px;
  color: #8FAEE8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stamp .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--azure);
}

/* signature: layered wave silhouettes */
.waves {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ---------- Right panel: form ---------- */
.form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.form-card {
  width: 100%;
  max-width: 380px;
}

.form-card .eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--azure);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.form-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.form-card .sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder { color: #9FB0CC; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 4px var(--azure-light);
}

.field .hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.checkbox-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.checkbox-field input {
  width: auto;
  margin: 0;
}

.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -4px 0 22px;
  font-size: 13.5px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}

.checkbox-row input { accent-color: var(--azure); width: 15px; height: 15px; }

.row-between a, .form-card .switch a {
  color: var(--azure);
  text-decoration: none;
  font-weight: 600;
}

.row-between a:hover, .form-card .switch a:hover { text-decoration: underline; }

.btn-primary {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}

.btn-primary:hover { background: #0A3378; }
.btn-primary:active { transform: translateY(1px); }
.btn-primary:focus-visible { outline: 3px solid var(--azure-light); outline-offset: 2px; }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  color: var(--ink-soft);
  font-size: 12.5px;
}

.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-secondary {
  width: 100%;
  padding: 13px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-secondary:hover { border-color: var(--azure); background: var(--azure-light); }

.auth-message {
  min-height: 20px;
  margin: -8px 0 14px;
  font-size: 13px;
  color: var(--ink-soft);
}

.auth-message.error { color: var(--error); }
.auth-message.success { color: var(--success); }

.form-card .switch {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}

.progress-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.progress-dots span {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  flex: 1;
}

.progress-dots span.active { background: var(--azure); }

/* ---------- Dashboard ---------- */
.dashboard-body {
  min-height: 100vh;
  background: var(--surface);
}

.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.dashboard-sidebar {
  background: var(--navy);
  color: var(--white);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.dashboard-logo span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--azure);
  display: grid;
  place-items: center;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
}

.dashboard-nav a {
  color: #C9D9F7;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.support-box {
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.support-box p {
  margin: 0 0 6px;
  color: #9FBCEB;
  font-size: 13px;
}

.support-box strong {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.support-box a {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
}

.dashboard-main {
  padding: 34px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.dashboard-topbar h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  line-height: 1.15;
  margin: 4px 0 0;
}

.account-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  min-width: 340px;
}

.account-chip > span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--azure-light);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.account-chip div {
  min-width: 0;
  flex: 1;
}

.account-chip strong,
.account-chip small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-chip strong {
  font-size: 14px;
}

.account-chip small {
  color: var(--ink-soft);
  font-size: 12px;
}

.account-chip button {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.account-chip button:hover {
  border-color: var(--azure);
  color: var(--navy);
}

.dashboard-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.stat-card,
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.stat-card {
  padding: 22px;
}

.stat-card span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.stat-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin: 8px 0 2px;
}

.stat-card p,
.activity-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.dashboard-content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.wide-content {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
}

.panel {
  padding: 24px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.panel h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  margin: 4px 0 0;
}

.panel-heading a {
  color: var(--azure);
  font-size: 13px;
  font-weight: 700;
}

.activity-list {
  display: grid;
  gap: 14px;
}

.activity-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.activity-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.activity-item small {
  color: var(--ink-soft);
  font-size: 12px;
  white-space: nowrap;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
}

.status-dot.blue { background: var(--azure); }
.status-dot.green { background: var(--success); }
.status-dot.amber { background: var(--warning); }

.quick-actions {
  align-self: start;
}

.quick-actions a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.quick-actions a::after {
  content: ">";
  color: var(--azure);
}

.quick-actions a:hover {
  border-color: var(--azure);
  background: var(--azure-light);
}

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

.service-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.service-grid strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  margin: 0 0 8px;
}

.service-grid p,
.empty-state {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.shop-panel {
  margin-top: 18px;
}

.services-panel {
  margin-top: 18px;
}

.company-panel p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 8px 0 0;
}

.shop-panel .panel-heading {
  color: var(--white);
}

.shop-panel {
  background: #111827;
  border-color: #243041;
}

.shop-panel h2 {
  color: var(--white);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid #253246;
  border-radius: 8px;
  background: #1F2A3A;
  color: var(--white);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 0.92;
  background: #F4F6F8;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-discount {
  position: absolute;
  top: 22px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 5px;
  background: #FF434A;
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
}

.favorite-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #253246;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.product-overlay-row {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-tag,
.product-rating {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.product-tag {
  max-width: 60%;
  padding: 7px 10px;
  background: #697386;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-rating {
  margin-left: auto;
  padding: 7px 9px;
  background: rgba(0, 0, 0, 0.68);
}

.product-info {
  padding: 22px;
}

.product-category {
  display: block;
  margin-bottom: 12px;
  color: #6C7CFF;
  font-size: 13px;
  font-weight: 800;
}

.product-card h3 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.product-card p {
  min-height: 48px;
  margin: 0 0 18px;
  color: #C7D3E3;
  font-size: 15px;
  line-height: 1.55;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 18px;
}

.product-price {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  line-height: 1;
}

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

.add-cart-button {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 8px;
  background: #5141E6;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.add-cart-button:hover {
  background: #4334CE;
}

.add-cart-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.empty-state.error {
  color: var(--error);
}

.search-enquiry-button {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.admin-form {
  display: grid;
}

.cart-body{margin:0;background:#f8fafc;color:#1e293b}.cart-hero{padding:40px max(24px,calc((100% - 1100px)/2));background:linear-gradient(110deg,#4f46e5,#7c2ceb);color:#fff}.cart-hero a{color:#fff;text-decoration:none;font-weight:800}.cart-hero h1{margin:16px 0 6px;font-size:40px}.cart-layout{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(300px,.8fr);gap:32px;max-width:1100px;margin:50px auto;padding:0 24px}.cart-items{display:grid;gap:16px}.cart-item,.cart-summary{background:#fff;border-radius:14px;padding:20px;box-shadow:0 8px 24px #0f172a18}.cart-item{display:grid;grid-template-columns:90px 1fr auto;gap:18px;align-items:center}.cart-item img{width:90px;height:90px;object-fit:cover;border-radius:9px}.cart-item h2,.cart-item p{margin:0 0 8px}.cart-item-price{color:#4f46e5}.cart-quantity button,.cart-remove{margin-right:10px;border:0;border-radius:7px;padding:8px 12px;cursor:pointer}.cart-remove{color:#ef4444;background:transparent}.cart-summary p{display:flex;justify-content:space-between}.cart-summary button,.cart-summary a{display:block;width:100%;box-sizing:border-box;margin-top:14px;padding:15px;border:0;border-radius:8px;background:#4f46e5;color:#fff;font-weight:800;text-align:center;text-decoration:none;cursor:pointer}.cart-summary a{background:#e2e8f0;color:#1e293b}
.cart-body{background:#f4f8ff}.cart-hero,.cart-summary button{background:#1266c7}.cart-item-price{color:#1266c7}.product-info{padding-top:28px}.product-card h3{margin-top:4px}.checkout-body{margin:0;background:#f4f8ff;color:#10213b}.checkout-layout{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(320px,.75fr);gap:32px;max-width:1200px;margin:0 auto;padding:40px 24px}.checkout-form,.checkout-order{background:#fff;padding:34px;border-radius:14px;box-shadow:0 7px 22px #0f172a14}.checkout-form>a{color:#1266c7;font-weight:800;text-decoration:none}.checkout-form h1{font-size:34px}.checkout-form h2,.checkout-order h2{margin-top:28px}.checkout-steps{display:flex;gap:35px;border-bottom:1px solid #cbd5e1;padding:14px 0}.checkout-steps strong{color:#1266c7}.checkout-two,.checkout-three{display:grid;grid-template-columns:1fr 1fr;gap:16px}.checkout-three{grid-template-columns:1fr 1fr 1fr}.checkout-form input,.checkout-form textarea{width:100%;box-sizing:border-box;padding:13px;border:1px solid #cbd5e1;border-radius:8px;font:inherit}.checkout-form button{width:100%;padding:16px;border:0;border-radius:8px;background:#1266c7;color:#fff;font-weight:900;font-size:16px}.checkout-order p{display:flex;justify-content:space-between}.checkout-item{display:grid;grid-template-columns:52px 1fr auto;gap:12px;padding:14px 0;border-bottom:1px solid #e2e8f0}.checkout-item img{width:52px;height:52px;object-fit:cover;border-radius:7px}.checkout-item strong{color:#1266c7}.checkout-total{font-size:19px;font-weight:900}.secure-note{padding:14px;border-radius:8px;background:#e8f8ee;color:#16723a}@media(max-width:860px){.cart-layout,.checkout-layout{grid-template-columns:1fr;margin:24px auto;padding:16px}.cart-item{grid-template-columns:70px 1fr}.cart-item img{width:70px;height:70px}.cart-item-price{grid-column:2}.checkout-two,.checkout-three{grid-template-columns:1fr}.checkout-form,.checkout-order{padding:22px}}

.profile-body { background:#111827; }
.profile-shell { min-height:100vh; display:grid; grid-template-columns:330px minmax(0,1fr); gap:36px; padding:36px; background:#111827; }
.profile-sidebar,.profile-panel { padding:32px; border:1px solid #2E3C50; border-radius:14px; background:#1F2A3A; color:#fff; }
.profile-sidebar { text-align:center; }
.profile-photo-button { width:146px; height:146px; overflow:hidden; padding:0; border:4px solid #635BFF; border-radius:50%; background:#334155; color:#fff; font-size:50px; cursor:pointer; }
.profile-photo-button img { width:100%; height:100%; object-fit:cover; }.change-photo-link { display:block; margin:12px auto 18px; border:0; background:transparent; color:#AEB8C7; cursor:pointer; }.profile-sidebar h1 { margin:0 0 6px; }.profile-sidebar p,.profile-panel>p:not(.eyebrow) { color:#AEB8C7; overflow-wrap:anywhere; }.verified-badge { display:inline-block; margin:16px 0 28px; padding:7px 11px; border-radius:20px; background:#DCFCE7; color:#15803D; font-size:13px; font-weight:800; }.profile-nav { display:grid; gap:8px; }.profile-nav a,.profile-nav button { min-height:48px; padding:12px; border:0; border-radius:8px; background:transparent; color:#fff; font:inherit; text-align:left; text-decoration:none; cursor:pointer; }.profile-nav .active { background:rgba(99,91,255,.2); color:#9B97FF; }.profile-nav button { color:#FF7077; }.profile-panel h2 { margin:4px 0 10px; font-size:30px; }.profile-form { max-width:900px; margin-top:28px; }.profile-form label { color:#fff; }.profile-form .field input,.profile-form .field textarea { border-color:#4A5A70; background:#334155; color:#fff; }.profile-form .field input[readonly] { opacity:.7; }

/* ---------- User shop view ---------- */
.user-dashboard-shell {
  display: block;
  min-height: 100vh;
  background: #111827;
}

.user-dashboard-shell .dashboard-main {
  max-width: 1510px;
  margin: 0 auto;
  padding: 24px 44px 64px;
}

.user-dashboard-shell .dashboard-topbar {
  align-items: center;
  margin-bottom: 34px;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  width: calc(100% + 88px);
  margin: -24px -44px 58px;
  padding: 0 44px;
  background: rgba(245, 248, 251, 0.94);
  border-bottom: 1px solid #DCE6EF;
  backdrop-filter: blur(10px);
}

.shop-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0A1B33;
  text-decoration: none;
}

.shop-brand span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0F2A4A, #1E6FA8);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
}

.shop-brand strong {
  display: grid;
  gap: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  line-height: 1.12;
}

.shop-brand small {
  color: #1E6FA8;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.shop-nav a {
  color: #4A5A70;
  padding: 0;
  border-radius: 0;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
}

.shop-nav a:hover,
.shop-nav a:first-child {
  background: transparent;
  color: #0A1B33;
}

.shop-account {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #0A1B33;
}

.theme-toggle {
  padding: 0;
}

.shop-account > span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #EAF2FF;
  color: #0B3D91;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.shop-account div {
  min-width: 0;
  max-width: 180px;
}

.shop-account strong,
.shop-account small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-account strong {
  font-size: 13px;
}

.shop-account small {
  color: #4A5A70;
  font-size: 11px;
}

.shop-account button {
  border: 1px solid transparent;
  border-radius: 8px;
  background: #0A1B33;
  color: var(--white);
  padding: 11px 16px;
  font-weight: 700;
  cursor: pointer;
}

.shop-account button:hover {
  background: #1E6FA8;
}

.shop-wordmark {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.user-dashboard-shell .account-chip {
  min-width: 300px;
  background: #1F2A3A;
  border-color: #2E3C50;
  color: var(--white);
}

.user-dashboard-shell .account-chip > span {
  background: #5141E6;
  color: var(--white);
}

.user-dashboard-shell .account-chip small {
  color: #AEB8C7;
}

.user-dashboard-shell .account-chip button {
  background: #111827;
  border-color: #344156;
  color: var(--white);
}

.user-dashboard-shell .shop-panel {
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
}

.shop-hero-heading {
  max-width: 900px;
  margin: 10px auto 50px;
  text-align: center;
}

.shop-hero-heading p {
  margin: 0 0 12px;
  color: #7580FF;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero-heading h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  line-height: 1.05;
}

.shop-hero-heading span {
  color: #B7C3D4;
  font-size: 18px;
}

.user-dashboard-shell .product-grid {
  grid-template-columns: repeat(4, minmax(290px, 1fr));
  gap: 34px;
}

.user-dashboard-shell .product-card {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 12px;
  background: #1F2A3A;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.user-dashboard-shell .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
}

.user-dashboard-shell .product-image-wrap {
  aspect-ratio: 1 / 0.98;
  border-radius: 12px 12px 0 0;
  background: #F7F7F8;
}

.user-dashboard-shell .product-image-wrap img {
  transition: transform 0.28s ease;
}

.user-dashboard-shell .product-card:hover .product-image-wrap img {
  transform: scale(1.08);
}

.user-dashboard-shell .product-discount {
  top: 20px;
  left: 20px;
  padding: 7px 11px;
  border-radius: 5px;
  background: #FF424A;
  font-size: 14px;
}

.user-dashboard-shell .favorite-button {
  top: 15px;
  right: 16px;
  width: 54px;
  height: 54px;
  background: #263244;
  color: var(--white);
  font-size: 27px;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.32);
}

.user-dashboard-shell .favorite-button.liked {
  background: #FF424A;
  color: var(--white);
}

.user-dashboard-shell .product-overlay-row {
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.user-dashboard-shell .product-tag {
  background: #22C55E;
  color: var(--white);
  font-size: 14px;
}

.user-dashboard-shell .product-rating {
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  font-size: 14px;
}

.product-stars {
  margin: 0 0 18px;
  color: #FFD028;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-stars span {
  margin-left: 7px;
  color: #8190A5;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.user-dashboard-shell .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.user-dashboard-shell .product-category {
  color: #8190FF;
  font-size: 13px;
  margin-bottom: 12px;
}

.user-dashboard-shell .product-card h3 {
  color: var(--white);
  font-size: 23px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.user-dashboard-shell .product-card p {
  min-height: 70px;
  color: #AEB8C7;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.user-dashboard-shell .product-card p::after {
  content: "";
}

.user-dashboard-shell .product-price-row {
  margin-top: auto;
  margin-bottom: 22px;
}

.user-dashboard-shell .product-price {
  color: var(--white);
  font-size: 30px;
  font-weight: 800;
}

.user-dashboard-shell .product-old-price {
  color: #758194;
  font-size: 14px;
}

.user-dashboard-shell .add-cart-button {
  min-height: 52px;
  border-radius: 8px;
  background: #5446EA;
  font-size: 20px;
}

.user-dashboard-shell .dashboard-content,
.user-dashboard-shell .services-panel {
  margin-top: 38px;
}

.user-dashboard-shell .company-panel,
.user-dashboard-shell .quick-actions,
.user-dashboard-shell .services-panel {
  background: #1F2A3A;
  border-color: #2E3C50;
  color: var(--white);
}

.user-dashboard-shell .company-panel h2,
.user-dashboard-shell .services-panel h2,
.user-dashboard-shell .quick-actions h2 {
  color: var(--white);
}

.user-dashboard-shell .company-panel p,
.user-dashboard-shell .service-grid p {
  color: #AEB8C7;
}

.user-dashboard-shell .service-grid article {
  background: #162131;
  border-color: #2E3C50;
}

.user-dashboard-shell .service-grid strong {
  color: var(--white);
}

.shop-light-mode .user-dashboard-shell {
  background: #F5F8FB;
}

.shop-light-mode .shop-hero-heading p {
  color: #1E6FA8;
}

.shop-light-mode .shop-hero-heading h1 {
  color: #0A1B33;
}

.shop-light-mode .shop-hero-heading span {
  color: #4A5A70;
}

.shop-light-mode .user-dashboard-shell .product-card {
  background: #FFFFFF;
  box-shadow: 0 18px 34px rgba(15, 42, 74, 0.12);
}

.shop-light-mode .user-dashboard-shell .product-card:hover {
  box-shadow: 0 26px 54px rgba(15, 42, 74, 0.2);
}

.shop-light-mode .user-dashboard-shell .product-card h3,
.shop-light-mode .user-dashboard-shell .product-price {
  color: #0A1B33;
}

.shop-light-mode .user-dashboard-shell .product-card p {
  color: #4A5A70;
}

.shop-light-mode .user-dashboard-shell .product-category {
  color: #1E6FA8;
}

.shop-light-mode .user-dashboard-shell .company-panel,
.shop-light-mode .user-dashboard-shell .quick-actions,
.shop-light-mode .user-dashboard-shell .services-panel {
  background: #FFFFFF;
  border-color: #DCE6EF;
  color: #0A1B33;
}

.shop-light-mode .user-dashboard-shell .company-panel h2,
.shop-light-mode .user-dashboard-shell .services-panel h2,
.shop-light-mode .user-dashboard-shell .quick-actions h2,
.shop-light-mode .user-dashboard-shell .service-grid strong {
  color: #0A1B33;
}

.shop-light-mode .user-dashboard-shell .company-panel p,
.shop-light-mode .user-dashboard-shell .service-grid p {
  color: #4A5A70;
}

.shop-light-mode .user-dashboard-shell .service-grid article {
  background: #F5F8FB;
  border-color: #DCE6EF;
}

/* ---------- Shop refinements ---------- */
.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid #DCE6EF;
  border-radius: 10px;
  background: #FFFFFF;
  color: #0A1B33;
  display: grid;
  place-items: center;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.icon-button:hover {
  border-color: #1E6FA8;
  color: #1E6FA8;
}

.menu-toggle { display: none; }

.theme-icon { line-height: 1; }
.moon-icon,
.shop-light-mode .sun-icon { display: none; }
.shop-light-mode .moon-icon { display: inline; }

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

.cart-header-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #0A1B33;
  text-decoration: none;
}

.cart-header-button svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-header-button span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #5446EA;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.cart-header-button span[hidden] {
  display: none;
}

.account-menu {
  position: relative;
}

.account-trigger {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: #EAF2FF;
  color: #0B3D91;
  display: grid;
  place-items: center;
  font-weight: 900;
  cursor: pointer;
}

.account-trigger:hover { background: #DCEBFF; }
.account-trigger > span { line-height: 1; }

.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 50;
  width: 268px;
  padding: 8px 0;
  border: 1px solid #344156;
  border-radius: 0;
  background: #1F2A3A;
  box-shadow: 0 18px 42px rgba(10, 27, 51, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.account-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.account-summary {
  padding: 14px 18px 12px;
  border-bottom: 1px solid #344156;
}

.account-dropdown strong,
.account-dropdown small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-dropdown strong {
  color: #FFFFFF;
  font-size: 14px;
}

.account-dropdown small {
  color: #AEB8C7;
  font-size: 12px;
  margin: 3px 0 0;
}

.account-dropdown a,
.account-dropdown button {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #E5ECF5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.account-dropdown a:hover {
  background: #3A4659;
}

.account-dropdown a span {
  width: 20px;
  color: #5B4CF0;
  font-size: 20px;
}

.account-dropdown button {
  margin-top: 8px;
  border-top: 1px solid #344156;
  color: #FF6B6B;
  font-size: 20px;
}

.account-dropdown button::before {
  content: "↪";
  color: #FF6B6B;
  font-weight: 900;
}

body:not(.shop-light-mode) .user-dashboard-shell {
  background: #0D1421;
}

body:not(.shop-light-mode) .shop-header {
  background: rgba(13, 20, 33, 0.94);
  border-bottom-color: #243041;
}

body:not(.shop-light-mode) .shop-brand { color: #FFFFFF; }
body:not(.shop-light-mode) .shop-brand small,
body:not(.shop-light-mode) .shop-nav a:hover,
body:not(.shop-light-mode) .shop-nav a:first-child,
body:not(.shop-light-mode) .shop-hero-heading p { color: #7FC1E3; }
body:not(.shop-light-mode) .shop-nav a { color: #B7C3D4; }

body:not(.shop-light-mode) .icon-button,
body:not(.shop-light-mode) .account-trigger,
body:not(.shop-light-mode) .cart-header-button {
  background: #172233;
  border-color: #2E3C50;
  color: #FFFFFF;
}

body:not(.shop-light-mode) .account-trigger:hover,
body:not(.shop-light-mode) .icon-button:hover,
body:not(.shop-light-mode) .cart-header-button:hover {
  border-color: #7FC1E3;
  color: #7FC1E3;
}

body:not(.shop-light-mode) .account-dropdown {
  background: #1F2A3A;
  border-color: #2E3C50;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

body:not(.shop-light-mode) .account-dropdown strong { color: #FFFFFF; }
body:not(.shop-light-mode) .account-dropdown small { color: #AEB8C7; }

.user-dashboard-shell .product-card {
  cursor: pointer;
}

.user-dashboard-shell .add-cart-button {
  font-size: 16px;
}

.add-cart-button.loading,
.modal-cart-button.loading {
  color: transparent;
  position: relative;
}

.add-cart-button.loading::after,
.modal-cart-button.loading::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.product-modal.open { display: block; }
.modal-open { overflow: hidden; }

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.72);
}

.product-modal-panel {
  position: relative;
  width: min(1180px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  margin: 28px auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1fr);
  overflow: auto;
  border-radius: 12px;
  background: #1F2A3A;
  color: #FFFFFF;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.72);
  color: #FFFFFF;
  font-size: 26px;
  cursor: pointer;
}

.modal-image-wrap {
  position: relative;
  min-height: 500px;
  background: #F8FAFC;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.modal-product-info { padding: 34px 32px 32px; }

.modal-product-info h2 {
  color: #FFFFFF;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 42px 22px 0;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.modal-rating span {
  color: #FFD028;
  letter-spacing: 0.04em;
}

.modal-rating small,
.modal-product-info p,
.modal-features li {
  color: #B7C3D4;
  font-size: 17px;
  line-height: 1.65;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 28px 0 18px;
}

.modal-price-row strong {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
}

.modal-price-row span {
  color: #7C879A;
  text-decoration: line-through;
}

.modal-price-row small,
.stock-line {
  color: #25D87D;
  font-weight: 900;
}

.modal-price-row span:empty,
.modal-price-row small:empty,
.modal-discount:empty { display: none; }

.stock-line {
  display: block;
  font-size: 18px;
  margin-bottom: 28px;
}

.modal-options p,
.modal-features p,
.quantity-row > span {
  margin: 0 0 10px;
  color: #E5ECF5;
  font-weight: 900;
}

.modal-options span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 7px;
  background: #334155;
  color: #FFFFFF;
  font-weight: 800;
}

.modal-option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.modal-features { margin: 28px 0; }

.modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-features li::before {
  content: "✓";
  color: #6D5EF7;
  font-weight: 900;
  margin-right: 12px;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.quantity-row div {
  display: inline-grid;
  grid-template-columns: 42px 56px 42px;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid #475569;
  border-radius: 10px;
}

.quantity-row button {
  border: none;
  background: transparent;
  color: #FFFFFF;
  font-size: 18px;
}

.quantity-row strong {
  display: grid;
  place-items: center;
  border-left: 1px solid #475569;
  border-right: 1px solid #475569;
  color: #FFFFFF;
  font-size: 20px;
}

.modal-cart-button {
  width: 100%;
  min-height: 64px;
  border: none;
  border-radius: 9px;
  background: #5446EA;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.shop-light-mode .product-modal-panel {
  background: #FFFFFF;
  color: #0A1B33;
}

.shop-light-mode .modal-product-info h2,
.shop-light-mode .modal-price-row strong,
.shop-light-mode .modal-options p,
.shop-light-mode .modal-features p,
.shop-light-mode .quantity-row > span {
  color: #0A1B33;
}

.shop-light-mode .modal-rating small,
.shop-light-mode .modal-product-info p,
.shop-light-mode .modal-features li { color: #4A5A70; }

.shop-light-mode .modal-options span {
  background: #EAF2FF;
  color: #0B3D91;
}

.shop-light-mode .quantity-row div { border-color: #DCE6EF; }
.shop-light-mode .quantity-row button,
.shop-light-mode .quantity-row strong { color: #0A1B33; }

.shop-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  min-width: 210px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #172233;
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.shop-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.shop-light-mode .shop-toast {
  background: #0A1B33;
}

.shipping-intro { color:#52657d; line-height:1.6; margin:18px 0 8px; }
.shipping-address-card { margin:26px 0; padding:18px; border-radius:10px; background:#f8fafc; }
.shipping-address-card > b { display:block; margin-bottom:8px; }
.shipping-address-card #shippingAddressSummary { display:grid; gap:3px; color:#476078; font-size:14px; }
.shipping-address-card #shippingAddressSummary strong { color:#10213b; }
.shipping-option { display:grid; grid-template-columns:auto 1fr auto; gap:12px; align-items:center; margin:10px 0; padding:16px 12px; border:1px solid #cbd5e1; border-radius:8px; cursor:pointer; }
.shipping-option input { width:auto; margin:0; }
.shipping-option span { display:grid; gap:2px; }
.shipping-option small { color:#64748b; }
.shipping-option strong { color:#10213b; font-size:14px; }
.shipping-form form .field { margin-top:16px; }
.shipping-form label { display:block; margin-bottom:7px; font-size:14px; font-weight:700; }
.shipping-form label small { color:#64748b; font-weight:500; }
.view-all-products { text-align:center; margin-top:28px; }
.view-all-products a { display:inline-block; padding:12px 22px; border-radius:8px; background:#1266c7; color:#fff; font-weight:800; text-decoration:none; }
.shop-search { display:block; max-width:520px; margin:24px 0; color:#10213b; font-weight:700; }
.shop-search input { display:block; width:100%; box-sizing:border-box; margin-top:8px; padding:13px 14px; border:1px solid #cbd5e1; border-radius:8px; font:inherit; }
.site-footer { margin-top:42px; padding:28px max(20px, calc((100% - 1200px) / 2)); display:flex; gap:22px; align-items:center; justify-content:space-between; flex-wrap:wrap; background:#0a1b33; color:#fff; }.site-footer div { display:grid; gap:3px; }.site-footer span { color:#9fb1c8; font-size:12px; }.site-footer nav { display:flex; gap:18px; }.site-footer a { color:#dbeafe; text-decoration:none; font-weight:700; }.whatsapp-chat { position:fixed; right:20px; bottom:20px; z-index:100; padding:13px 17px; border-radius:999px; background:#25d366; color:#062d18; font-weight:900; text-decoration:none; box-shadow:0 7px 22px #0f172a45; }.contact-brand span { display:inline-grid; place-items:center; width:36px; height:36px; border-radius:9px; background:#1266c7; color:#fff; }.contact-page { max-width:720px; margin:0 auto; padding:44px 20px; }.contact-brand { display:flex; align-items:center; gap:10px; color:#10213b; font-weight:900; text-decoration:none; }.contact-card { margin-top:28px; padding:34px; background:#fff; border-radius:14px; box-shadow:0 7px 22px #0f172a14; }.contact-card h1 { font-size:34px; }.contact-form { display:grid; gap:16px; margin-top:26px; }.contact-form label { display:grid; gap:7px; font-weight:700; }.contact-form input,.contact-form select,.contact-form textarea { padding:12px; border:1px solid #cbd5e1; border-radius:8px; font:inherit; }.contact-form button { padding:14px; border:0; border-radius:8px; background:#1266c7; color:#fff; font-weight:900; }.contact-note { font-size:13px; color:#52657d; margin:0; }
.cart-logo-link { display:inline-grid; place-items:center; width:36px; height:36px; margin-right:10px; border-radius:9px; background:#fff; color:#1266c7!important; font-weight:900; text-decoration:none; }
.mobile-menu-item { display:none; }
.order-sent { margin-top:30px; padding:24px; border:1px solid #bde4cf; border-radius:10px; background:#f0fdf4; }
.order-sent h2 { margin:0 0 8px; }
.order-sent p { color:#365268; line-height:1.55; }
.send-actions { display:flex; flex-wrap:wrap; gap:12px; margin:20px 0; }
.send-button,.back-to-shop { display:inline-flex; align-items:center; justify-content:center; padding:12px 16px; border-radius:8px; color:#fff; font-weight:800; text-decoration:none; }
.email-button { background:#1266c7; }
.whatsapp-button { background:#128c3e; }
.back-to-shop { background:#10213b; }

@media (max-width:560px) {
  .send-actions { flex-direction:column; }
  .send-button,.back-to-shop { width:100%; }
}

@media (max-width: 1280px) {
  .user-dashboard-shell .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  .user-dashboard-shell .dashboard-main { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 1080px) {
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { padding: 22px 28px; }
  .dashboard-nav { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .support-box { display: none; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .user-dashboard-shell .product-grid { grid-template-columns: repeat(2, minmax(250px, 1fr)); }
}

@media (max-width: 860px) {
  .profile-shell { grid-template-columns:1fr; gap:18px; padding:16px; }
  .profile-sidebar,.profile-panel { padding:24px 18px; }
  .screen { grid-template-columns: 1fr; }
  .brand-panel { min-height: 260px; padding: 32px; }
  .brand-copy h1 { font-size: 28px; }
  .form-panel { padding: 32px 20px; }
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { padding: 22px; }
  .dashboard-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-box { display: none; }
  .dashboard-main { padding: 24px 18px; }
  .dashboard-topbar,
  .account-chip { align-items: stretch; flex-direction: column; }
  .dashboard-topbar h1 { font-size: 28px; }
  .account-chip { min-width: 0; width: 100%; }
  .stats-grid,
  .dashboard-content,
  .service-grid,
  .product-grid { grid-template-columns: 1fr; }
  .activity-item { grid-template-columns: 12px minmax(0, 1fr); }
  .activity-item small { grid-column: 2; }
  .user-dashboard-shell .dashboard-main { padding: 20px 10px 42px; }
  .shop-header {
    position: static;
    width: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: -20px -10px 34px;
    padding: 16px 14px;
    gap: 12px;
  }
  .shop-brand { min-width:0; }
  .shop-brand strong { font-size:15px; }
  .shop-brand small { font-size:8px; letter-spacing:.08em; }
  .shop-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .shop-nav.open { display: flex; }
  .shop-nav a {
    padding: 12px 0;
    border-bottom: 1px solid #DCE6EF;
  }
  .menu-toggle { display: grid; order:2; }
  .theme-toggle { order:1; }
  .shop-actions { justify-content:flex-end; gap:8px; }
  .shop-actions .cart-header-button,
  .shop-actions .account-menu { display:none; }
  .mobile-menu-item { display:flex; justify-content:space-between; align-items:center; font-weight:800; }
  .mobile-menu-item span { padding:3px 8px; border-radius:999px; background:#1266c7; color:#fff; font-size:12px; }
  .shop-hero-heading { margin-bottom: 28px; padding: 0 12px; }
  .shop-hero-heading h1 { font-size: 34px; }
  .shop-hero-heading span { font-size: 16px; }
  .user-dashboard-shell .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .user-dashboard-shell .product-card { min-height: 0; }
  .product-modal-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    grid-template-columns: 1fr;
  }
  .modal-image-wrap,
  .modal-image-wrap img {
    min-height: 300px;
  }
  .modal-product-info {
    padding: 24px 18px;
  }
  .modal-product-info h2 {
    font-size: 27px;
  }
}
