:root {
  --primary: #0F172A;
  --secondary: #2563EB;
  --accent: #F97316;
  --success: #22C55E;
  --white: #FFFFFF;
  --light: #F8FAFC;
  --surface: #F8FAFF;
  --muted: #64748B;
  --text: #0F172A;
  --border: #E2E8F0;
  --shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  /*font-family: 'Inter', sans-serif;*/
  color: var(--text);
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 55%);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.topbar {
  background: #0f172a;
  color: #ffffff;
  font-size: .9rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .85rem 0;
  flex-wrap: wrap;
}
.topbar-inner a {
  color: #ffffff;
  font-weight: 600;
}
.site-header {
  padding: 1rem 0 .75rem;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.header-grid {
  display: grid;
  grid-template-columns: minmax(140px, auto) minmax(420px, 1fr) minmax(140px, auto);
  gap: 1rem;
  align-items: center;
}
.brand-group {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.logo {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -.05em;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .2rem;
}
.logo-text {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
}
.logo-brand {
  color: #124e8c;
}
.logo-accent {
  color: #f97316;
}
.logo-mobile {
  display: none;
  max-width: 160px;
  max-height: 48px;
  object-fit: contain;
}
.mobile-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.2rem;
  padding: .65rem .75rem;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, .6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.mobile-nav.open {
  display: block;
  opacity: 1;
  visibility: visible;
}
.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  box-shadow: -18px 0 40px rgba(15, 23, 42, .12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.mobile-nav-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  padding: .65rem;
  cursor: pointer;
}
.mobile-nav a,
.mobile-nav button.mobile-nav-section-toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: .95rem 1rem;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, .08);
  margin-top: .35rem;
  text-decoration: none;
}
.mobile-nav button.mobile-nav-section-toggle {
  background: #eef2ff;
  border-color: rgba(59, 130, 246, .2);
}
.mobile-nav-cats {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.mobile-nav-cats.open {
  max-height: 1000px;
}
.mobile-nav a:hover,
.mobile-nav button.mobile-nav-section-toggle:hover {
  background: rgba(15, 23, 42, .04);
}
.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.search-form {
  display: flex;
  align-items: center;
  width: 490px;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .35rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  min-width: 0;
}
.search-form input {
  flex: 1;
  border: 0;
  outline: none;
  padding: .95rem 1rem;
  border-radius: 999px;
}
.search-form button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  padding: .95rem 1.25rem;
  cursor: pointer;
  white-space: nowrap;
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.header-actions a,
.header-actions button {
  font-size: 1.95rem;
}
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.1);
  font-weight: 600;
}
.action-pill-accent {
  background: var(--accent);
  color: var(--white);
}
.main-nav {
  background: var(--primary);
  color: #ffffff;
  padding: .25rem 0;
}
.nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav-links,
.nav-categories {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav-links a,
.nav-categories a {
  color: rgba(255,255,255,.92);
  font-weight: 600;
  padding: .5rem .75rem;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-categories a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}
.mini-cart-panel {
  display: none;
}
.hero {
  padding: 4.5rem 0 3rem;
}
.hero-landing {
  background: linear-gradient(135deg, rgba(37,99,235,.1) 0%, rgba(249,115,22,.08) 100%);
  border-radius: 40px;
  margin-bottom: 2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}

/* Product page specific styles */
.product-gallery {
  display: grid;
  gap: 1rem;
}
.product-gallery-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  cursor: zoom-in;
}
.product-gallery-main img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
  transform-origin: center center;
}
.product-gallery-main:hover img {
  transform: scale(1.25);
  filter: brightness(0.98);
}
.product-gallery-main.zoom-active img {
  transition: transform 0.1s ease-out;
}
@media (max-width: 768px) {
  .product-gallery-main {
    cursor: default;
  }
  .product-gallery-main:hover img {
    transform: none;
  }
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.8rem;
}
.thumb-button {
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background: none;
  padding: 0;
  cursor: pointer;
}
.thumb-button.active,
.thumb-button:hover {
  border-color: var(--secondary);
}
.thumb-button img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}
.product-details h1 {
  margin: 0 0 .6rem;
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  line-height: 1.05;
}
.product-details p { color: var(--muted); margin-top: .5rem; }
.price-row { display:flex; align-items:center; gap:1rem; margin: .8rem 0; }
.price-row strong { font-size: 1.6rem; color: var(--primary); }
.badge { background: linear-gradient(90deg,var(--secondary),#fb923c); color:#fff; padding:6px 10px; border-radius:999px; font-weight:700; }
.product-meta { color: var(--muted); margin-bottom: 1rem; }
.product-form .form-group { margin-bottom: 1rem; }
.product-form input[type="number"] { width: 100px; padding:8px 10px; border:1px solid rgba(15,23,42,0.08); border-radius:8px; }
.product-form .btn { padding:12px 16px; border-radius:12px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .product-image-wrap { order: 1; }
  .product-details { order: 2; }
  .price-row { flex-direction: row; gap:.6rem; }
  .site-header {
    padding: .95rem 0 .75rem;
  }
  .header-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .8rem;
  }
  .search-form {
    order: 3;
    grid-column: 1 / -1;
    margin-top: .8rem;
    width: 100%;
    min-width: 0;
  }
  .search-form button {
    padding: .95rem 1.2rem;
  }
  .header-actions {
    order: 2;
    width: 100%;
    justify-content: space-between;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    padding: .75rem .85rem;
  }
  .main-nav, .nav-wrap { display: none; }
  .logo-desktop { display: none; }
  .logo-mobile { display: block; }
  .mobile-nav .mobile-nav-inner { width: 100%; max-width: 100%; }
}

/* Products listing grid: 3 per row on desktop, 2 on tablet, 1 on mobile */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
  /*padding: 10px;*/
  background: #ffffff;
  border-radius: 6px;
}
.product-body { padding: 8px 8px 12px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-body h3 { margin:0; font-size:0.98rem; font-weight:700; text-transform: none; color:var(--text); }
.product-body p { margin:0; color:var(--muted); font-size:0.82rem; line-height:1.2; }
.product-card .price-row { margin-top:8px; display:flex; justify-content:flex-start; align-items:center; gap:8px; }
.product-card .price-row strong { font-size:0.98rem; color:var(--primary); font-weight:700; }
.product-card .btn { padding:6px 10px; font-size:0.88rem; border-radius:8px; }

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card img { height: 200px; }
}
.hero-copy {
  max-width: 620px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 1rem;
}
.hero-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  color: var(--primary);
}
.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 1.35rem 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-visual {
  position: relative;
}
.hero-card-image {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 48px 120px rgba(15, 23, 42, 0.16);
}
.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-highlight {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(92%, 420px);
  background: rgba(255,255,255,.96);
  border-radius: 28px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  text-align: center;
}
.hero-highlight span {
  display: block;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: .5rem;
}
.hero-highlight strong {
  font-size: 1.6rem;
  display: block;
  margin-bottom: .5rem;
}
.hero-highlight p {
  margin: 0;
  color: var(--muted);
}
.section {
  padding: 3rem 0;
}
.section-soft {
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.06);
}
.page-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.08);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.6rem;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}
.btn-primary {
  background: var(--secondary);
}
.btn-full {
  width: 100%;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.checkout-form-card {
  padding: 2rem;
}
.payment-info {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1.5rem;
}
.payment-info p {
  margin: 0 0 .75rem;
  color: var(--muted);
}
.payment-info img {
  max-width: 180px;
  display: block;
  margin-bottom: 1rem;
}
.checkbox-group input {
  margin-right: .6rem;
}
@media (max-width: 980px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .input-row {
    grid-template-columns: 1fr;
  }
}
.cart-item-image {
  min-height: 130px;
  border-radius: 24px;
  overflow: hidden;
  background: #f8fafc;
}
.cart-item-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cart-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info h2 {
  margin: 0 0 .5rem;
  font-size: 1.1rem;
  line-height: 1.3;
}
.cart-item-meta {
  margin: 0 0 1rem;
  color: var(--muted);
}
.cart-summary-card,
.checkout-summary-card {
  padding: 2rem;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.06);
}
.cart-summary-card h2,
.checkout-summary-card h2 {
  margin-top: 0;
  font-size: 1.7rem;
}
.order-table {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 1.25rem;
}
.order-table-head,
.order-table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 1.25rem;
  align-items: center;
}
.order-table-head {
  background: #f8fafc;
  font-weight: 700;
  color: var(--primary);
}
.order-table-row {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.summary-row,
.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--muted);
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.summary-row:last-of-type,
.order-item-row:last-of-type {
  border: none;
  margin-top: 1.5rem;
}
.total-row {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.summary-row.total-row {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1rem;
  margin-top: 1.5rem;
}
.cart-summary-row strong,
.summary-row strong,
.order-item-row strong {
  color: var(--text);
}
.empty-state {
  text-align: center;
  padding: 3rem 0;
}
.empty-state p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}
@media (max-width: 980px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .cart-item-card {
    grid-template-columns: 1fr;
  }
  .cart-item-image {
    min-height: 180px;
  }
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.8rem;
  text-align: center;
}
.section-header.section-header-center {
  text-align: center;
  align-items: center;
}
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}
.section-copy {
  text-align: center;
  /* max-width: 680px; */
  color: var(--muted);
  /* line-height: 1.8; */
  margin-top: .75rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.featured-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.09);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
}
.featured-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.featured-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.featured-card:hover .featured-card-media img {
  transform: scale(1.04);
}
.featured-card-body {
  padding: 1.3rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.featured-card-top {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.featured-card-top h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}
.featured-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  min-height: 60px;
  font-size: 0.95rem;
}
.featured-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-label {
  display: block;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: .25rem;
}
.btn-small {
  padding: .75rem 1rem;
  font-size: .92rem;
}

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .featured-card {
    border-radius: 22px;
  }
  .featured-card-body {
    padding: 1.1rem 1.2rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-card {
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  }
  .featured-card-body {
    padding: 1rem;
  }
  .featured-card-top h3 {
    font-size: 1.04rem;
  }
  .featured-card p {
    min-height: auto;
  }
  .featured-card-footer {
    justify-content: flex-start;
  }
  .btn-small {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .section-header h2 {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }
  .featured-card {
    border-radius: 18px;
  }
  .featured-card-media {
    aspect-ratio: 14 / 9;
  }
  .featured-card-body {
    padding: 0.95rem 0.95rem 1rem;
    gap: 0.75rem;
  }
  .featured-card-top h3 {
    font-size: 1rem;
  }
  .featured-card p {
    font-size: 0.92rem;
    text-align: center;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.category-card {
  display: grid;
  /*grid-template-rows: 180px auto;*/
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.category-card-image {
  overflow: hidden;
  position: relative;
}
.category-card-image img {
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
  transition: transform .35s ease;
}
.category-card:hover .category-card-image img {
  transform: scale(1.03);
}
.category-card-body {
  padding: 1.3rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.category-card .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  width: fit-content;
}
.category-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-card-modern {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  align-items: stretch;
}
.product-media {
  min-height: 220px;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body {
  padding: 1.6rem;
}
.product-body h3 {
  margin-top: 0;
  font-size: 1.3rem;
}
.product-body p {
  color: var(--muted);
  margin: 1rem 0 0;
}
.category-card img,
.product-card img {
  /*border-radius: 24px;*/
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.price-row strong {
  font-size: 1.1rem;
}
.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: .4rem .8rem;
  border-radius: 999px;
  font-size: .75rem;
  margin-bottom: .9rem;
}
.section-banner {
  padding: 3rem 0 4rem;
}
.banner-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #0ea5e9 100%);
  border-radius: 36px;
  color: #ffffff;
  padding: 2.6rem 3rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  min-height: 280px;
}
.banner-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(20px);
}
.banner-card::after {
  content: '';
  position: absolute;
  bottom: -18%;
  left: -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.banner-card > div {
  max-width: 640px;
}
.banner-card .eyebrow {
  color: rgba(219, 234, 254, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
  display: inline-block;
}
.banner-card h2 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.banner-card p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 36rem;
}
.banner-card .btn-primary {
  padding: 1rem 2.4rem;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}
@media (max-width: 1024px) {
  .banner-card {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 2rem 2rem;
  }
  .banner-card > div {
    width: 100%;
  }
  .banner-card .btn-primary {
    width: min(100%, 320px);
    margin: 1.5rem auto 0;
  }
}
@media (max-width: 640px) {
  .section-banner {
    padding: 2rem 0 2.5rem;
  }
  .banner-card {
    padding: 1.8rem 1.5rem;
    gap: 1.2rem;
    border-radius: 28px;
  }
  .banner-card h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .banner-card p {
    font-size: 0.98rem;
  }
  .banner-card .btn-primary {
    width: 100%;
  }
}
.footer-logo {
  color: #ffffff;
}
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.footer-grid h4 {
  margin-bottom: 1rem;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,.82);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: .65rem;
}
.footer-payments {
  margin-top: 1rem;
  color: rgba(255,255,255,.7);
}
.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.2rem;
  color: rgba(255,255,255,.7);
}
/* Footer responsive and small-screen improvements */
.social-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; gap: .6rem; }
.social-list li { list-style: none; }
.social-list a { display: inline-flex; align-items: center; justify-content: center; width:44px; height:44px; border-radius:50%; background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.95); text-decoration:none; font-weight:700; font-size:.9rem; }
.social-list a:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.88); }
.footer-contact p { margin: .45rem 0; }
.footer-contact a { color: rgba(255,255,255,.9); font-weight:600; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-highlight {
    position: static;
    width: 100%;
    margin-top: 1.5rem;
  }
  .product-card-modern {
    grid-template-columns: 1fr;
  }
  .banner-card {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }
  .search-form {
    flex-direction: column;
    gap: .75rem;
  }
  .action-pill {
    flex: 1 1 100%;
    justify-content: center;
  }
  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links,
  .nav-categories {
    justify-content: center;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    padding: .8rem 0 .5rem;
  }
  .header-grid {
    gap: .75rem;
    grid-template-columns: 1fr;
  }
  .search-form {
    width: 100%;
  }
  .search-form button {
    width: 100%;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .mobile-nav .mobile-nav-inner {
    padding: 1rem 1rem 1.6rem 1rem;
  }
}

/* Additional responsive header cleanup */
@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: 1fr auto;
  }
  .logo-desktop {
    display: none !important;
  }
  .logo-mobile {
    display: block !important;
  }
  .search-form {
    margin-top: .85rem;
  }
  .header-actions {
    justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .header-grid {
    grid-template-columns: 1fr auto;
  }
  .search-form {
    margin-top: .75rem;
  }
  .search-form button {
    width: 100%;
  }
  .mobile-nav-toggle {
    min-width: 46px;
    min-height: 46px;
  }
}
