/* ═══════════════════════════════════════════════════════════════
   MadeezMacs — Main Stylesheet
   Design: Luxury Apple/Notion dark — Red · Black · White
   Font: Inter (Google Fonts)
═══════════════════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --mm-red:        #D92B2B;
  --mm-red-dark:   #B01E1E;
  --mm-red-glow:   rgba(217, 43, 43, 0.15);
  --mm-black:      #0A0A0A;
  --mm-black-2:    #111111;
  --mm-black-3:    #1A1A1A;
  --mm-border:     #222222;
  --mm-border-2:   #2E2E2E;
  --mm-white:      #FFFFFF;
  --mm-off-white:  #F2F2F2;
  --mm-muted:      #888888;
  --mm-muted-2:    #555555;

  --mm-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mm-radius:     10px;
  --mm-radius-lg:  16px;
  --mm-shadow:     0 2px 20px rgba(0,0,0,0.4);
  --mm-transition: 0.2s ease;

  /* Nav height for offset */
  --nav-height: 64px;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--mm-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--mm-white);
  background-color: var(--mm-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font-family: var(--mm-font);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { color: var(--mm-muted); line-height: 1.7; }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--sm {
  padding: 48px 0;
}

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mm-border);
  z-index: 1000;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mm-white);
}

.nav__logo span {
  color: var(--mm-red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mm-muted);
  transition: color var(--mm-transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--mm-white);
}

.nav__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mm-white) !important;
  background: var(--mm-red);
  padding: 8px 20px;
  border-radius: 50px;
  transition: background var(--mm-transition), transform var(--mm-transition);
}

.nav__cta:hover {
  background: var(--mm-red-dark);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mm-white);
  border-radius: 2px;
  transition: all var(--mm-transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mm-black);
  padding: 32px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--mm-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--mm-border);
  transition: color var(--mm-transition);
}

.nav__mobile a:hover { color: var(--mm-white); }

/* Body offset for fixed nav */
.page-content {
  padding-top: var(--nav-height);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--mm-transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--mm-red);
  color: var(--mm-white);
  border: 2px solid transparent;
}

.btn--primary:hover {
  background: var(--mm-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,43,43,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--mm-white);
  border: 2px solid var(--mm-border-2);
}

.btn--outline:hover {
  border-color: var(--mm-white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--mm-muted);
  border: 2px solid transparent;
}

.btn--ghost:hover {
  color: var(--mm-white);
}

.btn--sm {
  font-size: 0.8125rem;
  padding: 10px 20px;
}

.btn--lg {
  font-size: 1.0625rem;
  padding: 18px 40px;
}

.btn--full {
  width: 100%;
}

/* WhatsApp button */
.btn--wa {
  background: #25D366;
  color: var(--mm-white);
  border: none;
}

.btn--wa:hover {
  background: #1ebe58;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--mm-black);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217,43,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217,43,43,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mm-red);
  background: var(--mm-red-glow);
  border: 1px solid rgba(217,43,43,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mm-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  color: var(--mm-white);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--mm-red);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--mm-muted);
  margin-bottom: 40px;
  max-width: 560px;
}

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

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--mm-border);
  flex-wrap: wrap;
}

.hero__stat {
  text-align: left;
}

.hero__stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mm-white);
  letter-spacing: -0.03em;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--mm-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__divider {
  width: 1px;
  height: 40px;
  background: var(--mm-border-2);
}

/* ── Section headers ────────────────────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mm-red);
  margin-bottom: 12px;
}

.section-title {
  color: var(--mm-white);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--mm-muted);
  max-width: 560px;
}

.section-header--center .section-sub {
  margin: 0 auto;
}

/* ── Product Card ────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--mm-black-2);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  transition: border-color var(--mm-transition), transform var(--mm-transition), box-shadow var(--mm-transition);
  position: relative;
}

.product-card:hover {
  border-color: var(--mm-border-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--mm-black-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-card__placeholder {
  width: 64px;
  height: 64px;
  opacity: 0.15;
}

.product-card__body {
  padding: 20px;
}

.product-card__condition {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  background: rgba(217,43,43,0.12);
  color: var(--mm-red);
  border: 1px solid rgba(217,43,43,0.25);
}

.product-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mm-white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.spec-tag {
  font-size: 0.75rem;
  color: var(--mm-muted);
  background: var(--mm-black-3);
  border: 1px solid var(--mm-border);
  padding: 3px 10px;
  border-radius: 50px;
}

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

.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mm-white);
  letter-spacing: -0.02em;
}

.product-card__actions {
  display: flex;
  gap: 8px;
}

/* ── Filters (Products page) ────────────────────────────────────── */
.filters {
  background: var(--mm-black-2);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  padding: 24px;
  margin-bottom: 32px;
}

.filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}

.filter-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mm-muted);
}

.filter-group select,
.filter-group input {
  font-family: var(--mm-font);
  font-size: 0.875rem;
  color: var(--mm-white);
  background: var(--mm-black-3);
  border: 1px solid var(--mm-border-2);
  border-radius: var(--mm-radius);
  padding: 10px 14px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--mm-transition);
  width: 100%;
}

.filter-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--mm-red);
}

.filter-group select option {
  background: var(--mm-black-2);
}

.filters__actions {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

/* ── Product count & sort bar ────────────────────────────────────── */
.listing-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.listing-count {
  font-size: 0.875rem;
  color: var(--mm-muted);
}

.listing-count strong {
  color: var(--mm-white);
}

/* ── Single Product Page ─────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--mm-black-2);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

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

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
}

.product-gallery__thumb {
  width: 72px;
  height: 54px;
  border-radius: var(--mm-radius);
  overflow: hidden;
  border: 2px solid var(--mm-border);
  cursor: pointer;
  transition: border-color var(--mm-transition);
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--mm-red);
}

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

.product-info__condition {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(217,43,43,0.12);
  color: var(--mm-red);
  border: 1px solid rgba(217,43,43,0.25);
  margin-bottom: 20px;
}

.product-info__title {
  color: var(--mm-white);
  margin-bottom: 8px;
}

.product-info__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--mm-white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.product-info__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.spec-row {
  background: var(--mm-black-2);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 14px 16px;
}

.spec-row__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mm-muted);
  margin-bottom: 4px;
}

.spec-row__val {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--mm-white);
}

.product-info__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.product-info__desc {
  border-top: 1px solid var(--mm-border);
  padding-top: 24px;
  color: var(--mm-muted);
  line-height: 1.8;
}

/* ── Trust signals ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--mm-black-2);
  border-top: 1px solid var(--mm-border);
  border-bottom: 1px solid var(--mm-border);
  padding: 24px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item__icon {
  font-size: 1.25rem;
  color: var(--mm-red);
}

.trust-item__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mm-off-white);
}

/* ── Blog Grid ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--mm-black-2);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  transition: border-color var(--mm-transition), transform var(--mm-transition);
}

.blog-card:hover {
  border-color: var(--mm-border-2);
  transform: translateY(-4px);
}

.blog-card__cover {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--mm-black-3);
  overflow: hidden;
}

.blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-card__body {
  padding: 24px;
}

.blog-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mm-red);
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mm-white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--mm-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--mm-muted-2);
}

.blog-card__meta-sep {
  width: 3px;
  height: 3px;
  background: var(--mm-muted-2);
  border-radius: 50%;
}

/* ── Single Post ─────────────────────────────────────────────────── */
.post-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.post-header__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mm-red);
  margin-bottom: 16px;
}

.post-header__title {
  color: var(--mm-white);
  margin-bottom: 16px;
}

.post-header__meta {
  font-size: 0.875rem;
  color: var(--mm-muted);
}

.post-cover {
  max-width: 900px;
  margin: 0 auto 64px;
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--mm-border);
  aspect-ratio: 16/9;
  background: var(--mm-black-2);
}

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

.post-body {
  max-width: 720px;
  margin: 0 auto;
}

.post-body h2 {
  font-size: 1.5rem;
  color: var(--mm-white);
  margin: 48px 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mm-border);
}

.post-body h3 {
  font-size: 1.125rem;
  color: var(--mm-white);
  margin: 32px 0 12px;
}

.post-body p {
  color: var(--mm-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.post-body ul, .post-body ol {
  list-style: disc;
  color: var(--mm-muted);
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.post-body ol { list-style: decimal; }

.post-body strong { color: var(--mm-white); }

.post-body blockquote {
  border-left: 3px solid var(--mm-red);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--mm-black-2);
  border-radius: 0 var(--mm-radius) var(--mm-radius) 0;
  font-style: italic;
  color: var(--mm-off-white);
}

/* ── About ────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h1 {
  color: var(--mm-white);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.value-card {
  background: var(--mm-black-2);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 24px;
}

.value-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 0.9375rem;
  color: var(--mm-white);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  margin: 0;
}

.about-image {
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--mm-border);
  aspect-ratio: 3/4;
  background: var(--mm-black-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── WhatsApp float button ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform var(--mm-transition), box-shadow var(--mm-transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--mm-black-2);
  border-top: 1px solid var(--mm-border);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mm-white);
  margin-bottom: 12px;
}

.footer__brand-logo span { color: var(--mm-red); }

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--mm-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #25D366;
  transition: opacity var(--mm-transition);
}

.footer__wa-link:hover { opacity: 0.8; }

.footer__col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mm-muted);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 0.875rem;
  color: var(--mm-muted);
  transition: color var(--mm-transition);
}

.footer__col ul a:hover { color: var(--mm-white); }

.footer__bottom {
  border-top: 1px solid var(--mm-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--mm-muted-2);
}

/* ── Pagination ──────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mm-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mm-muted);
  background: var(--mm-black-2);
  border: 1px solid var(--mm-border);
  cursor: pointer;
  transition: all var(--mm-transition);
}

.pagination__btn:hover {
  color: var(--mm-white);
  border-color: var(--mm-border-2);
}

.pagination__btn.active {
  background: var(--mm-red);
  color: var(--mm-white);
  border-color: var(--mm-red);
}

.pagination__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Loading / Skeleton ──────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--mm-black-2) 25%, var(--mm-black-3) 50%, var(--mm-black-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--mm-radius);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  height: 380px;
  border-radius: var(--mm-radius-lg);
}

/* ── Empty / Error states ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1/-1;
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state h3 {
  color: var(--mm-white);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 0.875rem;
}

/* ── Toast notifications ─────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.toast {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mm-white);
  background: var(--mm-black-3);
  border: 1px solid var(--mm-border-2);
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: var(--mm-shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  pointer-events: auto;
}

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

.toast--success { border-color: #25D366; }
.toast--error   { border-color: var(--mm-red); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__trust { gap: 16px; }
  .hero__divider { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-strip__inner { gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .product-info__specs { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .filters__row { flex-direction: column; }
  .filter-group { min-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; }
}
