:root {
  --color-primary: #2c1810;
  --color-secondary: #8b4513;
  --color-accent: #d4a574;
  --color-background: #faf5f0;
  --color-text: #333333;
  --color-surface: #f5efe8;
  --color-border: rgba(51,51,51,0.15);
  --color-text-muted: #666;
  --color-primary-dark: #1a0e08;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --style-border-radius: 8px;
  --style-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--color-primary); color: #fff; padding: 12px 28px;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  opacity: 0; transition: transform 0.3s, opacity 0.3s; z-index: 999; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Product image placeholder */
.product-image-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 700; color: var(--color-secondary);
  background: var(--color-surface);
}

/* === header/2 === */
/* ── Header Variant 2: With mobile hamburger menu ── */
header {
  background: var(--color-primary);
  color: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
nav { display: flex; gap: 28px; align-items: center; }
.nav-link { color: rgba(255,255,255,0.7); font-weight: 500; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: #fff; }
.cart-link { color: var(--color-accent); font-weight: 600; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 700px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  nav.open { display: flex; }
}

/* === hero/6 === */
/* hero/6 — Full-Bleed Image Banner with overlay text */

.hero-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary, #2d2d2d);
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    transparent 100%
  );
}

.hero-banner__content {
  padding: 3rem 4rem;
  max-width: 640px;
}

.hero-banner__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-body, sans-serif);
  font-size: clamp(1.75rem, 1rem + 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-background, #ffffff);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-banner__subtitle {
  margin: 0 0 1.25rem;
  font-family: var(--font-body, sans-serif);
  font-size: clamp(0.9375rem, 0.75rem + 0.8vw, 1.125rem);
  line-height: 1.5;
  color: var(--color-background, #ffffff);
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-background, #ffffff);
  background-color: var(--color-accent, #e63946);
  border-radius: var(--style-border-radius, 6px);
  transition: opacity 0.2s, transform 0.2s;
}

.hero-banner__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hero-banner__cta:active {
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-banner {
    height: 50vh;
    min-height: 280px;
  }

  .hero-banner__overlay {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-banner__content {
    padding: 2rem 1.5rem;
  }

  .hero-banner__cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* === products/3 === */
/* ── Products Variant 3: Brutalist list ── */
.page-title {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 32px 0 0;
  border-bottom: 2px solid #000;
  padding-bottom: 12px;
}

.products {
  display: flex;
  flex-direction: column;
  padding: 0 0 48px;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
  transition: background 0.15s;
}

.product-card:hover {
  background: #f5f5f5;
}

.product-image {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid #000;
}

.product-info {
  flex: 1;
  min-width: 0;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.product-desc {
  font-size: 0.8rem;
  color: #666;
}

.product-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.add-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.15s;
}

.add-btn:hover {
  background: #333;
}

@media (max-width: 700px) {
  .product-card { flex-wrap: wrap; gap: 12px; }
  .product-bottom { width: 100%; justify-content: space-between; }
}

/* === product-detail/3 === */
/* Breadcrumb */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--color-text-muted, #666);
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin: 0 8px;
  color: var(--color-text-muted, #999);
}

.breadcrumb__item a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb__item a:hover {
  color: var(--color-primary, #2563eb);
}

/* Two-column layout */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 24px;
  align-self: start;
}

.gallery-main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-surface, #f5f5f5);
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.gallery-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: var(--color-surface, #f5f5f5);
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb--active {
  border-color: var(--color-primary, #2563eb);
}

/* Info column */
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail-name {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--color-text, #1a1a1a);
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted, #666);
}

.product-detail-rating__stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

.product-detail-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary, #2563eb);
  margin: 0;
}

.product-detail-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted, #555);
}

/* Quantity control */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border, #ddd);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control__btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text, #333);
}

.qty-control__btn:hover {
  background: var(--color-surface, #f5f5f5);
}

.qty-control__input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border, #ddd);
  border-right: 1px solid var(--color-border, #ddd);
  font-size: 16px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.qty-control__input::-webkit-inner-spin-button,
.qty-control__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to cart */
.add-to-cart-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: var(--color-primary, #2563eb);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.add-to-cart-btn:hover {
  background: var(--color-primary-dark, #1d4ed8);
}

/* Trust icons */
.product-trust-icons {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border, #eee);
}

.product-trust-icons__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted, #666);
}

/* Reviews */
.product-reviews {
  padding-top: 48px;
  border-top: 1px solid var(--color-border, #eee);
}

.product-reviews__heading {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px;
}

.review-card {
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-card__author {
  font-weight: 600;
  font-size: 15px;
}

.review-card__stars {
  color: #f59e0b;
}

.review-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted, #555);
}

/* Responsive */
@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-gallery {
    position: static;
  }

  .product-trust-icons {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* === cart-page/2 === */
/* ── Cart Page Variant 2: Brutalist minimal ── */
.page-title {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 32px 0 12px;
  border-bottom: 2px solid #000;
}

.cart-page-empty {
  padding: 48px 0;
  text-align: center;
}

.cart-page-empty p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 24px;
}

.cart-table {
  margin-bottom: 32px;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}

.cart-row-product {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: #000;
}

.cart-row-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid #000;
}

.cart-row-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-row-price {
  font-size: 0.8rem;
  color: #666;
}

.cart-row-qty {
  display: flex;
  align-items: center;
  border: 1px solid #000;
}

.qty-btn {
  background: #fff;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.15s;
}

.qty-btn:hover {
  background: #000;
  color: #fff;
}

.cart-row-qty span {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  line-height: 32px;
}

.cart-row-subtotal {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 120px;
  text-align: right;
}

.cart-row-remove {
  background: none;
  border: 1px solid #000;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.cart-row-remove:hover {
  background: #000;
  color: #fff;
}

.cart-summary {
  border-top: 2px solid #000;
  padding: 24px 0 48px;
  max-width: 360px;
  margin-left: auto;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
}

.cart-summary-total {
  font-weight: 900;
  font-size: 1.1rem;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-top: 4px;
}

.checkout-btn {
  display: block;
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.15s;
}

.checkout-btn:hover {
  background: #333;
}

.continue-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #000;
  border-bottom: 1px solid #000;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.add-btn-lg {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

@media (max-width: 700px) {
  .cart-row { flex-wrap: wrap; }
  .cart-row-subtotal { min-width: auto; }
  .cart-summary { max-width: 100%; }
}

/* === cta/5 === */
/* FAQ Accordion */
.faq {
  max-width: 760px;
  margin: 48px auto;
  padding: 0 24px;
}

.faq__heading {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 32px;
  text-align: center;
  color: var(--color-text, #1a1a1a);
}

.faq__list {
  border-top: 1px solid var(--color-border, #e5e5e5);
}

.faq__item {
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text, #1a1a1a);
  text-align: left;
  gap: 16px;
}

.faq__question:hover {
  color: var(--color-primary, #2563eb);
}

.faq__icon {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item--open .faq__answer {
  max-height: 500px;
}

.faq__answer-body {
  padding: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted, #555);
}

/* === footer/4 === */
/* Site Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 24px 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 4px;
}

.site-footer__desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.7;
}

.site-footer__contact {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
}

.site-footer__heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--color-primary, #6366f1);
}

/* Social */
.site-footer__social {
  display: flex;
  gap: 10px;
}

.site-footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
}

.site-footer__social-link:hover {
  background: var(--color-primary, #6366f1);
}

.site-footer__trustpilot {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  margin-top: 8px;
}

.site-footer__trustpilot:hover {
  color: #00b67a;
}

/* Bottom bar */
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
}

.site-footer__payment {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-footer__payment img {
  opacity: 0.7;
}

.site-footer__dmca {
  opacity: 0.6;
}

.site-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* === testimonials/1 === */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #fafafa;
}

.testimonials__heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-primary, #222);
}

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

@media (max-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonials__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 24px;
}

.testimonials__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials__author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary, #222);
}

.testimonials__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #f5a623;
  font-size: 1.1rem;
}

.testimonials__text {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.testimonials__trust-badge {
  display: inline-block;
  margin: 40px auto 0;
  padding: 12px 28px;
  border: 2px solid #00b67a;
  border-radius: 6px;
  color: #00b67a;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s, color 0.25s;
}

.testimonials__trust-badge:hover {
  background: #00b67a;
  color: #fff;
}

.testimonials {
  text-align: center;
}

.testimonials__grid,
.testimonials__card {
  text-align: left;
}

/* === blog-preview/1 === */
.blog-preview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-preview__heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-primary, #222);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .blog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-preview__grid {
    grid-template-columns: 1fr;
  }
}

.blog-preview__card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-preview__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.blog-preview__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-preview__card-image {
  overflow: hidden;
}

.blog-preview__card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s;
}

.blog-preview__card:hover .blog-preview__card-image img {
  transform: scale(1.05);
}

.blog-preview__card-body {
  padding: 20px;
}

.blog-preview__date {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 8px;
}

.blog-preview__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-primary, #222);
  line-height: 1.4;
}

.blog-preview__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Magazine layout overrides */
.product-card--featured {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 2px solid var(--color-primary);
}
.product-card--featured .product-image {
  width: 300px;
  height: 300px;
  min-width: 300px;
  font-size: 5rem;
}
.product-card--featured .product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card--featured .product-name {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.product-card--featured .product-desc {
  font-size: 1rem;
  margin-bottom: 16px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0;
}
.products-grid .product-card {
  border-bottom: 1px solid #ddd;
  padding: 16px;
}
@media (max-width: 700px) {
  .product-card--featured { flex-direction: column; }
  .product-card--featured .product-image { width: 100%; min-width: auto; height: 200px; }
}
