/* ═══════════════════════════════════════
   HOMEPAGE.CSS
   Styles for front-page.php sections only
   Uses design system tokens from style.css
   ═══════════════════════════════════════ */

/* ── Hero ── */
.mk-hero {
  position: relative;
  min-height: auto;
  display: flex; align-items: center;
  overflow: hidden;
  background-color: var(--mk-black);
  padding: 32px 0 40px;
}
.mk-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 40%, rgba(45,204,211,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(45,204,211,0.05) 0%, transparent 60%);
}
.mk-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.mk-hero .mk-container { position: relative; z-index: 2; width: 100%; }
.mk-hero-content { position: relative; z-index: 2; width: 100%; text-align: center; }
.mk-hero-badges { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.mk-hero-badges .mk-floating-badge,
.mk-hero-badges .mk-floating-stats { position: static; }
.mk-hero-tag {
  font-family: var(--mk-font-display);
  font-size: 12px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--mk-teal);
  font-weight: 400; margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
}
.mk-hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--mk-teal); }
.mk-hero h1 {
  font-family: var(--mk-font-display);
  font-size: clamp(24px, 7.5vw, 82px);
  font-weight: 700; line-height: 0.95;
  text-transform: uppercase; letter-spacing: -1px;
  margin-bottom: 16px; color: var(--mk-white);
}
.mk-hero h1 .accent { color: var(--mk-teal); display: inline !important; }
.mk-hero-line2 { display: inline !important; }
.mk-hero-desc {
  font-size: 16px; line-height: 1.7;
  color: var(--mk-gray-400); max-width: 680px; margin: 0 auto 20px; 
}
.mk-hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.mk-hero-showcase { position: relative; display: flex; align-items: center; justify-content: center; }
.mk-hero-card {
  width: 340px; background: var(--mk-black-card);
  border: 1px solid var(--mk-black-border);
  border-radius: var(--mk-radius-lg); overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mk-hero-card-image {
  width: 100%; height: 300px;
  background: linear-gradient(135deg, #132e2f, #0d1f1d);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mk-hero-card-image::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(45,204,211,0.12), transparent 70%);
}
.mk-product-silhouette { font-size: 100px; opacity: 0.3; }
.mk-hero-card-body { padding: 22px; }
.mk-hero-card-brand {
  font-family: var(--mk-font-display); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--mk-teal); margin-bottom: 6px;
}
.mk-hero-card-name {
  font-family: var(--mk-font-display); font-size: 20px;
  font-weight: 600; text-transform: uppercase; margin-bottom: 6px;
  color: var(--mk-white);
}
.mk-hero-card-meta { font-size: 13px; color: var(--mk-gray-500); margin-bottom: 16px; }
.mk-hero-card-meta span { color: var(--mk-teal); font-weight: 600; }
.mk-hero-card-footer { display: flex; align-items: center; justify-content: space-between; }
.mk-hero-card-price { font-family: var(--mk-font-display); font-size: 26px; font-weight: 600; color: var(--mk-white); }
.mk-hero-card-btn {
  width: 42px; height: 42px; background: var(--mk-teal);
  border: none; border-radius: 50%; color: var(--mk-black);
  font-size: 20px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.25s; font-weight: 700;
}
.mk-hero-card-btn:hover { transform: scale(1.1); background: var(--mk-teal-dark); }

.mk-floating-badge {
  position: absolute; top: 24px; right: -24px;
  background: var(--mk-black-card); border: 1px solid var(--mk-black-border);
  border-radius: var(--mk-radius-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  transform: rotate(3deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: mk-float 4s ease-in-out infinite;
}
@keyframes mk-float { 0%,100%{transform:rotate(3deg) translateY(0)} 50%{transform:rotate(3deg) translateY(-8px)} }
.mk-floating-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #22C55E; animation: mk-pulse-dot 2s infinite; }
@keyframes mk-pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.mk-floating-badge .label { font-size: 13px; font-weight: 500; color: var(--mk-white); }
.mk-floating-badge .sub { font-size: 11px; color: var(--mk-gray-500); }
.mk-floating-stats {
  position: absolute; bottom: 16px; left: -40px;
  background: var(--mk-black-card); border: 1px solid var(--mk-black-border);
  border-radius: var(--mk-radius-lg); padding: 16px 22px;
  transform: rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: mk-float2 5s ease-in-out infinite;
}
@keyframes mk-float2 { 0%,100%{transform:rotate(-1deg) translateY(0)} 50%{transform:rotate(-1deg) translateY(-6px)} }
.mk-floating-stats .stat-num { font-family: var(--mk-font-display); font-size: 28px; font-weight: 700; color: var(--mk-teal); }
.mk-floating-stats .stat-label { font-size: 12px; color: var(--mk-gray-500); letter-spacing: 1px; }

/* ── Hero Animations ── */
@keyframes mk-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.mk-hero-tag, .mk-hero h1, .mk-hero-desc, .mk-hero-ctas { animation: mk-fadeUp 0.8s ease forwards; opacity: 0; }
.mk-hero h1 { animation-delay: 0.1s; }
.mk-hero-desc { animation-delay: 0.2s; }
.mk-hero-ctas { animation-delay: 0.3s; }
.mk-hero-card { animation: mk-fadeUp 0.8s ease 0.4s forwards; opacity: 0; }

/* ── Categories (Light) ── */
.mk-categories { padding: 40px 0 32px; background-color: var(--mk-white); color: var(--mk-black); }
.mk-categories .mk-section-tag { color: var(--mk-black); }
.mk-categories .mk-section-title { color: var(--mk-black); }
.mk-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.mk-cat-card {
  position: relative; background: var(--mk-white);
  border: 1px solid var(--mk-gray-200);
  border-radius: var(--mk-radius); padding: 28px 12px;
  text-align: center; cursor: pointer;
  transition: all 0.35s; overflow: hidden;
  text-decoration: none; color: var(--mk-black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.mk-cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(45,204,211,0.08), transparent 70%);
  opacity: 0; transition: opacity 0.35s;
}
.mk-cat-card:hover::before { opacity: 1; }
.mk-cat-card:hover { border-color: var(--mk-black); transform: translateY(-3px); }
.mk-cat-icon { font-size: 30px; margin-bottom: 12px; display: block; position: relative; z-index: 1; }
.mk-cat-name {
  font-family: var(--mk-font-display); font-size: 12px;
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 1.5px; position: relative; z-index: 1;
  color: var(--mk-black);
}

/* Image-based category cards */
.mk-cat-card.has-image {
  padding: 0;
  aspect-ratio: 1;
  background: #111;
  border-color: transparent;
}
.mk-cat-card.has-image::before {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  opacity: 1;
  z-index: 2;
}
.mk-cat-card.has-image:hover { border-color: var(--mk-teal); }
.mk-cat-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mk-cat-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: transform 0.4s;
}
.mk-cat-card.has-image:hover .mk-cat-img {
  transform: scale(1.06);
}
.mk-cat-card.has-image .mk-cat-name {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  z-index: 3;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ── Featured Products (Dark, Horizontal Scroll) ── */
.mk-featured { padding: 36px 0 40px; background-color: var(--mk-black); color: var(--mk-white); }
.mk-featured .mk-section-tag { color: var(--mk-teal); }
.mk-featured .mk-section-title { color: var(--mk-white); }
.mk-featured .mk-section-link { color: var(--mk-teal); }
.mk-products-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 40px 20px;
  scrollbar-width: none;
}
.mk-products-scroll::-webkit-scrollbar { display: none; }
.mk-product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--mk-black-card);
  border: 1px solid var(--mk-black-border);
  border-radius: var(--mk-radius-lg);
  overflow: hidden; transition: all 0.35s;
  position: relative; cursor: pointer;
}
.mk-product-card:hover { border-color: var(--mk-teal); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.mk-product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--mk-font-display); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--mk-teal); color: var(--mk-black);
  padding: 4px 10px; border-radius: 4px; font-weight: 600;
}
.mk-product-wishlist {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 34px; height: 34px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--mk-black-border);
  border-radius: 50%; color: var(--mk-gray-400);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s; font-size: 14px;
}
.mk-product-wishlist:hover { color: var(--mk-teal); border-color: var(--mk-teal); }
.mk-product-img {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, #132828, #0d1a18);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mk-product-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 50px; background: linear-gradient(transparent, var(--mk-black-card));
}
.mk-product-img .placeholder { font-size: 56px; opacity: 0.2; }
.mk-product-body { padding: 18px 18px 20px; }
.mk-product-type {
  font-family: var(--mk-font-display); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mk-teal); margin-bottom: 6px;
}
.mk-product-name {
  font-family: var(--mk-font-display); font-size: 17px;
  font-weight: 600; text-transform: uppercase;
  margin-bottom: 4px; line-height: 1.2; color: var(--mk-white);
}
.mk-product-brand { font-size: 13px; color: var(--mk-gray-500); margin-bottom: 12px; }
.mk-product-stats {
  display: flex; gap: 14px; margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 1px solid var(--mk-black-border);
}
.mk-product-stat { font-size: 12px; color: var(--mk-gray-500); }
.mk-product-stat strong { color: var(--mk-white); font-weight: 600; }
.mk-product-footer { display: flex; align-items: center; justify-content: space-between; }
.mk-product-price { font-family: var(--mk-font-display); font-size: 22px; font-weight: 600; color: var(--mk-white); }
.mk-product-add {
  font-family: var(--mk-font-display) !important; font-size: 11px !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  background: transparent !important; border: 1px solid var(--mk-teal) !important;
  color: var(--mk-teal) !important; padding: 9px 16px !important;
  cursor: pointer; transition: all 0.25s; font-weight: 500 !important;
  border-radius: 0 !important;
}
.mk-product-add:hover { background: var(--mk-teal) !important; color: var(--mk-black) !important; }

.mk-scroll-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.mk-scroll-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--mk-black-border);
  border-radius: 50%; background: var(--mk-black-card);
  color: var(--mk-gray-400); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
}
.mk-scroll-arrow:hover { border-color: var(--mk-teal); color: var(--mk-teal); }

/* ── Deals Banner (Dark) ── */
.mk-deals-banner { padding: 0 0 40px; background-color: var(--mk-black); color: var(--mk-white); }
.mk-deals-inner {
  background: linear-gradient(135deg, var(--mk-teal-dark), var(--mk-teal));
  border-radius: var(--mk-radius-lg); padding: 40px 48px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.mk-deals-inner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0,0,0,0.12), transparent 50%);
}
.mk-deals-inner::after {
  content: ''; position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border: 80px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.mk-deals-content { position: relative; z-index: 2; }
.mk-deals-tag {
  font-family: var(--mk-font-display); font-size: 13px;
  letter-spacing: 4px; text-transform: uppercase;
  font-weight: 400; opacity: 0.7; margin-bottom: 14px; color: var(--mk-black);
}
.mk-deals-title {
  font-family: var(--mk-font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700; text-transform: uppercase;
  line-height: 1; margin-bottom: 14px; color: var(--mk-black);
}
.mk-deals-desc { font-size: 16px; line-height: 1.6; opacity: 0.8; max-width: 480px; color: var(--mk-black); }

/* ── Hours & Location (Light) ── */
.mk-hours-section { padding: 40px 0; background-color: var(--mk-white); color: var(--mk-black); }
.mk-hours-section .mk-section-tag { color: var(--mk-black); }
.mk-hours-section .mk-section-title { color: var(--mk-black); }
.mk-hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.mk-hours-card {
  background: var(--mk-white); border: 1px solid var(--mk-gray-200);
  border-radius: var(--mk-radius-lg); padding: 40px 32px; text-align: center;
  transition: all 0.35s; position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.mk-hours-card:hover { border-color: var(--mk-teal); }
.mk-hours-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--mk-teal); }
.mk-hours-icon { font-size: 36px; margin-bottom: 20px; }
.mk-hours-type { font-family: var(--mk-font-display); font-size: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: var(--mk-black); }
.mk-hours-time { font-family: var(--mk-font-display); font-size: 32px; font-weight: 700; color: var(--mk-black); margin-bottom: 8px; }
.mk-hours-detail { font-size: 14px; color: var(--mk-gray-500); line-height: 1.6; }
.mk-hours-detail strong { color: var(--mk-black); }
.mk-location-bar {
  background: var(--mk-white); border: 1px solid var(--mk-gray-200);
  border-radius: var(--mk-radius-lg); padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.mk-location-info { display: flex; align-items: center; gap: 16px; }
.mk-location-pin { font-size: 28px; }
.mk-location-text h4 { font-family: var(--mk-font-display); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--mk-black); }
.mk-location-text p { font-size: 14px; color: var(--mk-gray-500); margin-top: 2px; }

/* ── Partnership (Dark) ── */
.mk-partnership { padding: 0 0 40px; background-color: var(--mk-black); color: var(--mk-white); }
.mk-partnership-inner {
  background: var(--mk-black-card); border: 1px solid var(--mk-black-border);
  border-radius: var(--mk-radius-lg); padding: 36px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.mk-partnership-content { max-width: 540px; }
.mk-partnership-tag { font-family: var(--mk-font-display); font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--mk-teal); margin-bottom: 12px; }
.mk-partnership-title { font-family: var(--mk-font-display); font-size: clamp(24px,3vw,36px); font-weight: 700; text-transform: uppercase; line-height: 1.1; margin-bottom: 14px; color: var(--mk-white); }
.mk-partnership-desc { font-size: 15px; line-height: 1.7; color: var(--mk-gray-400); }
.mk-partnership-logos { display: flex; align-items: center; gap: 24px; }
.mk-partner-logo-box {
  width: 120px; height: 120px; border: 1px solid var(--mk-black-border);
  border-radius: var(--mk-radius); display: flex; align-items: center; justify-content: center;
  font-family: var(--mk-font-display); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--mk-gray-400);
  text-align: center; padding: 12px; line-height: 1.2;
}
.mk-partner-x { font-size: 24px; color: var(--mk-teal); font-weight: 300; }

/* ── Services (Light) ── */
.mk-services { padding: 36px 0 40px; background-color: var(--mk-white); color: var(--mk-black); }
.mk-services .mk-section-tag { color: var(--mk-teal); }
.mk-services .mk-section-title { color: var(--mk-black); }
.mk-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mk-service-card {
  background: var(--mk-white); border: 1px solid var(--mk-gray-200);
  border-radius: var(--mk-radius-lg); padding: 44px 32px;
  transition: all 0.35s; position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.mk-service-card:hover { border-color: var(--mk-teal); }
.mk-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--mk-teal);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.mk-service-card:hover::before { transform: scaleX(1); }
.mk-service-icon { font-size: 30px; margin-bottom: 20px; }
.mk-service-title { font-family: var(--mk-font-display); font-size: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: var(--mk-black); }
.mk-service-desc { font-size: 14px; line-height: 1.7; color: var(--mk-gray-500); }

/* ── Discounts (Light) ── */
.mk-discounts { padding: 36px 0 40px; background-color: var(--mk-white); color: var(--mk-black); }
.mk-discounts .mk-section-tag { color: var(--mk-black); }
.mk-discounts .mk-section-title { color: var(--mk-black); }
.mk-discounts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mk-discount-card {
  background: var(--mk-white); border: 1px solid var(--mk-gray-200);
  border-radius: var(--mk-radius); padding: 28px 20px; text-align: center;
  transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.mk-discount-card:hover { border-color: var(--mk-teal); }
.mk-discount-pct { font-family: var(--mk-font-display); font-size: 36px; font-weight: 700; color: var(--mk-black); margin-bottom: 6px; }
.mk-discount-label { font-family: var(--mk-font-display); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; color: var(--mk-black); }
.mk-discount-detail { font-size: 12px; color: var(--mk-gray-500); line-height: 1.5; }

/* ── Brands Marquee (Light) ── */
.mk-brands { padding: 36px 0 40px; background-color: var(--mk-white); color: var(--mk-black); }
.mk-brands .mk-section-tag { color: var(--mk-black); }
.mk-brands .mk-section-title { color: var(--mk-black); }
.mk-brands-track {
  display: flex; gap: 48px; align-items: center; overflow: hidden; padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.mk-brands-slide {
  display: flex; gap: 48px; align-items: center;
  animation: mk-marquee 30s linear infinite; flex-shrink: 0;
}
@keyframes mk-marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.mk-brand-item {
  font-family: var(--mk-font-display); font-size: 18px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 3px;
  color: #9CA3AF; white-space: nowrap;
  transition: color 0.3s; cursor: default; flex-shrink: 0;
}
.mk-brand-item:hover { color: var(--mk-teal); }
.mk-brand-sep { color: #D1D5DB; font-size: 8px; flex-shrink: 0; }

/* ── Reviews (Dark) ── */
.mk-reviews { padding: 36px 0 40px; background-color: var(--mk-black); color: var(--mk-white); }
.mk-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mk-review-card {
  background: var(--mk-black-card); border: 1px solid var(--mk-black-border);
  border-radius: var(--mk-radius-lg); padding: 36px 28px;
}
.mk-review-stars { color: var(--mk-teal); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.mk-review-text { font-size: 15px; line-height: 1.7; color: var(--mk-gray-300); margin-bottom: 20px; font-style: italic; }
.mk-review-author { font-family: var(--mk-font-display); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--mk-white); }
.mk-review-source { font-size: 12px; color: var(--mk-gray-500); margin-top: 2px; }

/* ── FAQ (Light) ── */
.mk-faq-section { padding: 36px 0 40px; background-color: var(--mk-white); color: var(--mk-black); }
.mk-faq-section .mk-section-tag { color: var(--mk-black); }
.mk-faq-section .mk-section-title { color: var(--mk-black); }
.mk-faq-list { max-width: 860px; margin: 0 auto; }
.mk-faq-item { border-bottom: 1px solid var(--mk-gray-200); }
.mk-faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 24px 0; background: none; border: none;
  color: var(--mk-black); cursor: pointer; text-align: left;
  font-family: var(--mk-font-display); font-size: 17px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.25s;
}
.mk-faq-question:hover { color: var(--mk-black); }
.mk-faq-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid var(--mk-gray-300); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--mk-black); transition: all 0.3s;
}
.mk-faq-item.open .mk-faq-toggle { transform: rotate(45deg); background: var(--mk-black); color: var(--mk-white); border-color: var(--mk-black); }
.mk-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.mk-faq-item.open .mk-faq-answer { max-height: 400px; padding-bottom: 24px; }
.mk-faq-answer p { font-size: 15px; line-height: 1.7; color: var(--mk-gray-500); }

/* ── Section Divider ── */
.mk-section-divider { border-top: 1px solid var(--mk-gray-200); }
.mk-section-divider-dark { border-top: 1px solid var(--mk-black-border); }

/* ── Button variants used on homepage ── */
.mk-btn-directions {
  font-family: var(--mk-font-display); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  background: transparent; border: 1px solid var(--mk-black);
  color: var(--mk-black); padding: 12px 28px;
  text-decoration: none; transition: all 0.25s;
}
.mk-btn-directions:hover { background: var(--mk-black); color: var(--mk-white); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .mk-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .mk-discounts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mk-hero { min-height: auto; padding: 20px 0 28px; }
  .mk-hero h1 { font-size: 38px !important; }
  .mk-hero-ctas { flex-direction: column; align-items: center; }
  .mk-hero-ctas .mk-btn { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .mk-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .mk-hours-grid { grid-template-columns: 1fr; }
  .mk-services-grid { grid-template-columns: 1fr; }
  .mk-reviews-grid { grid-template-columns: 1fr; }
  .mk-deals-inner { padding: 40px 28px; grid-template-columns: 1fr; }
  .mk-partnership-inner { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .mk-hero h1 { font-size: 32px !important; }
  .mk-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-discounts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .mk-hero h1 { font-size: 28px !important; }
}

/* ========================================
   DAILY DEALS SLIDER
   ======================================== */
.mk-daily-deals {
  background: var(--mk-black);
  color: var(--mk-white);
  padding: 32px 0 24px;
}
.mk-daily-deals .mk-section-tag { color: var(--mk-teal); }
.mk-daily-deals .mk-section-title { color: var(--mk-white); }
.mk-daily-deals .mk-section-link { color: var(--mk-teal); }
.mk-daily-deals .mk-section-header {
  margin-bottom: 28px;
}
.mk-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}
.mk-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.mk-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.mk-slide.active {
  opacity: 1;
  z-index: 1;
}
.mk-slide-img,
.mk-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  border-radius: 0;
  max-width: 100%;
}
.mk-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mk-slider-arrow:hover {
  background: rgba(45,204,211,0.85);
  color: #0a0a0a;
}
.mk-slider-prev { left: 12px; }
.mk-slider-next { right: 12px; }
.mk-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.mk-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.mk-slider-dot.active {
  background: var(--mk-teal);
  border-color: var(--mk-teal);
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .mk-daily-deals { padding: 32px 0 32px; }
  .mk-daily-deals .mk-section-header { margin-bottom: 16px; }
  .mk-slider { border-radius: 10px; }
  .mk-slide-img { border-radius: 10px; }
  .mk-slider-arrow { width: 36px; height: 36px; font-size: 18px; }
  .mk-slider-prev { left: 8px; }
  .mk-slider-next { right: 8px; }
  .mk-slider-dots { bottom: 10px; gap: 6px; }
  .mk-slider-dot { width: 8px; height: 8px; }
}

/* ========================================
   HERO BACKGROUND IMAGE
   ======================================== */
.mk-hero-has-bg .mk-hero-bg { background: linear-gradient(rgba(10,10,10,0.7), rgba(10,10,10,0.85)); z-index: 1; }
.mk-hero-has-bg .mk-hero-grid { z-index: 2; opacity: 0.3; }
.mk-hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mk-hero-bg-img,
.mk-hero-bg-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* ========================================
   SEO CONTENT BLOCKS
   ======================================== */
.mk-seo-block {
  padding: 40px 0;
}
.mk-seo-dark {
  background: var(--mk-black);
}
.mk-seo-light {
  background: var(--mk-white);
}

/* Grid: text only (no image uploaded) */
.mk-seo-grid {
  max-width: 860px;
  margin: 0 auto;
}

/* Grid: text + image side by side */
.mk-seo-grid.has-image {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: 100%;
}
.mk-seo-grid.has-image .mk-seo-heading,
.mk-seo-grid.has-image .mk-seo-content p {
  text-align: left;
}
.mk-seo-grid-reverse.has-image {
  grid-template-columns: 0.9fr 1.1fr;
}

.mk-seo-heading {
  font-family: var(--mk-font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 28px;
  text-align: center;
}
.mk-seo-dark .mk-seo-heading { color: var(--mk-white); }
.mk-seo-light .mk-seo-heading { color: var(--mk-black); }
.mk-seo-content p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 1.4em;
  text-align: center;
}
.mk-seo-content p:last-child { margin-bottom: 0; }
.mk-seo-dark .mk-seo-content p { color: var(--mk-gray-400); }
.mk-seo-light .mk-seo-content p { color: #4b5563; }
.mk-seo-dark .mk-seo-content a { color: var(--mk-teal); text-decoration: underline; text-underline-offset: 3px; }
.mk-seo-dark .mk-seo-content a:hover { color: var(--mk-white); }
.mk-seo-light .mk-seo-content a { color: var(--mk-black); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.mk-seo-light .mk-seo-content a:hover { color: var(--mk-teal); }

/* SEO Image */
.mk-seo-image {
  border-radius: var(--mk-radius);
  overflow: hidden;
}
.mk-seo-img,
.mk-seo-image img {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: var(--mk-radius);
  object-fit: cover;
}

/* ========================================
   LIFESTYLE BANNER
   ======================================== */
.mk-lifestyle-banner {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}
.mk-lifestyle-img,
.mk-lifestyle-banner img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

@media (max-width: 768px) {
  .mk-seo-block { padding: 32px 0; }
  .mk-seo-content p { font-size: 15px; }
  .mk-seo-grid.has-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mk-seo-grid-reverse.has-image {
    grid-template-columns: 1fr;
  }
  .mk-seo-grid-reverse.has-image .mk-seo-image {
    order: -1;
  }
  .mk-lifestyle-banner { max-height: 280px; }
  .mk-lifestyle-banner img { max-height: 280px; }
}

/* ========================================
   CANNAPRESS PLUGIN — Dark Theme Overrides
   Forces plugin cards to inherit Mankind's dark aesthetic.
   ======================================== */

/* Override CSS custom properties */
.mk-featured .cpm-featured-section,
.mk-featured .cpm-dynamic-content {
  --dpm-bg: var(--mk-black) !important;
  --dpm-card-bg: #1a1a1a !important;
  --dpm-text: #f1f1f1 !important;
  --dpm-text-muted: #9ca3af !important;
  --dpm-border: rgba(255,255,255,0.08) !important;
  --dpm-shadow: 0 1px 3px rgba(0,0,0,.3) !important;
  --dpm-shadow-lg: 0 10px 20px rgba(0,0,0,.4) !important;
  --dpm-accent: var(--mk-teal) !important;
  --dpm-accent-dark: var(--mk-teal-dark) !important;
  color: #f1f1f1 !important;
}

/* Section wrapper */
.mk-featured .cpm-featured-section {
  background: transparent !important;
  color: #f1f1f1 !important;
}

/* Card backgrounds */
.mk-featured .cpm-featured-section .cpm-product-card {
  background: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: #f1f1f1 !important;
}
.mk-featured .cpm-featured-section .cpm-product-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,.4) !important;
}

/* Product image area */
.mk-featured .cpm-featured-section .cpm-product-image-wrap {
  background: #111111 !important;
}
.mk-featured .cpm-featured-section .cpm-product-image-placeholder {
  background: linear-gradient(135deg, #1a1a1a, #111111) !important;
  color: #4b5563 !important;
}

/* Product info section */
.mk-featured .cpm-featured-section .cpm-product-info {
  background: #1a1a1a !important;
  color: #f1f1f1 !important;
}

/* Category label */
.mk-featured .cpm-featured-section .cpm-product-category {
  color: var(--mk-teal) !important;
}

/* Product name */
.mk-featured .cpm-featured-section .cpm-product-name {
  color: #ffffff !important;
}

/* Brand */
.mk-featured .cpm-featured-section .cpm-product-brand {
  color: #9ca3af !important;
}

/* Potency badges */
.mk-featured .cpm-featured-section .cpm-potency-badge {
  background: rgba(255,255,255,0.08) !important;
  color: #d1d5db !important;
}

/* Weight range */
.mk-featured .cpm-featured-section .cpm-weight-range {
  color: #9ca3af !important;
}

/* Price */
.mk-featured .cpm-featured-section .cpm-price {
  color: #ffffff !important;
}
.mk-featured .cpm-featured-section .cpm-price-original {
  color: #6b7280 !important;
}
.mk-featured .cpm-featured-section .cpm-price-sale {
  color: #f87171 !important;
}

/* Product bottom / footer */
.mk-featured .cpm-featured-section .cpm-product-bottom {
  background: #1a1a1a !important;
}

/* Add to cart / Select weight buttons */
.mk-featured .cpm-featured-section .cpm-add-btn,
.mk-featured .cpm-featured-section .cpm-select-weight-btn {
  background: var(--mk-teal) !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.mk-featured .cpm-featured-section .cpm-add-btn:hover,
.mk-featured .cpm-featured-section .cpm-select-weight-btn:hover {
  background: var(--mk-teal-dark, #1fb8b8) !important;
}
.mk-featured .cpm-featured-section .cpm-add-btn.added {
  background: #059669 !important;
  color: #ffffff !important;
}

/* Navigation arrows */
.mk-featured .cpm-feat-arrow {
  background: rgba(30,30,30,.95) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
}
.mk-featured .cpm-feat-arrow:hover {
  background: rgba(45,204,211,0.9) !important;
  color: #0a0a0a !important;
}

/* Featured header link */
.mk-featured .cpm-featured-menu-link,
.mk-featured .cpm-featured-menu-link:link,
.mk-featured .cpm-featured-menu-link:visited {
  color: var(--mk-teal) !important;
}

/* Skeleton loading */
.mk-featured .cpm-featured-section .cpm-skeleton .cpm-skeleton-box,
.mk-featured .cpm-featured-section .cpm-skeleton .cpm-skeleton-line {
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%) !important;
  background-size: 200% 100% !important;
}

/* Dynamic empty state */
.mk-featured .cpm-dynamic-empty {
  color: #6b7280 !important;
}

/* Store selector in dynamic mode */
.mk-featured .cpm-store-selector {
  background: var(--mk-teal) !important;
  border-color: var(--mk-teal) !important;
  color: #0a0a0a !important;
}

/* ADA: Override teal links on white backgrounds */
.mk-categories .mk-section-link,
.mk-hours-section .mk-section-link,
.mk-discounts .mk-section-link,
.mk-brands .mk-section-link,
.mk-faq-section .mk-section-link {
  color: var(--mk-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mk-categories .mk-section-link:hover,
.mk-hours-section .mk-section-link:hover,
.mk-discounts .mk-section-link:hover,
.mk-brands .mk-section-link:hover,
.mk-faq-section .mk-section-link:hover {
  text-decoration-color: var(--mk-teal);
}

/* Center FAQ layout */
.mk-faq-section .mk-section-header {
  max-width: 860px;
  margin: 0 auto 24px;
}

.mk-reviews .mk-section-tag { color: var(--mk-teal); }
.mk-reviews .mk-section-title { color: var(--mk-white); }
.mk-reviews .mk-section-link { color: var(--mk-teal); }

/* ═══════════════════════════════════════
   DARK SECTION TEXT COLOR FIXES
   Forces white text on all dark homepage sections
   after body color was changed to black for Elementor
   ═══════════════════════════════════════ */
.mk-featured .mk-section-title,
.mk-reviews .mk-section-title,
.mk-daily-deals .mk-section-title,
.mk-deals-banner h3,
.mk-partnership h3,
.mk-partnership-title {
  color: var(--mk-white) !important;
}
.mk-featured .mk-section-tag,
.mk-reviews .mk-section-tag,
.mk-daily-deals .mk-section-tag {
  color: var(--mk-teal) !important;
}
.mk-featured .mk-section-link,
.mk-reviews .mk-section-link,
.mk-daily-deals .mk-section-link {
  color: var(--mk-teal) !important;
}
