/*
Theme Name: MEALLDAY
Theme URI: https://meallday.com
Author: MEALLDAY
Description: Custom storefront theme for MEALLDAY streetwear. Built from scratch â€” no page builders, no WooCommerce, no bloat.
Version: 1.0
*/

/* ============================================================
   MEALLDAY DESIGN SYSTEM
   ============================================================ */

:root {
  --black:   #0a0a0a;
  --off-black: #111111;
  --surface: #161616;
  --border:  #222222;
  --border-light: #2a2a2a;
  --white:   #ffffff;
  --gray:    #888888;
  --gray-dark: #555555;
  --accent:  #E8FF00;
  --accent-hover: #d4eb00;
  --red:     #FF3D00;
  --success: #1D9E75;

  --font-main: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --transition: 0.15s ease;
  --max-width: 1400px;
}

/* ============================================================
   RESET
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.display-lg {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.display-md {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.muted {
  color: var(--gray);
}

.accent {
  color: var(--accent);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.container-tight {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}

.divider {
  height: 0.5px;
  background: var(--border);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 0.5px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions a,
.nav-actions button {
  color: var(--gray);
  font-size: 13px;
  transition: color var(--transition);
  position: relative;
}

.nav-actions a:hover,
.nav-actions button:hover {
  color: var(--white);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: var(--black);
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile-toggle {
  display: none;
  color: var(--white);
  font-size: 20px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.announcement-bar {
  background: var(--accent);
  color: var(--black);
  text-align: center;
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 80px 0 72px;
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content .eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--gray-dark);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.hero-image {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-light);
  font-size: 13px;
  letter-spacing: 0.06em;
  overflow: hidden;
  position: relative;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 0.5px solid var(--border-light);
}

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

.btn-danger {
  background: var(--red);
  color: var(--white);
}

.btn-sm {
  font-size: 11px;
  padding: 9px 18px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */

.section {
  padding: 60px 0;
  border-bottom: 0.5px solid var(--border);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-link {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  transition: opacity var(--transition);
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}

.product-card {
  background: var(--black);
  transition: background var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  background: var(--off-black);
}

.product-card:hover .product-cta {
  color: var(--accent);
}

.product-image {
  background: var(--surface);
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

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

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-light);
  font-size: 32px;
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.badge-new    { background: var(--accent); color: var(--black); }
.badge-pre    { background: var(--red); color: var(--white); }
.badge-sold   { background: var(--surface); color: var(--gray-dark); border: 0.5px solid var(--border-light); }
.badge-sale   { background: var(--red); color: var(--white); }
.badge-ltd    { background: var(--off-black); color: var(--accent); border: 0.5px solid var(--accent); }

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--off-black);
  border: 0.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray);
  opacity: 0;
  transition: opacity var(--transition), color var(--transition);
}

.product-card:hover .product-wishlist {
  opacity: 1;
}

.product-wishlist:hover {
  color: var(--accent);
}

.product-info {
  padding: 16px;
}

.product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.product-variant {
  font-size: 11px;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.product-price-old {
  font-size: 12px;
  color: var(--gray-dark);
  text-decoration: line-through;
  margin-left: 6px;
}

.product-cta {
  font-size: 11px;
  color: var(--gray-dark);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

/* ============================================================
   FILTER BAR
   ============================================================ */

.filter-bar {
  display: flex;
  gap: 0;
  border-bottom: 0.5px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--gray-dark);
  border-right: 0.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.filter-tab:last-child {
  border-right: none;
}

.filter-tab:hover,
.filter-tab.active {
  color: var(--white);
  background: var(--off-black);
}

.filter-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-light);
  transition: background var(--transition);
}

.filter-tab.active .filter-dot {
  background: var(--accent);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}

.product-gallery {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  background: var(--surface);
  border-right: 0.5px solid var(--border);
  overflow: hidden;
}

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

.gallery-thumbs {
  display: flex;
  gap: 0;
  height: 20%;
  border-top: 0.5px solid var(--border);
}

.gallery-thumb {
  flex: 1;
  object-fit: cover;
  border-right: 0.5px solid var(--border);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.gallery-thumb:last-child {
  border-right: none;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
}

.product-detail-info {
  padding: 48px 40px;
  overflow-y: auto;
}

.product-detail-name {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.product-detail-price {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
}

.size-selector {
  margin-bottom: 24px;
}

.size-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.size-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  width: 48px;
  height: 48px;
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--white);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
}

.size-btn:hover {
  border-color: var(--white);
}

.size-btn.active {
  border-color: var(--accent);
  color: var(--accent);
}

.size-btn.sold-out {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.product-description {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  border-top: 0.5px solid var(--border);
  padding-top: 24px;
  margin-bottom: 24px;
}

.product-details-list {
  border-top: 0.5px solid var(--border);
  padding-top: 24px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 12px;
}

.detail-row-label {
  color: var(--gray-dark);
}

.detail-row-value {
  color: var(--white);
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  background: var(--off-black);
  border-left: 0.5px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.cart-close {
  color: var(--gray);
  font-size: 20px;
  transition: color var(--transition);
}

.cart-close:hover {
  color: var(--white);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
}

.cart-item-image {
  width: 72px;
  height: 88px;
  background: var(--surface);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 11px;
  color: var(--gray-dark);
  margin-bottom: 10px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.qty-btn:hover {
  border-color: var(--white);
}

.qty-num {
  font-size: 13px;
  min-width: 16px;
  text-align: center;
}

.cart-item-price {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 0.5px solid var(--border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
}

.cart-total-label {
  color: var(--gray);
}

.cart-total-amount {
  font-size: 18px;
  font-weight: 500;
}

.cart-note {
  font-size: 11px;
  color: var(--gray-dark);
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   CHATBOT
   ============================================================ */

.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
}

.chat-toggle {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(232, 255, 0, 0.2);
}

.chat-toggle:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.chat-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 340px;
  background: var(--off-black);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: none;
}

.chat-panel.open {
  display: flex;
  flex-direction: column;
}

.chat-panel-header {
  background: var(--surface);
  padding: 14px 16px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  background: #1a1a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

.chat-panel-name {
  font-size: 13px;
  font-weight: 500;
}

.chat-panel-status {
  font-size: 10px;
  color: var(--success);
}

.chat-messages {
  padding: 16px;
  height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 85%;
}

.chat-msg-bot {
  align-self: flex-start;
}

.chat-msg-user {
  align-self: flex-end;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  line-height: 1.5;
}

.chat-msg-bot .chat-bubble {
  background: var(--surface);
  color: #ccc;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
}

.chat-msg-user .chat-bubble {
  background: var(--accent);
  color: var(--black);
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
}

.chat-input-wrap {
  padding: 12px;
  border-top: 0.5px solid var(--border);
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  background: var(--surface);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: 12px;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.chat-input:focus {
  border-color: var(--accent);
}

.chat-input::placeholder {
  color: var(--gray-dark);
}

.chat-send-btn {
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: var(--radius-md);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}

.chat-send-btn:hover {
  background: var(--accent-hover);
}

/* ============================================================
   EMAIL / WAITLIST POPUP
   ============================================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: var(--off-black);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--gray);
  font-size: 18px;
  cursor: pointer;
  transition: color var(--transition);
}

.popup-close:hover {
  color: var(--white);
}

.popup-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
}

.popup-title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.popup-sub {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.email-input-row {
  display: flex;
  gap: 8px;
}

.email-input {
  flex: 1;
  background: var(--surface);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 13px;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.email-input:focus {
  border-color: var(--accent);
}

.email-input::placeholder {
  color: var(--gray-dark);
}

.popup-note {
  font-size: 11px;
  color: var(--gray-dark);
  margin-top: 12px;
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
}

.blog-card {
  background: var(--black);
  padding: 28px;
  transition: background var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  background: var(--off-black);
}

.blog-card-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-size: 11px;
  color: var(--gray-dark);
  display: flex;
  gap: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding: 60px 0 32px;
  border-top: 0.5px solid var(--border);
}

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

.footer-brand-name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.footer-brand-name span {
  color: var(--accent);
}

.footer-brand-desc {
  font-size: 12px;
  color: var(--gray-dark);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gray);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12px;
  color: var(--gray-dark);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--gray-dark);
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */

.toast-container {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.toast {
  background: var(--white);
  color: var(--black);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  animation: toast-in 0.2s ease;
}

.toast-success {
  background: var(--accent);
  color: var(--black);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABANDONED CART BANNER
   ============================================================ */

.cart-recovery-bar {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 28px;
}

.cart-recovery-text {
  font-size: 13px;
  color: var(--white);
}

.cart-recovery-text span {
  color: var(--accent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: relative;
    height: 60vw;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .hero {
    padding: 48px 0;
  }
  .hero-title {
    font-size: 44px;
  }
  .hero-stats {
    gap: 20px;
  }
  .filter-bar {
    padding: 0 16px;
  }
  .cart-sidebar {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .chat-widget {
    bottom: 16px;
    right: 16px;
  }
  .chat-panel {
    width: calc(100vw - 32px);
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}