/* ============================================================
   MR MAGNETO by Cirku3D — Main Stylesheet
   Colors: Navy #040037 | Orange #E8734A | Cream #F5F0E8
   Fonts: Montserrat (headings) + Poppins (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --navy:       #040037;
  --navy-light: #0a005a;
  --orange:     #E8734A;
  --orange-dark:#C85A30;
  --cream:      #F5F0E8;
  --cream-dark: #EDE6D8;
  --gold:       #F5A623;
  --white:      #FFFFFF;
  --gray-100:   #F8F9FA;
  --gray-200:   #E9ECEF;
  --gray-400:   #ADB5BD;
  --gray-600:   #6C757D;
  --gray-800:   #343A40;
  --green:      #28A745;
  --star:       #F5A623;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Poppins', sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 20px rgba(4,0,55,0.10);
  --shadow-lg:  0 8px 40px rgba(4,0,55,0.18);
  --transition: 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Generic Page Typography ──────────────────────────────── */
/* ── Generic Page Typography ──────────────────────────────── */
body.page-template-default main,
body.page-template-default .entry-content,
body.page-template-default #content,
body.single-post main,
body.single-post .entry-content,
body.single-post #content {
  padding: 3rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.page-template-default h1,
.page-template-default h2,
.page-template-default h3,
.page-template-default h4,
.page-template-default h5,
.page-template-default h6,
.single-post h1,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-top: 1.8em;
  margin-bottom: 0.8em;
  font-weight: 700;
  line-height: 1.2;
}
.page-template-default h1, .single-post h1 { font-size: 2.5rem; margin-top: 0; }
.page-template-default h2, .single-post h2 { font-size: 2rem; }
.page-template-default h3, .single-post h3 { font-size: 1.75rem; }
.page-template-default p, .single-post p { margin-bottom: 1.5em; line-height: 1.7; font-size: 1rem; }
.page-template-default ul, .single-post ul { list-style: disc; padding-left: 2rem; margin-bottom: 1.5em; }
.page-template-default ol, .single-post ol { list-style: decimal; padding-left: 2rem; margin-bottom: 1.5em; }
.page-template-default li, .single-post li { margin-bottom: 0.5em; }
.page-template-default a:not(.btn), .single-post a:not(.btn) { color: var(--orange); text-decoration: underline; }
.page-template-default a:not(.btn):hover, .single-post a:not(.btn):hover { color: var(--orange-dark); }

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: 1290px; margin: 0 auto; padding: 0 1.5rem; }
.section-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}
.badge-bestseller {
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stars { color: var(--star); font-size: 0.85rem; }
.stars span { color: var(--gray-600); margin-left: 3px; font-size: 0.8rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,115,74,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-cart {
  height: 36px;
  padding: 0 16px;
  border-radius: 18px;
  background: var(--orange);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-cart:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ─────────────────────────────────────────────────────────
   TOP BAR
───────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 8px 0;
  position: sticky; top: 0; z-index: 1000;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item .icon { font-size: 0.9rem; }
.top-bar-sep { color: rgba(255,255,255,0.35); }

/* ─────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────── */
/* Hide Kadence default header and footer globally */
#masthead, #colophon { display: none !important; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
  position: sticky;
  top: 37px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(4,0,55,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--orange); }
.search-modal-trigger {
  font-size: 1.2rem;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.mm-search-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 0, 55, 0.8);
  z-index: 99999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.mm-search-modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.mm-search-modal-close {
  position: absolute;
  top: 10px; right: 15px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--gray-600);
}
.mm-search-form {
  display: flex;
  gap: 10px;
}
.mm-search-form input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}
.mm-search-form input:focus {
  border-color: var(--navy);
}
.mm-search-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}
.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.cart-btn {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  position: relative;
}
.cart-btn .cart-icon { font-size: 1.3rem; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
.nav-link .chevron { font-size: 0.65rem; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, #EDE6D8 50%, #E8DDD0 100%);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-title .highlight { color: var(--orange); }
.hero-subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.7;
}
.hero-search-inline { margin-bottom: 2rem; max-width: 450px; }
.hero-search-inline form { display: flex; align-items: center; background: #fff; border: 1px solid var(--gray-200); border-radius: 30px; padding: 4px 6px 4px 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.hero-search-inline input { border: none; outline: none; flex: 1; padding: 10px 5px; font-family: var(--font-body); font-size: 1rem; }
.hero-search-inline button { background: var(--orange); border: none; color: white; border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s; }
.hero-search-inline button:hover { transform: scale(1.05); }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.trust-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.3;
}
.trust-item .icon { font-size: 1.4rem; }
.trust-item strong { color: var(--navy); font-weight: 700; }

.global-trust-bar { background: var(--navy); color: white; padding: 2rem 0; }
.trust-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.tb-item { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; line-height: 1.4; color: rgba(255,255,255,0.7); }
.tb-item .icon { font-size: 2rem; }
.tb-item strong { color: white; font-weight: 700; font-size: 0.95rem; display: block; }

.hero-visual {
  position: relative;
  height: 380px;
}
.magnet-float {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(4,0,55,0.2);
  object-fit: cover;
  transition: transform 0.3s ease;
}
.magnet-float:hover { transform: scale(1.04) rotate(0deg) !important; }
.magnet-float.m1 { width: 210px; top: 180px; right: 10px; transform: rotate(-3deg); z-index: 6; } /* DOWN */
.magnet-float.m2 { width: 220px; top: -20px; right: 120px; transform: rotate(5deg); z-index: 4; } /* UP */
.magnet-float.m3 { width: 260px; top: 70px; right: 210px; transform: rotate(-2deg); z-index: 5; } /* MIDDLE */
.magnet-float.m4 { width: 210px; top: 210px; right: 330px; transform: rotate(-4deg); z-index: 3; } /* DOWN */
.magnet-float.m5 { width: 200px; top: -10px; right: 420px; transform: rotate(4deg); z-index: 2; } /* UP */

.collect-badge {
  position: absolute;
  bottom: 30px; right: 0;
  width: 80px; height: 80px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
  border: 3px solid var(--orange);
  z-index: 10;
}

/* ─────────────────────────────────────────────────────────
   POPULAR DESTINATIONS
───────────────────────────────────────────────────────── */
.immersive-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  padding: 2rem;
  color: white;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.immersive-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.ic-content { position: relative; z-index: 2; max-width: 50%; }
.ic-title { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin-bottom: 0.25rem; color: white; }
.ic-subtitle { font-size: 0.85rem; opacity: 0.8; margin-bottom: 1.5rem; }
.ic-btn { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: white; border-radius: 30px; font-size: 0.85rem; padding: 6px 16px; }
.immersive-card:hover .ic-btn { background: white; color: var(--navy); border-color: white; }
.ic-magnet { 
  position: absolute; 
  right: -20px; 
  bottom: -20px; 
  width: 200px; 
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transform: rotate(-5deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.immersive-card:hover .ic-magnet { transform: rotate(0deg) scale(1.05) translateY(-10px); }

/* Remove old swiper CSS for city-explorer */

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  padding-bottom: 1rem;
}
.city-card {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.city-card:hover { 
  transform: translateY(-8px) scale(1.03); 
  box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
  z-index: 2;
}
.city-card img { width: 100%; height: 100%; object-fit: cover; }
.city-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  transition: background 0.4s;
}
.city-card:hover .city-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.15) 80%);
}
.city-card-view-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 12px;
  border: 2px dashed #cbd5e1;
  transition: var(--transition);
  height: 150px;
  width: 100%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}
.city-card-view-all:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.city-card-view-all .icon { font-size: 2.2rem; margin-bottom: 6px; }

/* Mobile Scroller */
@media (max-width: 768px) {
  .city-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 20px;
    gap: 1rem;
  }
  .city-grid::-webkit-scrollbar { display: none; }
  .city-card, .city-card-view-all {
    flex-shrink: 0;
    width: 160px;
    height: 180px;
    scroll-snap-align: center;
  }
}

/* ─────────────────────────────────────────────────────────
   PRODUCT GRID / CARDS
───────────────────────────────────────────────────────── */
.products-section { padding: 3rem 0; background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding-top: 10px;
}
.product-card-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05) rotate(2deg); }
.product-badge {
  position: absolute; top: 10px; left: 10px; z-index: 10;
}
.product-card-body { padding: 0.85rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
.product-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem; /* Updated font size */
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.2; /* Updated line height */
}
.product-card-type {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.stars { flex: 1; }
.product-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px;
}
.price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.product-card-footer .btn-cart {
  /* Inherit inline styles for the round button */
}

/* ─────────────────────────────────────────────────────────
   SIZES SECTION
───────────────────────────────────────────────────────── */
.sizes-section {
  padding: 3rem 0;
  background: var(--white);
}
.sizes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.sizes-copy h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.sizes-copy p { color: var(--gray-600); line-height: 1.7; }
.size-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}
.size-card:hover { border-color: var(--orange); }
.size-label {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2px;
}
.size-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.size-desc { font-size: 0.8rem; color: var(--gray-600); }
.size-card img {
  width: 120px; margin: 1rem auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.size-dim {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.5rem;
}
.size-dim .arrow { color: var(--orange); font-weight: 700; }
.dim-label {
  background: var(--white);
  padding: 2px 10px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────── */
.how-it-works { padding: 3rem 0; background: var(--cream); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--navy));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow);
}
.step-num {
  position: absolute;
  top: -6px; right: calc(50% - 43px);
  background: var(--orange);
  color: var(--white);
  width: 22px; height: 22px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-card p { font-size: 0.85rem; color: var(--gray-600); }

/* ─────────────────────────────────────────────────────────
   REVIEWS
───────────────────────────────────────────────────────── */
.reviews-section { padding: 3rem 0; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  border-left: 4px solid var(--orange);
}
.review-text {
  font-style: italic;
  color: var(--gray-800);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.reviewer {
  display: flex; align-items: center; gap: 10px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  overflow: hidden;
}
.reviewer-info .name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}
.reviewer-info .verified {
  font-size: 0.72rem;
  color: var(--green);
  display: flex; align-items: center; gap: 3px;
}

/* ─────────────────────────────────────────────────────────
   SHIPPING BANNER
───────────────────────────────────────────────────────── */
.shipping-banner {
  background: var(--orange);
  padding: 1.5rem 0;
}
.banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.banner-text {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.banner-text .icon { font-size: 2rem; }
.banner-text h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
}
.banner-text p { font-size: 0.85rem; opacity: 0.9; }
.btn-banner {
  background: var(--white);
  color: var(--orange);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-banner:hover { background: var(--navy); color: var(--white); }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.social-btn:hover { background: var(--orange); }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.email-form { display: flex; gap: 0; margin-top: 0.5rem; }
.email-form input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.email-form input::placeholder { color: rgba(255,255,255,0.45); }
.email-form button {
  padding: 10px 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}
.email-form button:hover { background: var(--orange-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }

/* ─────────────────────────────────────────────────────────
   SHOP PAGE — FILTERS
───────────────────────────────────────────────────────── */
.shop-hero {
  background: linear-gradient(135deg, var(--cream), #E8DDD0);
  padding: 2rem 0;
}
.shop-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.shop-hero-content h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.shop-hero-content p { color: var(--gray-600); }
.shop-hero-visual { height: 160px; position: relative; }

.shop-layout {
  padding: 2.5rem 0;
  background: var(--gray-100);
}
.shop-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
.filters-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky; top: 100px;
}
.filters-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.filters-header h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}
.clear-filters {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  cursor: pointer;
  border: none;
  background: none;
}
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.filter-group-header h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}
.filter-search {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none; margin-bottom: 0.75rem;
}
.filter-search:focus { border-color: var(--navy); }
.filter-option {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--gray-800);
}
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] { accent-color: var(--navy); width: 14px; height: 14px; }
.show-more {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer; background: none; border: none;
  margin-top: 6px;
  display: flex; align-items: center; gap: 4px;
}

.shop-main {}
.shop-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem; gap: 1rem; flex-wrap: wrap;
}
.shop-results { font-size: 0.85rem; color: var(--gray-600); }
.shop-search {
  flex: 1; max-width: 280px;
  position: relative;
}
.shop-search input {
  width: 100%;
  padding: 9px 36px 9px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-family: var(--font-body);
  outline: none;
}
.shop-search input:focus { border-color: var(--navy); }
.shop-search .icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.sort-select {
  padding: 9px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.83rem;
  outline: none; cursor: pointer;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* ─────────────────────────────────────────────────────────
   PAGINATION (Custom & WooCommerce)
───────────────────────────────────────────────────────── */
.pagination {
  margin-top: 2rem;
}
.pagination ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-btn,
.pagination ul.page-numbers li .page-numbers,
.woocommerce-pagination ul.page-numbers li .page-numbers {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.page-btn:hover, .page-btn.active,
.pagination ul.page-numbers li .page-numbers:hover,
.pagination ul.page-numbers li span.current,
.woocommerce-pagination ul.page-numbers li .page-numbers:hover,
.woocommerce-pagination ul.page-numbers li span.current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.load-more {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.75rem 2.5rem;
}

/* ─────────────────────────────────────────────────────────
   CITY PAGE
───────────────────────────────────────────────────────── */
.city-hero {
  background: linear-gradient(135deg, var(--cream), #EDE6D8);
  padding: 3.5rem 0;
}
.city-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.city-hero-title {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.city-about { padding: 2.5rem 0; background: var(--white); }
.city-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 2rem; align-items: start;
}
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; object-fit: cover; }
.about-info h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.about-info p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.city-vibes {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
.vibe-item {
  text-align: center;
  padding: 0.75rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.vibe-item .emoji { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.vibe-item span { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; color: var(--navy); }
.about-perks { background: var(--cream); border-radius: var(--radius); padding: 1.25rem; }
.about-perks h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.perk-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.perk-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ─────────────────────────────────────────────────────────
   SIZE SELECTOR
───────────────────────────────────────────────────────── */
.size-selector { padding: 2.5rem 0; background: var(--cream); }
.size-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px; margin: 0 auto;
}
.size-option {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 1rem;
  background: var(--white);
}
.size-option:hover { border-color: var(--orange); }
.size-option.selected { border-color: var(--navy); background: var(--navy); color: var(--white); }
.size-option.selected .size-opt-name { color: var(--white); }
.size-opt-preview {
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: 0.5;
}
.size-opt-5x7 { width: 25px; height: 35px; }
.size-opt-7x5 { width: 35px; height: 25px; }
.size-opt-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}
.size-opt-desc { font-size: 0.78rem; color: var(--gray-600); }
.size-option.selected .size-opt-desc { color: rgba(255,255,255,0.7); }
.size-trust {
  display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem;
}

/* ─────────────────────────────────────────────────────────
   PRODUCT DETAIL PAGE
───────────────────────────────────────────────────────── */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb span { margin: 0 6px; color: var(--gray-400); }
.product-detail { padding: 2.5rem 0; }
.product-detail-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1;
  position: relative;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.gallery-heart {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.gallery-heart:hover { border-color: #E21E51; color: #E21E51; }
.gallery-thumbs {
  display: flex; gap: 8px; margin-top: 10px;
  overflow-x: auto;
}
.gallery-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--navy); }
.gallery-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
}
.gallery-nav-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-nav-btn:hover { background: var(--navy); color: var(--white); }

.product-info h1 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.product-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 0.75rem;
}
.rating-count { font-size: 0.82rem; color: var(--gray-600); }
.product-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.product-desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }

.option-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.size-options-inline {
  display: flex; gap: 0.75rem; margin-bottom: 1.25rem;
}
.size-opt-btn {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.size-opt-btn:hover { border-color: var(--navy); }
.size-opt-btn.selected { border-color: var(--navy); background: var(--navy); color: var(--white); }
.size-opt-btn.selected .sob-price { color: rgba(255,255,255,0.8); }
.sob-size { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; }
.sob-price { font-size: 0.78rem; color: var(--gray-600); margin-top: 2px; }

.qty-selector {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  width: fit-content; margin-bottom: 1.25rem; overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none; background: var(--gray-100);
  color: var(--navy);
}
.qty-btn:hover { background: var(--navy); color: var(--white); }
.qty-val {
  width: 46px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  border: none; border-left: 1.5px solid var(--gray-200); border-right: 1.5px solid var(--gray-200);
  font-size: 0.95rem;
}

.product-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.btn-add-cart {
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-buy-now {
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}
.btn-buy-now:hover { background: var(--navy-light); }

.shipping-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-badges-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.product-badge-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-800);
}
.product-badge-item strong { font-family: var(--font-head); font-size: 0.78rem; }

/* ── Product Tabs ── */
.product-tabs { padding: 2.5rem 0; background: var(--white); }
.tabs-nav {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2rem;
}
.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-600);
  border: none; background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--orange); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Reviews Detail */
.reviews-detail-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 2rem; align-items: start;
}
.rating-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.big-rating {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.rating-bars { margin-top: 1rem; }
.rating-bar-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
  font-size: 0.78rem;
}
.rating-bar-track {
  flex: 1; height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--star);
  border-radius: 3px;
}
.rating-bar-pct { width: 32px; text-align: right; color: var(--gray-600); }

/* You May Also Love */
.also-love { padding: 2.5rem 0; background: var(--cream); }
.also-love-slider {
  display: flex; gap: 1rem;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.also-love-slider .product-card { flex-shrink: 0; width: 210px; }

/* ─────────────────────────────────────────────────────────
   CART PAGE
───────────────────────────────────────────────────────── */
.cart-page { padding: 2.5rem 0; background: var(--gray-100); }
.cart-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.cart-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.shipping-progress {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.progress-text {
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.progress-text span { color: var(--orange); font-weight: 800; }
.progress-track {
  height: 6px; background: var(--gray-200);
  border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%; width: 50%;
  background: linear-gradient(to right, var(--orange), var(--gold));
  border-radius: 3px;
  transition: width 0.5s ease;
}
.cart-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow);
  margin-bottom: 0.75rem;
}
.cart-item-img {
  width: 90px; height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.cart-item-type { font-size: 0.78rem; color: var(--gray-600); margin-bottom: 6px; }
.cart-item-stock { font-size: 0.78rem; color: var(--green); font-weight: 600; }
.size-selector-inline {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  margin-bottom: 8px;
}
.cart-item-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  text-align: right;
  margin-bottom: 6px;
}
.cart-item-remove {
  font-size: 0.78rem;
  color: var(--orange);
  cursor: pointer;
  text-align: right;
  display: block;
  border: none; background: none;
  font-family: var(--font-body);
}

.order-summary-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky; top: 100px;
}
.order-summary-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--gray-800);
}
.summary-row.free { color: var(--green); font-weight: 700; }
.summary-divider { height: 1px; background: var(--gray-200); margin: 1rem 0; }
.summary-total {
  display: flex; justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.promo-form {
  display: flex; gap: 0;
  margin-bottom: 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.promo-form input {
  flex: 1; padding: 10px 12px;
  border: none; outline: none;
  font-family: var(--font-body);
  font-size: 0.83rem;
}
.promo-form button {
  padding: 10px 14px;
  background: var(--gray-100);
  border: none; border-left: 1.5px solid var(--gray-200);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.83rem;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.promo-form button:hover { background: var(--navy); color: var(--white); }
.checkout-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  justify-content: center;
}
.paypal-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: #FFC43A;
  color: #003087;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.paypal-btn:hover { background: #f0b429; }
.secure-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.payment-icons { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.payment-icon {
  padding: 4px 8px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-600);
}
.summary-perks { margin-top: 1.25rem; }
.summary-perk {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8rem;
  padding: 8px 0;
  border-top: 1px solid var(--gray-200);
}
.summary-perk .icon { font-size: 1.1rem; flex-shrink: 0; }
.summary-perk strong { font-family: var(--font-head); font-size: 0.8rem; color: var(--navy); display: block; }
.summary-perk span { color: var(--gray-600); }

/* Cart trust badges */
.cart-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 1rem;
}
.trust-badge {
  text-align: center;
}
.trust-badge .icon { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.trust-badge strong { font-family: var(--font-head); font-size: 0.78rem; color: var(--navy); display: block; }
.trust-badge span { font-size: 0.72rem; color: var(--gray-600); }

/* ─────────────────────────────────────────────────────────
   DYNAMIC FRIDGE MOCKUP
───────────────────────────────────────────────────────── */
.fridge-mockup-section {
    padding: 4rem 1rem;
    position: relative;
    display: block;
    width: 100%;
    clear: both;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}
.fridge-mockup-section h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 800;
}
.fridge-mockup-section p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.fridge-mockup-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.fridge-bg {
  width: 100%;
  height: auto;
  display: block;
}
.fridge-magnet-overlay {
  position: absolute;
  top: 14%;
  left: 29%;
  transform: translate(-50%, -50%);
  width: 10%;
  z-index: 10;
  transition: transform 0.3s ease;
}
.fridge-magnet-overlay:hover {
  transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
}
.fridge-magnet-overlay.landscape {
  width: 13%;
}

/* ─────────────────────────────────────────────────────────
   HAND MOCKUP GALLERY
───────────────────────────────────────────────────────── */
.hand-mockup-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
.hand-mockup-title {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.hand-mockup-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.hand-mockup-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.hand-mockup-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hand-mockup-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.hand-bg {
  width: 100%;
  height: auto;
  display: block;
}
.hand-mockup-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ── Palm template overlay (Template 1)
   White area is centered at ~50% left, ~49% top
   Width: ~63% of container ─────────────────────────────── */
.hand-magnet-overlay.palm {
    position: absolute;
    top: 49%;
    left: 51%;
    transform: translate(-50%, -50%) rotate(-1deg);
    width: 47%;
    border-radius: 5px;
    z-index: 10;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hand-magnet-overlay.palm:hover {
  transform: translate(-50%, -50%) scale(1.03);
}
/* Portrait adjustment for palm */
.hand-magnet-overlay.palm:not(.landscape) {
  width: 40%;
  top: 47%;
}

/* ── Pinch template overlay (Template 2)
   White area fills ~72% width, centered at ~42% left, ~45% top ── */
.hand-magnet-overlay.pinch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44%;
    border-radius: 5px;
    z-index: 10;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hand-magnet-overlay.pinch:hover {
  transform: translate(-50%, -50%) scale(1.03);
}
/* Portrait adjustment for pinch */
.hand-magnet-overlay.pinch:not(.landscape) {
  width: 46%;
  top: 43%;
}

/* =========================================================
   HOMEPAGE REDESIGN: City Swiper & Art Styles
========================================================= */

/* ── Wavy Dividers ── */
.wave-top {
  position: relative;
  margin-top: 4rem;
  padding-top: 4rem;
}
.wave-top::before {
  content: "";
  position: absolute;
  top: -40px; left: 0; right: 0; height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V95.8C52.16,112.5,108.5,116,162.7,110.12c58-5.32,114.5-22.35,172.6-35.34Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.wave-bottom {
  position: relative;
}
.wave-bottom::after {
  content: "";
  position: absolute;
  bottom: -40px; left: 0; right: 0; height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V95.8C52.16,112.5,108.5,116,162.7,110.12c58-5.32,114.5-22.35,172.6-35.34Z' fill='%23f4f6fa'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  transform: rotate(180deg);
}

/* ── Section Headers ── */
.section-header-centered {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header-centered .section-title {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: var(--navy);
}
.section-header-centered .section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
}

/* ── City Swiper ── */
.city-swiper {
  padding-bottom: 3rem !important;
  overflow: hidden;
}
.city-slide-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.city-slide-card:hover {
  transform: translateY(-5px);
}
.city-typo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}
.city-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  width: 100%;
}
.city-slide-text h3 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.city-slide-text p {
  color: #fff;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.city-slide-magnets {
  position: relative;
  width: 100%;
  height: 150px;
  margin-top: 2rem;
}
.magnet-showcase-img {
  position: absolute;
  width: 140px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.magnet-showcase-img:hover {
  transform: scale(1.1) translateY(-10px) !important;
  z-index: 10 !important;
}
.m-pos-0 { left: 50%; transform: translateX(-50%) rotate(-3deg); z-index: 3; top: 0; }
.m-pos-1 { left: 20%; transform: rotate(-10deg); z-index: 2; top: 20px; }
.m-pos-2 { right: 20%; transform: rotate(10deg); z-index: 1; top: 30px; }

/* Swiper Pagination/Nav overrides */
.swiper-pagination-bullet-active {
  background: var(--orange) !important;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--navy) !important;
  background: #fff;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: bold;
}

/* ── Shop By Art Style ── */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.style-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(4, 0, 55, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--orange);
}
.style-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(4, 0, 55, 0.12);
}
.style-card-header h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.style-card-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.style-card-magnets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.style-card-magnets img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.style-card-magnets img:hover {
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.2rem; }
  .shop-inner { grid-template-columns: 220px 1fr; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; }
  .hero-title { font-size: 2rem; }
  
  /* Shrink floating magnets to fit mobile */
  .magnet-float.m1 { width: 140px; top: 10px; right: 20px; }
  .magnet-float.m2 { width: 160px; top: 50px; right: 130px; }
  .magnet-float.m3 { width: 130px; top: 160px; right: 10px; }
  .magnet-float.m4 { width: 140px; top: 190px; right: 120px; }
  
  /* Wrap city grid instead of scrolling */
  .city-grid { 
    flex-wrap: wrap; 
    justify-content: center; 
    overflow-x: visible; 
  }
  .city-card, .city-card-view-all { 
    width: calc(50% - 0.5rem); 
  }
  .sizes-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .shop-inner { grid-template-columns: 1fr; }
  .filters-panel { display: none; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-inner { grid-template-columns: 1fr; }
  .cart-inner { grid-template-columns: 1fr; }
  .city-hero-inner { grid-template-columns: 1fr; }
  .city-about-inner { grid-template-columns: 1fr; }
  .reviews-detail-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-trust { grid-template-columns: repeat(2, 1fr); }
  .top-bar .container { gap: 1rem; }
  .top-bar-sep { display: none; }
  .header-inner { gap: 10px; }
  .logo { font-size: 1.3rem; }
  .header-actions { gap: 10px; }
  .cart-text { display: none; }
  .site-nav { overflow-x: auto; white-space: nowrap; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .shop-grid { grid-template-columns: 1fr; }
  .size-options { grid-template-columns: 1fr; }
  .magnet-float.m5 { display: none; }
}

/* ── QUICK VIEW MODAL ── */
.mm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mm-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mm-modal-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  overflow: hidden;
}

.mm-modal-overlay.active .mm-modal-content {
  transform: scale(1) translateY(0);
}

.mm-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.1);
  border: none;
  font-size: 24px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}

.mm-modal-close:hover {
  background: var(--primary);
  color: #fff;
}

.mm-modal-body {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .mm-modal-body {
    flex-direction: row;
  }
}

.mm-modal-image {
  flex: 1;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.mm-modal-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mm-modal-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mm-modal-info h3 {
  font-size: 1.5rem; /* Updated font size */
  line-height: 1.2; /* Updated line height */
  margin-bottom: 10px;
  color: var(--navy);
}

.mm-qv-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.mm-qv-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* --- FEEDBACK TWEAKS --- */
.header-nav a {
  color: #000 !important;
}

.hero-search-inline button[type="submit"] {
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Explore Best Sellers button */
.hero-buttons .btn-outline {
  background: #000 !important;
  color: #fff !important;
  border: 2px solid var(--orange) !important;
  font-weight: 400 !important;
}

.global-trust-bar {
  text-align: left;
}
.trust-bar-inner .tb-item {
  display: flex;
  align-items: center;
  text-align: left;
}

/* Popular Destinations */
.view-all-link {
  color: #0066cc !important;
}
.immersive-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.immersive-card .ic-content {
  position: relative;
  z-index: 2;
}
.immersive-card .ic-magnet {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: none;
}
.immersive-card:hover .ic-magnet {
  transform: translateY(-10px) scale(1.05);
}

/* Best Sellers */
.products-section {
  background: transparent !important;
  padding-bottom: 0 !important;
}
.products-section .section-title {
  text-align: left !important;
}

/* Built in Layers */
.built-in-layers {
  background: #fdfaf6 !important;
  padding-top: 2rem !important;
}

/* Shop by Style */
.style-showcase {
  padding-top: 2rem !important;
}

/* Ideal Size */
.sizes-section {
  background: #eef2f5 !important;
  color: var(--navy) !important;
}
.sizes-section h2, .sizes-section p, .sizes-section span {
  color: var(--navy) !important;
}
.sizes-section strong {
  color: var(--navy) !important;
}

/* WooCommerce Blocks Cart Layout Fix */
.wp-block-woocommerce-cart,
.wc-block-cart {
  width: 100% !important;
  max-width: 100% !important;
}
.wc-block-cart__submit-container {
  width: 100% !important;
}
.woocommerce-cart .entry-content > .alignwide {
  width: 100% !important;
  max-width: 1300px !important;
}

/* User specified width fix for cart wrapper */
body.page-template-default main, 
body.page-template-default .entry-content, 
body.page-template-default #content, 
body.single-post main, 
body.single-post .entry-content, 
body.single-post #content {
    width: 100%;
}

/* Checkout Button Fix */
.wc-block-cart__submit-button,
.woocommerce-cart .checkout-button,
.wc-block-components-checkout-place-order-button {
    background-color: var(--navy) !important;
    color: var(--white) !important;
    border-color: var(--navy) !important;
}
.wc-block-cart__submit-button:hover,
.woocommerce-cart .checkout-button:hover,
.wc-block-components-checkout-place-order-button:hover {
    background-color: #000 !important;
    color: var(--white) !important;
}

/* --- COMPREHENSIVE MOBILE OVERRIDES --- */
@media (max-width: 1024px) {
  /* Header Fixes */
  .header-inner {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 15px !important;
  }
  .header-inner .logo {
    order: 1;
    font-size: 1.2rem !important;
  }
  .header-actions {
    order: 2;
    gap: 8px !important;
  }
  .search-modal-trigger {
    padding: 6px 12px !important;
    font-size: 0 !important; /* Hide text */
  }
  .search-modal-trigger::before {
    content: "🔍";
    font-size: 1.2rem;
    display: block;
  }
  .header-nav {
    order: 3;
    width: 100% !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-bottom: 10px;
    justify-content: flex-start !important;
    gap: 15px !important;
    -webkit-overflow-scrolling: touch;
  }
  .cart-text {
    display: none !important;
  }

  /* Hero Section */
  .hero-inner { grid-template-columns: 1fr !important; text-align: center; }
  .hero-visual { height: 320px !important; margin-top: 1rem !important; overflow: visible; }
  
  /* Center floating magnets on mobile/tablet */
  .magnet-float.m1 { width: 130px !important; top: 10px !important; left: 50% !important; margin-left: 10px !important; right: auto !important; z-index: 4 !important; }
  .magnet-float.m2 { width: 150px !important; top: 30px !important; left: 50% !important; margin-left: -140px !important; right: auto !important; z-index: 5 !important; }
  .magnet-float.m3 { width: 140px !important; top: 130px !important; left: 50% !important; margin-left: -60px !important; right: auto !important; z-index: 10 !important; }
  .magnet-float.m4 { width: 130px !important; top: 140px !important; left: 50% !important; margin-left: 50px !important; right: auto !important; z-index: 6 !important; }
  .magnet-float.m5 { width: 130px !important; top: 100px !important; left: 50% !important; margin-left: -150px !important; right: auto !important; z-index: 3 !important; display: block !important; }
  
  /* Trust Bar (2x2 Grid) */
  .trust-bar-inner { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 20px 10px !important; align-items: start !important; }
  .trust-bar-inner .tb-item { flex-direction: column !important; text-align: center !important; gap: 8px !important; }
  
  /* 2-Column Product Grids */
  .city-grid, .product-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  
  /* 1-Column Editorial Sections & Destinations */
  .layers-inner, .sizes-inner, .steps-grid, .destinations-grid, .cob-inner { grid-template-columns: 1fr !important; gap: 2rem !important; text-align: center; }
  
  /* Shop by Style */
  .style-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .city-grid, .product-grid { gap: 6px !important; }
  .product-card-body { padding: 0.75rem !important; }
  .product-card-name { font-size: 0.95rem !important; }
  .product-card-footer { flex-direction: column !important; align-items: stretch !important; gap: 8px !important; }
  .product-card-footer .price { text-align: center; }
  .product-card-footer .btn-cart { width: 100% !important; border-radius: 6px !important; }
  .product-card-footer .btn-cart svg { margin: 0 auto; }
}

