/** Shopify CDN: Minification failed

Line 550:11 Expected identifier but found whitespace
Line 550:22 Unexpected ";"

**/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --wm-blue: #00008b;
  --wm-yellow: #fce13d;
  --wm-bg: #f8f9fa;
  --wm-red: #e63946;
  --wm-text: #1a1a1a;
  --wm-gray: #6b7280;
  --wm-light-gray: #e5e7eb;
}

body {
  background: var(--wm-bg) !important;
  color: var(--wm-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  padding: 0 24px;
  margin: 0 auto;
}

/* Accessibility: visually hidden but readable by screen readers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, #ff8c94 0%, var(--wm-red) 100%);
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.announcement-bar p {
  margin: 0;
}

.announce-close {
  display: none;
  /* Xtra doesn't seem to have a close button here */
}

/* Utility Bar */
.top-utility-bar {
  background: #fff;
  border-bottom: 1px solid var(--wm-light-gray);
}

.top-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 10px 0;
  color: var(--wm-gray);
}

.utility-service {
  color: var(--wm-text);
  font-weight: 600;
  text-decoration: none;
}

/* Main Header */
.site-header {
  background: linear-gradient(135deg, #4d4dff 0%, var(--wm-blue) 100%);
  color: #fff;
  padding: 15px 0;
}

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

.logo-main {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #fff !important;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.logo-x {
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.header-catalog .catalog-chip {
  background: var(--wm-yellow);
  color: var(--wm-blue);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-catalog .catalog-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 209, 0, 0.3);
}

.logo-sub {
  display: none;
}

.catalog-chip {
  background: var(--wm-yellow);
  color: var(--wm-blue);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-chip:hover {
  transform: translateY(-2px);
}

.header-search {
  flex: 1;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-search input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 0;
  width: 100%;
  font-size: 14px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.header-search button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

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

.header-icon {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}

.cart-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}

/* Lower Nav */
.lower-nav {
  background: #fff;
  border-bottom: 1px solid var(--wm-light-gray);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--wm-text);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--wm-blue) !important;
  text-decoration: underline;
  text-underline-offset: 5px;
  opacity: 1 !important;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  color: #fff;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

/* Sub-Navigation Bar */
.wm-sub-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 0 20px 40px;
  overflow-x: auto;
  scrollbar-width: none;
  /* Hide scrollbar for clean look */
}

.wm-sub-nav::-webkit-scrollbar {
  display: none;
}

.wm-sub-nav a {
  text-decoration: none;
  color: var(--wm-text);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s ease;
  opacity: 1 !important;
}

.wm-sub-nav a:hover {
  color: var(--wm-text) !important;
  text-decoration: underline !important;
  text-underline-offset: 8px;
  opacity: 1 !important;
}

.nav-badge-red {
  background: var(--wm-red);
  color: #fff !important;
  padding: 4px 12px;
  border-radius: 2px;
}

.nav-badge-blue {
  background: var(--wm-blue);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px !important;
}

/* Complex Hero Grid */
.wm-hero-complex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: 600px;
  gap: 10px;
}

.wm-hero-col-split {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.wm-hero-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.wm-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.wm-hero-card:hover .wm-hero-bg {
  transform: scale(1.1);
}

.wm-hero-card:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  z-index: 2;
}

.wm-hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  z-index: 3;
}

.wm-hero-overlay--left {
  align-items: flex-start;
  text-align: left;
}

.wm-hero-eyebrow {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
}

.wm-hero-card h3 {
  font-size: 36px;
  margin: 0 0 15px;
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

.wm-hero-card h2 {
  font-size: 56px;
  margin: 0 0 20px;
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

.wm-hero-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--wm-yellow);
}

.wm-hero-btn {
  background: linear-gradient(135deg, #fff9db 0%, var(--wm-yellow) 100%);
  color: var(--wm-blue);
  border: none;
  padding: 14px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  align-self: flex-start;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(252, 225, 61, 0.2);
}

.wm-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(252, 225, 61, 0.4);
}

.wm-pill-white {
  background: linear-gradient(to bottom, #ffffff 0%, #f3f4f6 100%);
  color: #111;
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
}

.wm-pill-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: #fff;
}

.wm-pill-yellow {
  background: linear-gradient(135deg, #fff9db 0%, var(--wm-yellow) 100%);
  color: var(--wm-blue);
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(252, 225, 61, 0.2);
}

.wm-pill-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(252, 225, 61, 0.4);
}



.wm-product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.wm-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.wm-product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wm-product-form {
  margin-top: auto;
}

.wm-btn-cart {
  background: linear-gradient(to bottom, #ffffff 0%, #f3f4f6 100%);
  color: var(--wm-blue);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 10px 0;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.wm-btn-cart:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.wm-btn-buy {
  background: linear-gradient(135deg, #fff9db 0%, var(--wm-yellow) 100%);
  color: var(--wm-blue);
  border: none;
  padding: 12px 0;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(252, 225, 61, 0.2);
}

.wm-btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(252, 225, 61, 0.4);
}

.wm-badge-blue-small {
  background: var(--wm-blue);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .wm-hero-complex-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .wm-hero-card {
    height: 400px;
  }

  .wm-hero-col-split {
    grid-template-rows: 300px 300px;
  }
}

align-self: flex-start;
background: var(--wm-yellow);
color: var(--wm-blue);
border: none;
padding: 14px 32px;
border-radius: 100px;
font-weight: 700;
cursor: pointer;
font-size: 15px;
}

.wm-category-banner--wide {
  grid-column: span 2;
  grid-row: span 2;
}

/* Collections Strip */
.wm-collections-strip {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.wm-collections-strip::-webkit-scrollbar {
  display: none;
}

.wm-col-item {
  min-width: 160px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease;
}

.wm-col-item:hover {
  transform: translateY(-5px);
}

.wm-col-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  background: #f3f4f6;
}

.wm-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wm-col-item:hover .wm-col-img {
  transform: scale(1.1);
}

.wm-col-item span {
  color: var(--wm-text);
  font-weight: 700;
  font-size: 14px;
}

/* Product Badges Refinement */
.product-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-blue {
  background: #0a16b5;
  color: #fff;
}

.badge-red {
  background: #e63946;
  color: #fff;
}

/* Product Grids & Sliders */
.wm-slider-wrapper {
  position: relative;
  width: 100%;
}

.wm-product-row {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px 0 40px;
}

.wm-product-row::-webkit-scrollbar {
  display: none;
}

.wm-product-card,
.product-card {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.wm-product-row .wm-product-card {
  width: calc(20% - 16px);
  min-width: calc(20% - 16px);
  flex: 0 0 auto;
  scroll-snap-align: start;
}

@media (max-width: 1200px) {
  .wm-product-row .wm-product-card {
    width: calc(25% - 15px);
    min-width: calc(25% - 15px);
  }
}

@media (max-width: 1024px) {
  .wm-product-row .wm-product-card {
    width: calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .wm-product-row .wm-product-card {
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

.wm-slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
  cursor: pointer;
  z-index: 10;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  color: #000;
}

.wm-slider-arrow:hover {
  background: var(--wm-blue);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.wm-slider-arrow--prev {
  left: -50px;
}

.wm-slider-arrow--next {
  right: -50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Cards */
.wm-product-card,
.product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  flex: 0 0 20%;
  min-width: 20%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.wm-product-card:hover,
.product-card:hover {
  transform: translateY(-5px);
}

.wm-product-image,
.product-image {
  border-radius: 4px;
  margin-bottom: 15px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f4f6;
}

.wm-product-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wm-product-card:hover .wm-product-image img,
.product-card:hover .product-image img {
  transform: scale(1.1);
}

.wm-product-card h4,
.product-card h3 {
  font-size: 16px;
  margin: 10px 0 5px;
  font-weight: 600;
  line-height: 1.4;
}

.wm-product-card h4 a,
.product-card h3 a {
  color: var(--wm-text);
  text-decoration: none;
}

.product-price,
.wm-product-card strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--wm-blue);
  margin-top: auto;
}

.price-original {
  font-size: 13px;
  color: var(--wm-gray);
  text-decoration: line-through;
  margin-left: 8px;
}

.wm-delivery,
.product-badge {
  background: #ecfdf5;
  color: #059669;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin: 8px 0;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--wm-red);
  color: #fff;
}

/* Collection Header */
.collection-header {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--wm-light-gray);
  margin-bottom: 40px;
}

.collection-header h1 {
  font-size: 48px;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--wm-gray);
}

/* Footer */
.site-footer {
  background: #fff;
  color: var(--wm-text);
  padding: 100px 0 40px;
  border-top: 1px solid var(--wm-light-gray);
  margin-top: 120px;
}

.site-footer h4 {
  color: var(--wm-text) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

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

.footer-col p {
  font-size: 14px;
  color: var(--wm-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact-item {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-contact-item strong {
  color: var(--wm-text);
}

.footer-col--support-rep {
  position: relative;
  min-height: 300px;
}

.footer-contact-wrap {
  position: relative;
  z-index: 10;
  margin-top: 20px;
}

.footer-contact-item {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.footer-contact-item strong {
  color: var(--wm-text);
  text-shadow: 0 0 12px #fff, 0 0 4px #fff;
  /* Dual glow for extra readability */
}

.footer-rep-img {
  width: 100px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-5px);
  margin: 0;
}

.indian-brand {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--wm-text);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.indian-brand:hover {
  opacity: 1;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--wm-text) !important;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--wm-blue) !important;
}

.footer-social-strip {
  display: flex;
  gap: 20px;
  font-size: 24px;
}

.footer-social-strip a {
  text-decoration: none;
  color: var(--wm-text);
}

.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--wm-light-gray);
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-btn-subscribe {
  background: linear-gradient(135deg, #4d4dff 0%, #00008b 100%);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 139, 0.2);
}

.footer-btn-subscribe:hover {
  background: linear-gradient(135deg, #0000cd 0%, #0000ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 139, 0.3);
}

.site-footer {
  background: #ffffff;
  padding: 80px 0 40px;
  border-top: 1px solid var(--wm-light-gray);
  margin-top: 120px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--wm-light-gray);
  filter: grayscale(1);
  opacity: 0.4;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--wm-light-gray);
  font-size: 12px;
  color: var(--wm-gray);
}

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

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

/* Blog Section */
.wm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.wm-blog-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.wm-blog-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wm-blog-card {
  overflow: hidden;
  border-radius: 4px;
}

.wm-blog-card:hover .wm-blog-img {
  transform: scale(1.1);
}

.wm-blog-meta {
  font-size: 13px;
  color: var(--wm-gray);
  margin-bottom: 8px;
}

.wm-blog-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--wm-text);
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.wm-blog-link {
  color: var(--wm-blue);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

/* Triple Grid Section */
.wm-triple-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.wm-grid-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 450px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.wm-grid-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.wm-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wm-grid-card:hover .wm-grid-bg {
  transform: scale(1.1);
}

.wm-grid-card:hover .wm-grid-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.wm-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wm-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 40px;
  z-index: 2;
}

.wm-grid-overlay h2 {
  font-size: 48px;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 25px;
  color: #fff;
}

.wm-grid-overlay--bottom {
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.wm-grid-overlay--bottom h3 {
  font-size: 32px;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  color: #fff;
}

.wm-btn-yellow {
  background: var(--xtra-yellow);
  color: var(--xtra-blue);
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.wm-btn-yellow:hover {
  transform: scale(1.05);
}

.banner-btn-small {
  background: #fff;
  color: var(--xtra-text);
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-btn-small:hover {
  background: var(--xtra-blue);
  color: #fff;
}

@media (max-width: 1024px) {
  .wm-triple-grid {
    grid-template-columns: 1fr;
  }

  .wm-grid-card {
    height: 400px;
  }
}

.wm-testimonial-box {
  transition: all 0.5s ease;
}

.wm-testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.wm-testimonial-img {
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.wm-testimonial-box:hover .wm-testimonial-img {
  transform: scale(1.1);
}

.wm-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.wm-pin span {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.wm-pin:hover {
  transform: scale(1.2);
  background: var(--xtra-blue);
}

.wm-pin:hover span {
  color: #fff;
}

.wm-pin-tooltip {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  pointer-events: none;
}

.wm-pin:hover .wm-pin-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.wm-pin-tooltip img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.wm-pin-info {
  flex: 1;
  text-align: left;
}

.wm-pin-info h4 {
  margin: 0 0 4px;
  font-size: 13px;
  color: #111;
  font-weight: 700;
}

.wm-pin-info p {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--xtra-blue);
  font-weight: 800;
}

.wm-pin-info a {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--xtra-red);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.wm-pin-info a:hover {
  text-decoration: underline;
}

.wm-pin-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff;
}

/* Downward positioning for pins near the top edge */
.wm-pin--down .wm-pin-tooltip {
  bottom: auto;
  top: 40px;
  transform: translateX(-50%) translateY(-10px);
}

.wm-pin--down:hover .wm-pin-tooltip {
  transform: translateX(-50%) translateY(0);
}

.wm-pin--down .wm-pin-tooltip::after {
  bottom: auto;
  top: -16px;
  border-top-color: transparent;
  border-bottom-color: #fff;
}


.wm-testimonial-collage {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.collage-item {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.collage-item--1 {
  grid-column: 1;
  grid-row: 1;
}

.collage-item--2 {
  grid-column: 2;
  grid-row: 1;
}

.collage-item--3 {
  grid-column: 3;
  grid-row: 1 / span 2;
  border-radius: 4px;
}

.collage-item--4 {
  grid-column: 1;
  grid-row: 2;
}

.collage-item--5 {
  grid-column: 2;
  grid-row: 2;
}

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

  .wm-testimonial-collage {
    height: 300px;
  }
}

.wm-feature-gift:hover .wm-feature-gift__bg {
  transform: scale(1.1);
}

.wm-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.wm-swatch:hover {
  transform: scale(1.2);
}

.wm-product-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wm-slider-arrow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================================================
   GLOBAL MOBILE-FIRST RESPONSIVE ARCHITECTURE
   ========================================================================== */

/* Mobile Utilities */
.hide-on-mobile { display: block; }
.show-on-mobile { display: none; }

@media (max-width: 768px) {
  .hide-on-mobile { display: none !important; }
  .show-on-mobile { display: block !important; }

  /* Fluid Typography & Scaling */
  h1 { font-size: clamp(32px, 8vw, 72px) !important; }
  h2 { font-size: clamp(24px, 6vw, 48px) !important; }
  h3 { font-size: clamp(20px, 5vw, 36px) !important; }
  
  /* Container Padding Reduction for Max Screen Real Estate */
  .container {
    padding: 0 15px !important;
  }

  /* Global Section Spacing Reduction */
  .wm-grid-v2, .wm-collection-hero-v3, section[style*="margin-top: 120px"] {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  /* Responsive Hero Layout & Typography */
  .wm-hero-grid-desktop {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 0 !important;
  }

  .wm-hero-title-responsive {
    font-size: clamp(32px, 8vw, 72px) !important;
  }

  .wm-hero-subtitle-responsive {
    font-size: clamp(16px, 4vw, 22px) !important;
    margin: 0 auto 30px !important;
  }

  .wm-hero-btn-responsive {
    padding: 12px 30px !important;
    font-size: 14px !important;
    margin: 0 auto !important;
  }

  .wm-hero-scroll-mobile::-webkit-scrollbar {
    display: none;
  }

  /* Footer Spacing Optimization */
  .footer-bottom {
    margin-top: 20px !important;
    padding-top: 15px !important;
    flex-direction: column !important;
    text-align: center !important;
  }
  .footer-bottom .logo-main { margin: 0 auto; }

  /* Announcement Bar Mobile Optimization */
  .announcement-bar p {
    font-size: 10px !important;
    padding: 0 10px;
    letter-spacing: 0;
  }

  /* Prevent Header Link Wrapping */
  .wm-row-head {
    align-items: center !important;
    gap: 10px;
  }
  .wm-row-head h2 {
    font-size: 20px !important;
    line-height: 1.2 !important;
    flex: 1;
  }
  .wm-row-head a {
    white-space: nowrap !important;
    font-size: 14px !important;
    flex-shrink: 0;
  }

  /* Sub-Nav Layout */

  .wm-sub-nav {
    padding: 15px 15px !important;
    gap: 15px !important;
  }

  /* Universal Grid Stacking */
  .wm-triple-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Generic Inner Page Grids */
  .wm-grid-1-2, .wm-grid-1-1, .wm-grid-2-1, .wm-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    height: auto !important;
    min-height: auto !important;
  }

  /* Override fixed padding on inner containers */
  div[style*="padding: 100px 0"] {
    padding: 50px 0 !important;
  }
  /* Universal Grid Stacking */
  .wm-triple-grid, .wm-hero-complex-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 15px !important;
    padding-bottom: 10px;
    grid-template-columns: none !important;
  }

  .wm-triple-grid .wm-grid-card, 
  .wm-hero-complex-grid .wm-hero-card,
  .wm-hero-complex-grid .wm-hero-col-split {
    flex: 0 0 85% !important;
    scroll-snap-align: start;
    height: 400px !important;
  }

  .wm-hero-col-split {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    height: auto !important;
  }

  .wm-hero-complex-grid .wm-hero-col-split .wm-hero-card {
    flex: 0 0 auto !important;
    height: 192.5px !important; /* Half height minus gap */
  }
  
  div[style*="padding: 60px 50px"] {
    padding: 30px 20px !important;
  }

  /* Complex Grid Heights */
  .wm-hero-card {
    height: 400px !important;
  }

  /* Horizontal Product Sliders (Touch Optimized) */
  .wm-product-row {
    gap: 15px;
    padding-bottom: 20px;
    scroll-padding-left: 15px;
  }

  .wm-product-row .wm-product-card {
    width: calc(65% - 10px) !important; /* Show 1.5 cards */
    min-width: calc(65% - 10px) !important;
  }

  /* Horizontal Blog Sliders (Touch Optimized) */
  .wm-blog-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 15px !important;
    padding-bottom: 20px;
    grid-template-columns: none !important; /* Override desktop grid */
  }

  .wm-blog-grid .wm-blog-card {
    flex: 0 0 75% !important;
    scroll-snap-align: start;
  }

  /* Hide Slider Arrows on Mobile (Rely on touch scrolling) */
  .wm-slider-arrow {
    display: none !important;
  }

  /* Footer Mobile Stacking */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: left !important;
  }

  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px !important;
    margin-bottom: 10px !important;
  }

  .footer-links {
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  .footer-contact-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  /* Brand Partner Strip */
  .wm-brand-strip__logos {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    gap: 20px !important;
  }

  .wm-brand-strip__logos::-webkit-scrollbar {
    display: none;
  }

  .wm-brand-logo {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
  }

  /* Collection Page Adjustments */
  .wm-collection-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 40px 0 !important;
  }

  .wm-collection-hero-inner .hero-content {
    padding: 20px 0 !important;
  }

  .wm-collection-hero-inner .hero-image-wrap {
    min-height: 300px !important;
    border-radius: 20px !important;
  }

  .wm-story-triple-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .wm-story-triple-grid .story-banner {
    height: 250px !important;
  }

  .wm-product-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 10px !important;
  }

  /* Pin Tooltip Mobile Optimizations */
  .wm-pin-tooltip {
    width: 160px !important;
    padding: 8px !important;
  }
  .wm-pin-tooltip img {
    width: 45px !important;
    height: 45px !important;
  }
  .wm-pin-info h4 {
    font-size: 11px !important;
  }
  .wm-pin-info p {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }
  
  /* Prevent clipping on mobile */
  .wm-feature-gift, .wm-feature-gift__visual {
    overflow: visible !important;
  }

  /* Responsive Header Overrides */
  .site-header {
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .header-inner {
    padding: 10px 0 !important;
    gap: 10px !important;
  }

  .header-actions {
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    max-width: none !important;
    gap: 10px !important;
  }

  .header-actions a, 
  .header-actions button {
    min-width: unset !important;
    padding: 0 !important;
  }
}