/** Shopify CDN: Minification failed

Line 22:18 Expected identifier but found whitespace
Line 22:20 Unexpected "{"
Line 22:30 Expected ":"
Line 24:20 Expected identifier but found whitespace
Line 24:22 Unexpected "{"
Line 24:32 Expected ":"
Line 25:15 Expected identifier but found whitespace
Line 25:17 Unexpected "{"
Line 25:27 Expected ":"
Line 28:15 Expected identifier but found whitespace
... and 29 more hidden warnings

**/
/* ==========================================================================
   Baby G.O.A.T. Apparels - Base CSS
   Premium Kids Athletic & Lifestyle Theme
   ========================================================================== */

:root {
  --color-primary: {{ settings.color_primary | default: '#F5B82E' }};
  --color-primary-hover: #E0A320;
  --color-secondary: {{ settings.color_secondary | default: '#B85D19' }};
  --color-navy: {{ settings.color_dark_navy | default: '#0A0E17' }};
  --color-navy-dark: #05070C;
  --color-navy-light: #162133;
  --color-text: {{ settings.color_text | default: '#1E293B' }};
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-heading: {{ settings.color_heading | default: '#0A0E17' }};
  --color-bg: {{ settings.color_bg | default: '#FFFFFF' }};
  --color-bg-secondary: {{ settings.color_bg_secondary | default: '#F8FAFC' }};
  --color-border: {{ settings.color_border | default: '#E2E8F0' }};
  --color-sale-badge: {{ settings.color_sale_badge | default: '#DC2626' }};
  --color-star: #F5B82E;
  
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --page-width: {{ settings.page_width | default: 1360 }}px;
  --page-gutter: 20px;
  --border-radius: {{ settings.border_radius | default: 12 }}px;
  --button-radius: {{ settings.button_radius | default: 24 }}px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.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;
}

/* Layout Utilities */
.page-width {
  width: 100%;
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.page-width--narrow {
  max-width: 800px;
}

.page-width--fluid {
  max-width: 100%;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1, .h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2, .h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4, .h4 { font-size: 1.15rem; }
h5, .h5 { font-size: 1rem; }
h6, .h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header--flanked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

/* =======================================================
   GLOBAL BUTTON SYSTEM (Baby G.O.A.T. Standardized Styles)
   ======================================================= */
.btn,
button.btn,
a.btn,
input[type="submit"].btn,
.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  border-radius: var(--button-radius);
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}

/* Default Global Button: Gold Background (#d4a017), White Text (#ffffff), Gold Border (#d4a017) */
.btn,
.btn--primary,
.button,
.button--primary,
button.btn--primary,
a.btn--primary {
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border: 1px solid #d4a017 !important;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.25);
}

.btn:visited,
.btn--primary:visited,
.button:visited,
a.btn:visited,
a.btn--primary:visited {
  color: #ffffff !important;
}

/* Hover: Solid Black (#000000), White Text (#ffffff), Gold Border (#d4a017) */
.btn:hover,
.btn:focus,
.btn:active,
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active,
.button:hover,
.button:focus,
.button:active,
a.btn:hover,
a.btn:focus,
a.btn:active,
a.btn--primary:hover,
a.btn--primary:focus,
a.btn--primary:active {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Alternative Dark-Overlay Buttons: White Background, Black Text -> Hover Gold Background, White Text */
.btn--white,
.btn--overlay-white,
a.btn--white {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.btn--white:visited,
.btn--overlay-white:visited,
a.btn--white:visited {
  color: #000000 !important;
}

.btn--white:hover,
.btn--white:focus,
.btn--white:active,
.btn--overlay-white:hover,
.btn--overlay-white:focus,
.btn--overlay-white:active,
a.btn--white:hover,
a.btn--white:focus,
a.btn--white:active {
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

/* Secondary Button: Clean Black/Gold Outline */
.btn--secondary,
a.btn--secondary {
  background-color: white !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
}

.btn--secondary:visited,
a.btn--secondary:visited {
  color: #000000 !important;
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active,
a.btn--secondary:hover,
a.btn--secondary:focus,
a.btn--secondary:active {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-2px);
}

/* Navy / Black Solid Button */
.btn--navy,
a.btn--navy {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #d4a017 !important;
}

.btn--navy:hover,
.btn--navy:focus,
.btn--navy:active,
a.btn--navy:hover,
a.btn--navy:focus,
a.btn--navy:active {
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-2px);
}

.btn--pill {
  border-radius: 9999px !important;
}

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

.btn--sm {
  padding: 0.45rem 1.15rem !important;
  font-size: 0.8rem !important;
}

.btn--lg {
  padding: 0.85rem 2.4rem !important;
  font-size: 0.98rem !important;
}

.btn--disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  background-color: #E2E8F0 !important;
  border-color: #E2E8F0 !important;
  color: #94A3B8 !important;
}

/* Promo Marquee Bar */
.promo-bar {
  background-color: #6E5310;
  color: #FFFFFF;
  font-size: 0.8rem;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-bar__marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.promo-bar__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  animation: promo-marquee var(--marquee-speed, 30s) linear infinite;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.promo-bar__marquee:hover .promo-bar__track {
  animation-play-state: paused;
}

.promo-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-bar__badge {
  background-color: #F5B82E;
  color: #000000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-bar__link {
  color: inherit;
  transition: opacity var(--transition-fast);
}

.promo-bar__link:hover {
  opacity: 0.85;
}

.promo-bar__dot {
  color: #FFFFFF;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-left: 0.25rem;
}

@keyframes promo-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Main Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #000000;
  border-bottom: 1px solid #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transition: all var(--transition-fast);
}

.site-header--sticky {
  position: sticky;
  top: 0;
}

.site-header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 130px;
  width: 100%;
}

.site-header__left {
  justify-self: start;
  display: flex;
  align-items: center;
}

.site-header__center {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-header__logo-img {
  width: 120px;
  max-width: 135px;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.site-header__logo-img:hover {
  transform: scale(1.03);
}

.site-header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
  transition: all var(--transition-fast);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.site-header__icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  display: block;
}

.site-header__icon-btn:hover {
  color: #d4a017;
  transform: translateY(-1px);
}

.site-header__badge {
  position: absolute;
  top: 1px;
  right: -2px;
  background-color: #f5b82e;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.site-header__badge--wishlist {
  background-color: #ffffff;
  color: #000000;
}

.site-header__badge--cart {
  background-color: #f5b82e;
  color: #000000;
}

.mobile-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
}

/* Mobile Drawer Accordion Navigation */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav-drawer.is-active {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mobile-nav-drawer.is-active .mobile-nav-drawer__backdrop {
  opacity: 1;
}

.mobile-nav-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  z-index: 2;
  overflow-y: auto;
}

.mobile-nav-drawer.is-active .mobile-nav-drawer__panel {
  transform: translateX(0);
}

.mobile-nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-drawer__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
}

.mobile-nav-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text);
  background-color: var(--color-bg-secondary);
}

.mobile-accordion {
  padding: 1rem 0;
}

.mobile-accordion__item {
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.mobile-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-navy);
  text-align: left;
}

.mobile-accordion__header .icon-chevron {
  transition: transform var(--transition-fast);
}

.mobile-accordion__item.is-open > .mobile-accordion__header .icon-chevron {
  transform: rotate(180deg);
}

.mobile-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background-color: var(--color-bg-secondary);
}

.mobile-accordion__item.is-open > .mobile-accordion__content {
  max-height: 1000px;
}

.mobile-accordion__subitem {
  border-top: 1px solid rgba(226, 232, 240, 0.4);
}

.mobile-accordion__subheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.5rem 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
}

.mobile-accordion__subitem.is-open > .mobile-accordion__subheader .icon-chevron {
  transform: rotate(180deg);
}

.mobile-accordion__subcontent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #FFFFFF;
}

.mobile-accordion__subitem.is-open > .mobile-accordion__subcontent {
  max-height: 600px;
}

.mobile-accordion__link {
  display: block;
  padding: 0.65rem 1.5rem 0.65rem 2.75rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.mobile-accordion__link:hover {
  color: var(--color-primary);
}

.mobile-nav-drawer__footer {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-secondary);
}

/* Hero Categories (3 Cards: Infants, Toddlers, Youth) */
.hero-categories {
  padding: 1.5rem 0;
}

.hero-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 1.25rem;
}

.hero-category-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: var(--color-navy);
  box-shadow: var(--shadow-md);
  group: pointer;
}

.hero-category-card__image-wrap {
  width: 100%;
  height: 100%;
}

.hero-category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.hero-category-card:hover .hero-category-card__image {
  transform: scale(1.05);
}

.hero-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 15%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.94) 100%) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: background var(--transition-fast);
}

.hero-category-card__title {
  color: #ffffff !important;
  font-size: clamp(0.6rem, 3.7vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  line-height: 1.1;
}

.hero-category-card__subtitle {
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  opacity: 0.95;
}

.hero-category-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border: 1px solid #d4a017 !important;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.65rem 2.2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hero-category-card:hover .hero-category-card__btn,
.hero-category-card__btn:hover,
.hero-category-card__btn:focus,
.hero-category-card__btn:active {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

/* Category Strip / Horizontal Subcategory Bar (Auto-sliding Carousel) */
.category-strip {
  padding: 1.75rem 0;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-strip__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.category-strip__wrapper {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE and Edge */
  padding: 0.6rem 0;
  cursor: grab;
  user-select: none;
}

.category-strip__wrapper:active {
  cursor: grabbing;
}

/* Hide horizontal scrollbar completely across Chrome, Safari, Edge, Opera */
.category-strip__wrapper::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.category-strip__track {
  display: inline-flex;
  align-items: flex-start;
  white-space: nowrap;
  gap: 1.5rem;
  will-change: transform;
}

.category-strip__item {
  flex: 0 0 145px;
  width: 145px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.category-strip__thumb-wrap {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-color: var(--color-bg-secondary);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  background-clip: padding-box;
}

.category-strip__item:hover .category-strip__thumb-wrap {
  border-color: #d4a017;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.3);
}
@media(min-width:1500px){
  .category-strip__track {
    gap:4.5rem;
  }
  .category-strip__thumb-wrap {
    width: 200px;
    height: 200px;
  }
}
.category-strip__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-strip__title {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  white-space: normal;
  text-align: center;
  max-width: 130px;
  display: block;
  transition: color var(--transition-fast);
}

.category-strip__item:hover .category-strip__title {
  color: #d4a017;
}

/* SALE Starburst Badge styling */
.category-strip__item--sale .category-strip__thumb-wrap {
  background: radial-gradient(circle, #EF4444 0%, #DC2626 100%);
  border-color: #B91C1C;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transform: rotate(-5deg);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
  animation: pulse-badge 2s infinite ease-in-out;
}

.category-strip__item--sale:hover .category-strip__thumb-wrap {
  transform: rotate(0deg) scale(1.08);
  border-color: #d4a017;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.5);
}

.category-strip__item--sale .category-strip__title {
  color: #DC2626;
  font-weight: 900;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1) rotate(-5deg); }
  50% { transform: scale(1.05) rotate(-3deg); }
}

/* Slideshow Banner (For 3-Days Only / FLAT 60% OFF) */
.slideshow-section {
  padding: 1.5rem 0 2.5rem;
}

.slideshow {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background-color: #F8FAFC;
  box-shadow: var(--shadow-sm);
}

.slideshow__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slideshow__slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  background-size: cover;
  background-position: center;
}

.slideshow__slide--pattern {
  background-color: #FFFBEB;
  background-image: radial-gradient(#FDE68A 1.5px, transparent 1.5px), radial-gradient(#FDE68A 1.5px, #FFFBEB 1.5px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

.slideshow__content {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.slideshow__badge {
  display: inline-block;
  font-family: 'Brush Script MT', cursive, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #DC2626;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.slideshow__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.slideshow__heading span {
  color: var(--color-primary);
}

.slideshow__subheading {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slideshow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border: 1px solid #d4a017 !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: all var(--transition-fast);
}

.slideshow__btn:hover,
.slideshow__btn:focus,
.slideshow__btn:active {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.slideshow__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: all var(--transition-fast);
}

.slideshow__nav-btn:hover {
  background-color: #d4a017;
  color: #ffffff;
}

.slideshow__nav-btn--prev { left: 20px; }
.slideshow__nav-btn--next { right: 20px; }

.slideshow__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slideshow__dot {
  width: 24px;
  height: 5px;
  border-radius: 4px;
  background-color: rgba(10, 14, 23, 0.2);
  transition: all var(--transition-fast);
}

.slideshow__dot.is-active {
  background-color: #d4a017;
  width: 36px;
}

/* Promotional Banners (2 Large Split Cards: Graphic Hoodies & Champion Tees) */
.promotional-banners {
  padding: 2.5rem 0;
}

.promotional-banners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.promo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 4.75;
  width:100%;
  min-height: 560px;
  background-color: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.promo-card__image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.promo-card:hover .promo-card__image {
  transform: scale(1.03);
}

.promo-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.70) 75%,
    rgba(0, 0, 0, 0.92) 100%
  ) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem 2rem 2.75rem;
  text-align: center;
  border-radius: 14px;
  box-sizing: border-box;
}

.promo-card__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}

.promo-card__title {
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(0.6rem, 3.8vw, 3.4rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  line-height: 1.08 !important;
  margin: 0 0 14px 0 !important;
  padding: 0 0.5rem !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95) !important;
  word-break: break-word;
}

.promo-card__tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #DC2626 !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  padding: 8px 22px !important;
  border-radius: 6px !important;
  margin: 0 auto 20px auto !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.promo-card__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

.promo-card__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  padding: 0.85rem 3rem !important;
  border-radius: 9999px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  min-width: 175px !important;
  text-align: center !important;
}

.promo-card__btn:visited {
  color: #000000 !important;
}

.promo-card:hover .promo-card__btn,
.promo-card__btn:hover,
.promo-card__btn:focus,
.promo-card__btn:active {
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.5) !important;
}

/* Shop By Category Carousel */
.shop-by-category {
  padding: 2.5rem 0;
}

.category-carousel {
  position: relative;
}

.category-carousel__wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  scrollbar-width: none;
}

.category-carousel__wrapper::-webkit-scrollbar {
  display: none;
}

.category-badge-card {
  flex: 0 0 calc(100% / 6 - 1.25rem);
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.category-badge-card__circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 0.85rem;
  transition: all var(--transition-fast);
  overflow: hidden;
}

.category-badge-card:hover .category-badge-card__circle {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}



.category-badge-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-badge-card__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0A0E17;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: background-color var(--transition-fast);
}

.carousel-arrow:hover {
  background-color: var(--color-primary);
  color: var(--color-navy);
}

.carousel-arrow--left { left: -15px; }
.carousel-arrow--right { right: -15px; }

/* Featured Collection / Product Grid */
.featured-collection {
  padding: 2.5rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  position: relative;
}

.product-card:hover {
  border-color: rgba(245, 184, 46, 0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card__media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.product-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card__image--secondary {
  opacity: 0;
}

.product-card:hover .product-card__image--secondary {
  opacity: 1;
}

.product-card:hover .product-card__image--primary {
  transform: scale(1.03);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F1F5F9;
}

.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.product-card__badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card__badge--sale {
  background-color: var(--color-sale-badge);
  color: #FFFFFF;
}

.product-card__badge--sold-out {
  background-color: #64748B;
  color: #FFFFFF;
}

.product-card__actions {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 3;
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card__info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__vendor {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.product-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__title a:hover {
  color: var(--color-primary);
}

.product-card__price {
  margin-top: auto;
  font-size: 0.95rem;
}

/* Price Snippet */
.price__container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-item--sale {
  font-weight: 800;
  color: var(--color-navy);
}

.price-item--compare {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 0.85em;
}

.price-item--regular {
  font-weight: 800;
  color: var(--color-navy);
}

/* Testimonials ("Happy Customer" / Reviews Section) */
.testimonials-section {
  padding: 3.5rem 0 3.5rem;
  background-color: #FAFAFA;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #0A0E17;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.testimonials-subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.02em;
}

.testimonials-subtitle__stars {
  color: #d4a017;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.testimonials-slider__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonials-slider__wrapper {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE / Edge */
  padding: 0.75rem 0.25rem 1.25rem;
  cursor: grab;
  user-select: none;
}

.testimonials-slider__wrapper:active {
  cursor: grabbing;
}

/* Completely remove scrollbar */
.testimonials-slider__wrapper::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.testimonials-slider__track {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (3 * 1.5rem)) / 4);
  min-width: 260px;
  max-width: 320px;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.4);
}

.testimonial-card__product-thumb {
  width: 180px;
  height: 180px;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card__product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover .testimonial-card__product-img {
  transform: scale(1.04);
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #d4a017;
  margin-bottom: 0.65rem;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: #d4a017 !important;
  color: #d4a017 !important;
}

.testimonial-card__author-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.testimonial-card__author {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0A0E17;
}

.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background-color: #0A0E17;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-card__badge svg {
  width: 9px;
  height: 9px;
  stroke: #ffffff;
}

.testimonial-card__quote {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #475569;
  margin: 0 auto 0.85rem;
  max-width: 280px;
  text-align: center;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}

.testimonial-card__date {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: auto;
  padding-top: 0.4rem;
  display: block;
  font-weight: 500;
}

.testimonials__cta {
  text-align: center;
  margin-top: 2.25rem;
}

.testimonials__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border: 1px solid #d4a017 !important;
  font-family: var(--font-heading) !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  padding: 0.75rem 2.5rem !important;
  border-radius: 9999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.25) !important;
  transition: all var(--transition-fast) !important;
}

.testimonials__btn:visited {
  color: #ffffff !important;
}

.testimonials__btn:hover,
.testimonials__btn:focus,
.testimonials__btn:active {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
}

/* Full Footer */
.site-footer {
  background-color: #000000;
  color: #f5f5f5;
  padding: 4.5rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid #2a2a2a;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col__logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-col__logo-img {
  width: 120px;
  max-width: 130px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-col__brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-col__brand-title span {
  color: #d4a017;
}

.footer-col__desc {
  font-size: 0.9rem;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #d0d0d0;
}

.footer-contacts a {
  color: #f5f5f5;
  transition: color var(--transition-fast);
}

.footer-contacts a:hover {
  color: #d4a017;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-socials__link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.footer-socials__link:hover {
  background-color: #d4a017;
  border-color: #d4a017;
  color: #000000;
  transform: translateY(-2px);
}

.footer-col__heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links__item a {
  font-size: 0.9rem;
  color: #d0d0d0;
  transition: all var(--transition-fast);
}

.footer-links__item a:hover {
  color: #d4a017;
  padding-left: 4px;
}

.newsletter-form {
  margin-top: 1rem;
}

.newsletter-form__field {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-form__input {
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  padding: 0.85rem 7.5rem 0.85rem 1.25rem;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter-form__input::placeholder {
  color: #666666;
}

.newsletter-form__input:focus {
  border-color: #d4a017;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.35);
}

.newsletter-form__btn {
  position: absolute;
  right: 4px;
  background-color: #d4a017;
  color: #000000;
  border: none;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-form__btn:hover {
  background-color: #f5b82e;
  transform: scale(1.02);
}

.site-footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #d0d0d0;
}

.site-footer__copyright {
  color: #d0d0d0;
}

.site-footer__copyright a {
  color: #ffffff;
  font-weight: 600;
}

.site-footer__copyright a:hover {
  color: #d4a017;
}

/* Floating WhatsApp / Quick Contact */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Cart Slide-out Drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-active {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.cart-drawer.is-active .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-active .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.cart-drawer__shipping-bar {
  background-color: var(--color-bg-secondary);
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__image-wrap {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  flex-shrink: 0;
}

.cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  flex-grow: 1;
}

.cart-item__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
}

.cart-item__price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 0.25rem;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: #FFFFFF;
}

.cart-drawer__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
}

/* Responsive Media Queries */

/* Tablet & Mobile (<= 1024px) */
@media (max-width: 1024px) {
  .site-header__container {
    height: 110px;
  }
  
  .site-header__logo-img {
    width: 82px;
    max-width: 90px;
    max-height: 110px;
  }

  .site-header__right {
    gap: 1rem;
  }

  .footer-col__logo-img {
    width: 100px;
    max-width: 110px;
  }

  .site-header__nav {
    display: none;
  }
  
  .mobile-menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
  }
  
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-slider__track {
    gap: 1.25rem;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    min-width: 250px;
    max-width: none;
    padding: 20px 18px;
  }

  .testimonial-card__product-thumb {
    width: 155px;
    height: 155px;
    max-width: 155px;
  }

  .promotional-banners__grid {
    gap: 1.5rem;
  }

  .promo-card {
    min-height: 480px;
    aspect-ratio: 4 / 4.6;
  }

  .promo-card__overlay {
    padding: 1.5rem 1.5rem 2.25rem;
  }

  .promo-card__title {
    margin-bottom: 13px !important;
  }

  .promo-card__tag {
    font-size: 0.88rem !important;
    padding: 7px 18px !important;
    margin: 0 auto 18px auto !important;
  }

  .promo-card__footer {
    padding: 0 !important;
    margin: 0 !important;
  }

  .promo-card__btn {
    font-size: 0.9rem !important;
    padding: 0.8rem 2.6rem !important;
    min-width: 160px !important;
  }
  
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Tablet Portrait & Mobile (<= 768px) */
@media (max-width: 768px) {
  :root {
    --page-gutter: 15px;
  }
  
  .promo-bar {
    height: 36px;
    font-size: 0.72rem;
  }

  .promo-bar__item {
    gap: 0.5rem;
    font-size: 0.72rem;
  }

  .promo-bar__badge {
    font-size: 0.62rem;
    padding: 1px 6px;
  }

  .site-header__container {
    height: 100px;
  }
  
  .site-header__logo-img {
    width: 68px;
    max-width: 75px;
    max-height: 100px;
  }

  .site-header__right {
    gap: 0.65rem;
  }

  .site-header__icon-btn {
    width: 34px;
    height: 34px;
  }

  .site-header__icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .site-header__account-btn {
    display: none;
  }

  .footer-col__logo-img {
    width: 88px;
    max-width: 95px;
  }

  .hero-categories__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-category-card {
    aspect-ratio: 16 / 10;
  }
  
  .promotional-banners__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .promo-card {
    aspect-ratio: 4 / 4.5;
    min-height: 390px;
  }

  .promo-card__overlay {
    padding: 1.5rem 1.25rem 2rem;
  }

  .promo-card__title {
    margin-bottom: 12px !important;
  }

  .promo-card__tag {
    font-size: 0.82rem !important;
    padding: 6px 16px !important;
    margin: 0 auto 18px auto !important;
  }

  .promo-card__footer {
    padding: 0 !important;
    margin: 0 !important;
  }

  .promo-card__btn {
    font-size: 0.88rem !important;
    padding: 0.75rem 2.4rem !important;
    min-width: 155px !important;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .product-card__info {
    padding: 0.85rem;
  }
  
  .product-card__title {
    font-size: 0.85rem;
  }
  
  .slideshow__slide {
    min-height: 340px;
  }
  
  .slideshow__content {
    padding: 2rem 1rem;
  }
  
  .category-strip__track {
    gap: 1.1rem;
  }
  
  .category-strip__item {
    flex: 0 0 110px;
    width: 110px;
  }
  
  .category-strip__thumb-wrap {
    width: 76px;
    height: 76px;
  }
  
  .category-strip__title {
    font-size: 0.76rem;
    max-width: 105px;
  }
  
  .category-badge-card {
    min-width: 110px;
  }
  
  .category-badge-card__circle {
    width: 100px;
    height: 100px;
  }
  
  .testimonials-slider__track {
    gap: 1rem;
  }

  .testimonial-card {
    flex: 0 0 85%;
    min-width: 265px;
    max-width: 320px;
    padding: 20px 16px;
  }

  .testimonial-card__product-thumb {
    width: 140px;
    height: 140px;
    max-width: 140px;
  }

  .testimonial-card__quote {
    font-size: 0.85rem;
  }
  
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .site-footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .promo-card__overlay{
    aspect-ratio:1/1 !important;
  }
  .promo-card {
    min-height:210px !important;
  }
  .promotional-banners {
    padding:1.5rem 0 !important;
  }
  .shop-by-category{
    padding:1.5rem 0 !important;
  }
  .featured-collection{
    padding:1.5rem 0 !important;
  }
  .testimonials-section{
    padding:1.5rem 0 !important;
  }
  .shop-by-category .section-header--flanked{
    margin-bottom:5px !important;
  }
  .testimonials__cta{
    margin-top:5px;
  }
}
/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .product-card__actions {
    display: flex;
    justify-content: center;
  }

  .product-card__actions a {
    font-size: 12px;
    padding: 8px;
    width: 90% !important;
  }

  .product-card:hover .product-card__actions {
    opacity: 1;
    transform: translateY(0);
  }

  .product-card:hover .product-card__actions a {
    font-weight: 400 !important;
    opacity: 1;
    transform: translateY(0);
  }

  .hero-category-card {
    aspect-ratio: 16 / 16;
  }

  .site-header__container {
    height: 110px;
  }
  
  .site-header__logo-img {
    width: 62px;
    max-width: 110px;
    max-height: 110px;
  }

  .site-header__right {
    gap: 0.45rem;
  }

  .site-header__icon-btn {
    width: 32px;
    height: 32px;
  }

  .site-header__icon-btn svg {
    width: 19px;
    height: 19px;
  }

  .footer-col__logo-img {
    width: 82px;
    max-width: 90px;
  }
  
  .slideshow__heading {
    font-size: 2.25rem;
  }

  .promo-card__title {
    margin-bottom: 8px !important;
  }

  .promo-card__tag {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
    margin: 0 auto 12px auto !important;
  }

  .promo-card__footer {
    padding: 0 !important;
    margin: 0 !important;
  }

  .promo-card__btn {
    font-size: 0.8rem !important;
    padding: 0.55rem 1.5rem !important;
    min-width: 130px !important;
  }

  .category-strip__track {
    gap: 0.85rem;
  }

  .category-strip__item {
    flex: 0 0 98px;
    width: 98px;
  }

  .category-strip__thumb-wrap {
    width: 68px;
    height: 68px;
  }

  .category-strip__title {
    font-size: 0.72rem;
    max-width: 92px;
  }

  .testimonials-title {
    font-size: 1.85rem !important;
  }

  .testimonials-subtitle {
    font-size: 0.85rem;
  }

  .testimonial-card {
    flex: 0 0 88%;
    min-width: 245px;
    padding: 18px 14px;
  }

  .testimonial-card__product-thumb {
    width: 135px;
    height: 135px;
    max-width: 135px;
  }
}

/* ==========================================================================
   GLOBAL CONTRAST & BUTTON OVERRIDE ENFORCER (BABY G.O.A.T. STANDARD)
   ========================================================================== */

/* 1. Global Buttons: Consistent Styling and Legibility Across All Overlays */
.btn,
.button,
a.btn,
a.button,
button.btn,
button.button,
input[type="submit"].btn,
.hero-category-card__btn,
.promo-card__btn,
.slideshow__btn,
.product-card__btn {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

/* Default State: Gold #d4a017, White Text #ffffff, Gold Border #d4a017 */
.btn:not(.btn--white):not(.btn--overlay-white):not(.btn--secondary),
.btn--primary,
.button:not(.btn--white):not(.btn--secondary),
a.btn:not(.btn--white):not(.btn--secondary),
button.btn:not(.btn--white):not(.btn--secondary),
.hero-category-card__btn,
.slideshow__btn {
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border: 1px solid #d4a017 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
}

/* Visited Link Safeguard: Prevent browser from turning buttons blue/purple/dark */
.btn:not(.btn--white):not(.btn--secondary):visited,
.btn--primary:visited,
a.btn:not(.btn--white):not(.btn--secondary):visited,
.hero-category-card__btn:visited,
.slideshow__btn:visited,
.product-card__btn:visited {
  color: #ffffff !important;
}

/* Hover / Focus / Active State: Black #000000, White Text #ffffff, Gold Border #d4a017 */
.btn:not(.btn--white):not(.btn--secondary):hover,
.btn:not(.btn--white):not(.btn--secondary):focus,
.btn:not(.btn--white):not(.btn--secondary):active,
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active,
a.btn:not(.btn--white):not(.btn--secondary):hover,
a.btn:not(.btn--white):not(.btn--secondary):focus,
a.btn:not(.btn--white):not(.btn--secondary):active,
button.btn:not(.btn--white):not(.btn--secondary):hover,
.hero-category-card:hover .hero-category-card__btn,
.hero-category-card__btn:hover,
.hero-category-card__btn:focus,
.hero-category-card__btn:active,
.slideshow__btn:hover,
.slideshow__btn:focus,
.slideshow__btn:active,
.product-card__btn:hover,
.product-card__btn:focus,
.product-card__btn:active {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6) !important;
  transform: translateY(-2px);
}

/* Alternative Dark-Overlay Buttons (White default, Gold hover) */
.btn--white,
.btn--overlay-white,
a.btn--white {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
}

.btn--white:visited,
.btn--overlay-white:visited,
a.btn--white:visited {
  color: #000000 !important;
}

.btn--white:hover,
.btn--white:focus,
.btn--white:active,
.btn--overlay-white:hover,
.btn--overlay-white:focus,
.btn--overlay-white:active,
a.btn--white:hover,
a.btn--white:focus,
a.btn--white:active {
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-2px);
}

/* 2. Hero Category Cards Overlay & Text Contrast */
.hero-category-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 15%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.94) 100%) !important;
}

.hero-category-card__title {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

.hero-category-card__subtitle {
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95) !important;
}

/* 3. Promotional Banners Override Block (Graphic Hoodies & Champion Tees Cards) */
.promo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 440px;
  background-color: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.promo-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.70) 75%,
    rgba(0, 0, 0, 0.92) 100%
  ) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem 2rem 2.75rem;
  border-radius: 14px;
  box-sizing: border-box;
}

.promo-card__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}

.promo-card__title {
  color: #ffffff !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  line-height: 1.08 !important;
  margin: 0 0 14px 0 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95) !important;
}

.promo-card__tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #DC2626 !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  padding: 8px 22px !important;
  border-radius: 6px !important;
  margin: 0 auto 20px auto !important;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.promo-card__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

.promo-card__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  padding: 0.85rem 3rem !important;
  border-radius: 9999px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  min-width: 175px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
}

.promo-card__btn:visited {
  color: #000000 !important;
}

.promo-card:hover .promo-card__btn,
.promo-card__btn:hover,
.promo-card__btn:focus,
.promo-card__btn:active {
  background-color: #d4a017 !important;
  color: #ffffff !important;
  border-color: #d4a017 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.5) !important;
}

/* ==========================================================================
   DEMO-ONLY MODE STYLING SAFEGUARDS
   Preserve pointer cursor, hover effects, and crisp visual button appearance
   without any page navigation.
   ========================================================================== */
a[href="javascript:void(0)"],
a[role="button"],
button[type="button"],
.site-header__icon-btn,
.category-strip__item,
.category-badge-card,
.hero-category-card__image-wrap,
.product-card__media-link {
  cursor: pointer !important;
  text-decoration: none;
}

/* ==========================================================================
   ABOUT US PAGE STYLES (4-Section Simplified Luxury Layout)
   ========================================================================== */

/* Shared reusable label */
.about-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a017;
  background-color: rgba(212, 160, 23, 0.10);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.about-label--gold {
  color: #d4a017;
  background-color: rgba(212, 160, 23, 0.18);
  border: 1px solid rgba(212, 160, 23, 0.35);
}

.text-gold {
  color: #d4a017 !important;
}

/* ------------------------------------------------------------------
   SECTION 1 — HERO BANNER (Pure Solid Black #000000 Split Layout)
   ------------------------------------------------------------------ */
.about-hero {
  padding: 3.25rem 0 3.5rem;
  background-color: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero--pure-black {
  background-color: #000000 !important;
  background: #000000 !important;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 2;
}

.about-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-hero__text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  max-width: 460px;
}

.about-hero__image-wrap {
  position: relative;
  z-index: 2;
}

.about-hero__image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.about-hero__image {
  width: 100%;
  /* height: auto; */
  aspect-ratio:16/9 !important;

  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
}

/* ------------------------------------------------------------------
   SECTION 2 — OUR STORY (Minimal Editorial Story)
   ------------------------------------------------------------------ */
.about-story {
  padding: 3.5rem 0;
  background-color: #FAFAFA;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.25rem;
  align-items: center;
}

.about-story__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.about-story__image {
  width: 100%;
  /* height: auto; */
  aspect-ratio: 16 /9;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px;
}

.about-story__content {
  display: flex;
  flex-direction: column;
}

.about-story__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.7vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0A0E17;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.about-story__text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 0.85rem;
}

.about-story__statement {
  margin-top: 1.15rem;
  padding: 1.1rem 1.35rem;
  border-left: 4px solid #d4a017;
  background-color: rgba(212, 160, 23, 0.08);
  border-radius: 0 10px 10px 0;
}

.about-story__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 900;
  color: #0A0E17;
  font-style: italic;
}

/* ------------------------------------------------------------------
   MISSION & VALUES SECTION
   ------------------------------------------------------------------ */
.about-mission {
  padding: 3.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-mission__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.about-mission__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0A0E17;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.about-mission__text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
}

.about-mission__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.about-mission-card {
  background-color: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-mission-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(212, 160, 23, 0.12);
  color: #d4a017;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.about-mission-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0A0E17;
  margin-bottom: 0.5rem;
}

.about-mission-card__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748B;
  margin: 0;
}

/* ------------------------------------------------------------------
   WHY CHOOSE US SECTION
   ------------------------------------------------------------------ */
.about-why {
  padding: 3.5rem 0;
  background-color: #FAFAFA;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-why__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.about-why__image {
  width: 100%;
  /* height: auto; */
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px;
}

.about-why__content {
  display: flex;
  flex-direction: column;
}

.about-why__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0A0E17;
  margin-bottom: 1.35rem;
  line-height: 1.1;
}

.about-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-why__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.about-why__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-why__num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #d4a017;
  line-height: 1;
  min-width: 2rem;
  padding-top: 2px;
}

.about-why__item-body {
  flex: 1;
}

.about-why__item-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0A0E17;
  margin-bottom: 0.25rem;
}

.about-why__item-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748B;
  margin: 0;
}

.about-cta-reviews {
  background-color: #FAFAFA;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-statement--full-black {
  background-color: #000000;
}

.about-statement {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-statement__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-statement__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-statement__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(5, 5, 5, 0.82) 100%);
}

.about-statement__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.about-statement__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.about-reviews-block {
  padding: 3.25rem 0;
}

/* ==========================================================================
   ABOUT US — FULL MULTI-DEVICE RESPONSIVENESS (MOBILE, TABLET, DESKTOP)
   ========================================================================== */

.about-hero,
.about-story,
.about-mission,
.about-why,
.about-crew,
.about-categories,
.about-statement,
.about-reviews-block {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .about-hero {
    padding: 2.75rem 0 3rem;
  }
  .about-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .about-story__grid,
  .about-why__grid {
    gap: 2.25rem;
  }
  .about-mission__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 880px) {
  /* Hero Split Layout -> 1 Column Stack */
  .about-hero__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .about-hero__content {
    align-items: center !important;
    text-align: center !important;
  }
  .about-hero__heading {
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }
  .about-hero__text {
    font-size: 0.98rem !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem !important;
  }
  .about-hero__image {
    aspect-ratio: 16 / 11 !important;
  }

  /* Story Split Layout -> 1 Column Stack */
  .about-story {
    padding: 2.5rem 0 !important;
  }
  .about-story__grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }
  .about-story__image-wrap {
    order: 1 !important;
  }
  .about-story__content {
    order: 2 !important;
    text-align: center !important;
  }
  .about-story__image {
    aspect-ratio: 4 / 3 !important;
    object-position: center 20% !important;
  }

  /* Mission Cards -> 1 Column Stack */
  .about-mission__cards {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Why Choose Us -> 1 Column Stack */
  .about-why__grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  /* Crew & Categories -> Mobile Grid */
  .about-categories {
    padding: 2.5rem 0 !important;
  }

  /* Final Statement Banner & Reviews */
  .about-statement {
    min-height: 280px !important;
  }
  .about-statement__inner {
    padding: 2.5rem 1rem !important;
  }
  .about-statement__heading {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem) !important;
  }
  .about-reviews-block {
    padding: 2.5rem 0 !important;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 1.75rem 0 2.25rem !important;
  }
  .about-hero__heading {
    font-size: clamp(1.75rem, 8vw, 2.2rem) !important;
  }
  .about-hero__text {
    font-size: 0.9rem !important;
  }
  .about-hero__image {
    aspect-ratio: 16 / 12 !important;
    border-radius: 12px !important;
  }

  .about-story {
    padding: 2rem 0 !important;
  }
  .about-story__heading {
    font-size: clamp(1.4rem, 6.5vw, 1.8rem) !important;
  }
  .about-story__quote {
    font-size: 1.05rem !important;
  }

  .about-categories {
    padding: 2rem 0 !important;
  }

  .about-statement {
    min-height: 250px !important;
  }
  .about-statement__inner {
    padding: 2rem 0.75rem !important;
  }
  .about-statement__heading {
    font-size: clamp(1.35rem, 7vw, 1.85rem) !important;
  }
  .about-reviews-block {
    padding: 2rem 0 !important;
  }
}





/* ==========================================================================
   CONTACT US PAGE STYLES (3-Section Compact Premium Layout)
   ========================================================================== */

/* Section 1: Hero Banner */
.contact-hero {
  padding: 3.5rem 0 3.75rem;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero__content {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-hero__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin: 0;
}

/* Section 2: Contact Area */
.contact-area {
  padding: 3.5rem 0;
  background-color: #FFFFFF;
}

.contact-area__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

/* Info Card */
.contact-info-card {
  background-color: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.contact-info-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0A0E17;
  margin-bottom: 0.6rem;
}

.contact-info-card__text {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2.25rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(212, 160, 23, 0.12);
  color: #d4a017;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__body {
  display: flex;
  flex-direction: column;
}

.contact-info-item__label {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #94A3B8;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info-item__value {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0A0E17;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info-item__value:hover {
  color: #d4a017;
}

.contact-socials {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
}

.contact-socials__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #94A3B8;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.contact-socials__links {
  display: flex;
  gap: 0.75rem;
}

.contact-socials__link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #0A0E17;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.contact-socials__link:hover {
  background-color: #d4a017;
  color: #0A0E17;
  transform: translateY(-2px);
}

/* Form Card */
.contact-form-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0A0E17;
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0A0E17;
  margin-bottom: 0.45rem;
}

.contact-form__optional {
  font-size: 0.76rem;
  font-weight: 500;
  color: #94A3B8;
  text-transform: none;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.96rem;
  color: #0A0E17;
  background-color: #FAFAFA;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #d4a017;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

/* Alerts */
.contact-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.contact-form__alert--success {
  background-color: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
}

.contact-form__alert--error {
  background-color: #FEF2F2;
  border: 1px solid #EF4444;
  color: #991B1B;
}

/* Section 3: Final CTA */
.contact-final-cta {
  background-color: #000000;
  padding: 3.75rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  margin: 0 auto;
}

.contact-final-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.12;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 2.5rem 0 2.75rem;
  }
  .contact-area {
    padding: 2.5rem 0;
  }
  .contact-area__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 1.75rem 1.35rem;
  }
  .contact-final-cta {
    padding: 2.75rem 0;
  }
}

/* ==========================================================================
   COLLECTION / SHOP PAGE STYLES (Promo Banner, Toolbar, Filters, Views)
   ========================================================================== */

/* 1. Top Promotional Banner */
.collection-promo-banner {
  background-color: #000000;
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-promo-banner__link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.collection-promo-banner__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}
/* 2. Collection Header */
.main-collection-section {
  padding: 3rem 0 4rem;
  background-color: #FFFFFF;
}

.collection-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.25rem;
}

.collection-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0A0E17;
  margin-bottom: 0.5rem;
}

.collection-header__description {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #64748B;
}

/* 3. Toolbar & Controls */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.1rem 1.35rem;
  background-color: #FAFAFA;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}

.collection-toolbar__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.collection-toolbar__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.collection-toolbar__count {
  font-size: 0.88rem;
  color: #64748B;
}

.collection-toolbar__count strong {
  color: #0A0E17;
}

.collection-toolbar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.collection-toolbar__control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collection-toolbar__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0A0E17;
  white-space: nowrap;
}

.collection-toolbar__select {
  padding: 0.4rem 1.6rem 0.6rem 0.4rem !important;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0A0E17;
  background-color: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A0E17' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  transition: border-color var(--transition-fast);
}

.collection-toolbar__select:focus {
  outline: none;
  border-color: #d4a017;
}

/* Grid View Switcher */
.collection-view-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #E2E8F0;
  padding: 3px;
  border-radius: 8px;
}

.collection-view-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background-color: transparent;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.collection-view-btn.active,
.collection-view-btn:hover {
  background-color: #0A0E17;
  color: #FFFFFF;
}

/* 4. Active Filters Bar */
.collection-active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.collection-active-filters:empty {
  display: none;
}

.active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: #0A0E17;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
}

.active-filter-pill__remove {
  color: #d4a017;
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  margin-left: 2px;
}

.active-filter-pill__remove:hover {
  color: #000000;
}

.active-filters-clear-all {
  font-size: 0.82rem;
  font-weight: 800;
  color: #DC2626;
  text-decoration: underline;
  margin-left: 0.5rem;

}

/* 5. Main Layout (Filter Drawer Sidebar + Product Grid) */
.collection-main-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.25rem;
  align-items: start;
}

.collection-main-layout--no-sidebar {
  grid-template-columns: 1fr;
}

/* Filter Sidebar */
.collection-filter-sidebar {
  background-color: #FAFAFA;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.5rem;
  position: sticky;
  top: 90px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.collection-filter-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #E2E8F0;
}

.collection-filter-sidebar__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #0A0E17;
  margin: 0;
}

.collection-filter-sidebar__close {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #64748B;
}

.filter-group {
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E2E8F0;
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-group__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0A0E17;
  margin-bottom: 0.75rem;
}

.filter-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.filter-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #334155;
  cursor: pointer;
  user-select: none;
}

.filter-checkbox__input {
  width: 16px;
  height: 16px;
  accent-color: #d4a017;
  cursor: pointer;
}

.filter-checkbox__count {
  font-size: 0.8rem;
  color: #94A3B8;
}

.filter-price-range__inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-price-range__field {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  flex: 1;
}

.filter-price-range__currency {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-right: 2px;
}

.filter-price-range__input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  color: #0A0E17;
  outline: none;
}

.filter-form__actions {
  margin-top: 1.5rem;
}

/* 6. Product Grid Layout Switcher Classes */
.product-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-grid--list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-grid--list .product-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.product-grid--list .product-card__media-wrapper {
  margin-bottom: 0;
}

/* Pagination */
.collection-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 3rem;
}

.collection-pagination .page,
.collection-pagination .next,
.collection-pagination .prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #bfbfbfff;
  background-color: #bfbfbfff;
  color: #0A0E17;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.collection-pagination .page:hover,
.collection-pagination .next:hover,
.collection-pagination .prev:hover {
  background-color: #0A0E17;
  color: #fff;
  border-color: #0A0E17;
}
.collection-pagination .current {
  background-color: #0A0E17;
  color: #FFFFFF;
  border-color: #0A0E17;
}

/* .collection-pagination a:hover {
  background-color: #d4a017;
  color: #0A0E17;
  border-color: #d4a017;
} */

/* Empty State */
.collection-empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  background-color: #FAFAFA;
  border: 1px dashed #CBD5E1;
  border-radius: 16px;
}

.collection-empty-state__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.collection-empty-state__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #0A0E17;
  margin-bottom: 0.5rem;
}

.collection-empty-state__text {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 1.5rem;
}

/* Responsive Collection Styles */
@media (max-width: 1024px) {
  .product-grid--4col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .collection-promo-banner__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .collection-promo-banner__content {
    align-items: center;
  }
  .collection-main-layout {
    grid-template-columns: 1fr;
  }
  .collection-filter-sidebar {
    position: fixed;
    inset: 0;
    z-index: 9999;
    border-radius: 0;
    overflow-y: auto;
    display: none;
  }
  .collection-filter-sidebar.active {
    display: block;
  }
  .collection-filter-sidebar__close {
    display: block;
  }
}

@media (max-width: 640px) {
  .product-grid--4col,
  .product-grid--3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .collection-toolbar__right {
    justify-content: space-between;
  }
  .product-grid--list .product-card {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UNIFORM 3-COLUMN HEADER & SLIDE-OUT DRAWER STYLES
   ========================================================================== */

/* Always show Hamburger button across Desktop, Tablet, and Mobile */
.site-header__hamburger-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #FFFFFF !important;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}

.site-header__hamburger-btn:hover {
  color: #d4a017 !important;
}

.site-header__hamburger-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* Header Container Grid Layout */
.site-header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  width: 100%;
}

.site-header__left {
  justify-self: start;
  display: flex;
  align-items: center;
}

.site-header__center {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

/* Drawer Top Header Layout */
.drawer-header-left {
  display: flex;
  align-items: center;
}

.drawer-header-center {
  flex: 1;
  text-align: center;
}

.mobile-nav-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0A0E17;
}

.drawer-header-right {
  display: flex;
  align-items: center;
}

/* Drawer Footer Card Layout */
.drawer-footer-card {
  background-color: #FAFAFA;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.15rem;
  margin-bottom: 0.85rem;
  text-align: center;
}

.drawer-footer-login-btn {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.drawer-footer-info {
  font-size: 0.8rem;
  color: #64748B;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 0.75rem;
}

.drawer-footer-info strong {
  color: #0A0E17;
}

.drawer-footer-copy {
  font-size: 0.78rem;
  color: #94A3B8;
  text-align: center;
}

/* ==========================================================================
   SUB-COLLECTION BANNERS CARDS (Infants, Toddlers, Youth)
   ========================================================================== */

.sub-collection-banners {
  margin-bottom: 2.5rem;
}

.sub-collection-grid--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.sub-collection-grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sub-collection-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-height: 600px;
  aspect-ratio:1/1;
  width:100%;
  background-color: #000000;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sub-collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.sub-collection-card__media {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.collection-header{
  margin-block:0px !important;
}

.sub-collection-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-normal);
}

.sub-collection-card:hover .sub-collection-card__img {
  transform: scale(1.04);
}

.sub-collection-card__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 280px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  color: #FFFFFF;
}

.sub-collection-card--fallback {
  background: radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.2) 0%, rgba(0, 0, 0, 0.95) 75%);
}

.sub-collection-card__badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a017;
  background-color: rgba(212, 160, 23, 0.18);
  border: 1px solid rgba(212, 160, 23, 0.35);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
}

.sub-collection-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.sub-collection-card__btn {
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .sub-collection-grid--3col {
    gap: 1.25rem;
  }
  .sub-collection-card {
    min-height: 240px;
  }
}

/* ==========================================================================
   PRODUCT PAGE STYLES (Gallery, Swatches, Quantities, Value Cards, Tabs)
   ========================================================================== */

.main-product-section {
  padding: 3rem 0 5rem;
  background-color: #FFFFFF;
}

/* Base Desktop Layout (min-width: 881px) */
@media (min-width: 881px) {
  .product-main-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: start !important;
    margin-bottom: 4rem !important;
  }

  .product-details-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
    margin-bottom: 4rem !important;
  }

  .product-value-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.85rem !important;
  }

  .product-actions-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    align-items: center !important;
  }

  .product-secondary-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
  }

  .product-gallery-sticky {
    position: sticky !important;
    top: 90px !important;
  }
}

.product-main-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background-color: #FAFAFA;
  aspect-ratio: 1/1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-media__sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background-color: #DC2626;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.product-main-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Thumbnails Track */
.product-thumbnails-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.thumbnail-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  background-color: #FAFAFA;
  color: #0A0E17;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.thumbnail-nav-btn:hover {
  background-color: #0A0E17;
  color: #FFFFFF;
}

.product-thumbnails-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px;
}

.product-thumbnail-btn {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #E2E8F0;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  background: none;
  transition: all var(--transition-fast);
}

.product-thumbnail-btn.active,
.product-thumbnail-btn:hover {
  border-color: #0A0E17;
  box-shadow: 0 0 0 2px #d4a017;
}

.product-thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Information Box */
.product-info-box {
  display: flex;
  flex-direction: column;
}

.product-info__vendor {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 0.4rem;
}

.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0A0E17;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.product-info__price-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.product-info__compare-price {
  font-size: 1.25rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 700;
}

.product-info__price {
  font-size: 1.85rem;
  color: #0A0E17;
  font-weight: 900;
}

.product-info__badge {
  background-color: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: #d4a017;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 9999px;
}

.product-info__reviews {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.product-info__stars {
  color: #F5B82E;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.product-info__review-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748B;
}

.product-info__teaser {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E2E8F0;
}

/* Variant Options */
.variant-option-group {
  margin-bottom: 1.35rem;
}

.variant-option-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0A0E17;
  margin-bottom: 0.6rem;
  display: block;
}

.color-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.color-swatch-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #E2E8F0;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.color-swatch-btn.active,
.color-swatch-btn:hover {
  border-color: #0A0E17;
  box-shadow: 0 0 0 2px #d4a017;
  transform: scale(1.1);
}

.size-buttons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.size-btn {
  min-width: 44px;
  height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1.5px solid #CBD5E1;
  background-color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #0A0E17;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.size-btn.active,
.size-btn:hover {
  background-color: #0A0E17;
  color: #FFFFFF;
  border-color: #0A0E17;
}

/* Action Rows & Quantity Stepper */
.product-actions-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #CBD5E1;
  border-radius: 9999px;
  background-color: #FFFFFF;
  padding: 3px;
  flex-shrink: 0;
}

.quantity-stepper__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #0A0E17;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-stepper__btn:hover {
  background-color: #FAFAFA;
  color: #d4a017;
}

.quantity-stepper__input {
  width: 42px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0A0E17;
  outline: none;

  -moz-appearance: textfield;
}

.quantity-stepper__input::-webkit-outer-spin-button,
.quantity-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-add-btn {
  flex: 1;
  padding: 1rem 1.6rem !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  background-color: #d4a017 !important;
  color: #FFFFFF !important;
  border: 1px solid #d4a017 !important;
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.35) !important;
}

.product-add-btn:hover {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border-color: #d4a017 !important;
}

.product-buy-now-wrap {
  margin-bottom: 1.5rem;
}

.js-buy-now {
  padding: 0.95rem 1.6rem !important;
  font-family: var(--font-heading) !important;
  font-size: 0.9rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 2px solid #000000 !important;
}

.js-buy-now:hover {
  background-color: #d4a017 !important;
  color: #FFFFFF !important;
  border-color: #d4a017 !important;
}

/* Secondary Actions */
.product-secondary-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.product-secondary-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
}

/* Value Highlight Cards */
.value-card {
  background-color: #FAFAFA;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.1rem 0.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.value-card__icon {
  font-size: 1.5rem;
}

.value-card__text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0A0E17;
  line-height: 1.25;
}

/* Description & Care Cards Section */
.product-detail-card {
  background-color: #FAFAFA;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2.25rem;
}

.product-detail-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #0A0E17;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #d4a017;
  display: inline-block;
}

.product-detail-card__content {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #475569;
}

.product-detail-card__content ul {
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.care-instructions-list {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* Related Products Section */
.product-related-section {
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
}

.product-related-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #0A0E17;
  text-align: center;
  margin-bottom: 2.25rem;
}

/* Mobile Responsiveness (max-width: 880px) */
@media (max-width: 880px) {
  .product-main-layout,
  .product-details-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .product-gallery-sticky {
    position: relative !important;
    top: 0 !important;
  }
  .product-value-cards {
    grid-template-columns: 1fr !important;
  }
  .product-actions-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .quantity-stepper {
    justify-content: center !important;
  }
}

/* ==========================================================================
   GLOBAL OVERFLOW & MOBILE RESPONSIVENESS FIX
   Baby G.O.A.T Apparels
   ========================================================================== */

html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

/* Fix Hero Categories Grid & Cards on Mobile & Desktop */
.hero-categories {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-categories .page-width,
.sub-collection-cards-section .page-width {
  max-width: 1600px !important;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.hero-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  width: 100%;
}

@media (max-width: 880px) {
  .hero-categories__grid {
    gap: 1.25rem !important;
  }
  .hero-category-card {
    height: 380px !important;
    min-height: 320px !important;
    width: 100% !important;
  }
  .hero-category-card__title {
    word-break: break-word !important;
  }
  .hero-category-card__subtitle {
    font-size: 0.9rem !important;
  }

  .category-strip{
    padding-block:0px;
  }
}
@media (max-width: 576px) {
  .hero-category-card{
    height:auto !important;
    min-height:120px !important;
    aspect-ratio:1/1;
  }
  .hero-categories__grid{
    gap:5px !important
  }
}

/* Fix Shop By Category Carousel & Arrow Buttons on Mobile */
.category-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.category-carousel__wrapper {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.85rem 0.25rem;
  scrollbar-width: none;
}

.category-badge-card {
  flex: 0 0 auto !important;
  width: 145px !important;
  max-width: 145px !important;
  text-align: center;
  text-decoration: none;
}

.category-badge-card__circle {
  width: 135px !important;
  height: 135px !important;
  border-radius: 50% !important;
  background-color: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.15rem !important;
  margin-bottom: 0.85rem !important;
  transition: all var(--transition-fast) !important;
}

.category-badge-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

.category-badge-card__name {
  font-family: var(--font-heading) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: #0A0E17 !important;
  text-transform: uppercase !important;
  display: block;
}

@media (max-width: 640px) {
  .carousel-arrow {
    display: none !important; /* Hide floating arrows on mobile to prevent clipping & overlapping */
  }
  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.9rem) !important;
    text-align: center !important;
  }
}

/* 1. Mobile Small & Medium Devices (<640px) */
@media (max-width: 639px) {
  .page-width {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Header & Navigation */
  .site-header__wrapper {
    padding: 0.65rem 0.75rem !important;
  }
  .site-header__logo-img {
    max-width: 95px !important;
    height: auto !important;
  }
  .site-header__icons {
    gap: 0.6rem !important;
  }

  /* Product Grid: 2-column on mobile */
  .product-grid,
  .product-grid--4col,
  .product-grid--3col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }

  .product-card {
    border-radius: 12px !important;
  }
  .product-card__title {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }
  .product-card__price {
    font-size: 0.88rem !important;
  }
  .product-card__btn {
    padding: 0.55rem 0.75rem !important;
    font-size: 0.75rem !important;
  }

  /* Sub-Collection Banners */
  .sub-collection-grid--3col {
    gap: 1.25rem !important;
  }

  .collection-header{
    margin-bottom:1rem !important;
  }
  .sub-collection-card {
    min-height: 220px !important;
    border-radius: 14px !important;
  }
  .sub-collection-card__title {
    font-size: 1.4rem !important;
  }

  /* Collection Toolbar */
  .collection-toolbar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.85rem !important;
  }
  .collection-toolbar__right {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
  }
  .collection-toolbar__select {
    font-size: 0.8rem !important;
  }

  /* Product Detail Page */
  .product-gallery__thumbnails {
    gap: 0.4rem !important;
    overflow-x: auto !important;
    padding-bottom: 0.4rem !important;
  }
  .product-gallery__thumb {
    width: 64px !important;
    height: 64px !important;
    flex-shrink: 0 !important;
  }
  .product-title {
    font-size: 1.5rem !important;
  }
  .product-price-current {
    font-size: 1.4rem !important;
  }

  /* Homepage & Custom Sections */
  .hero-categories-grid,
  .shop-by-category-grid,
  .about-mission-grid,
  .about-crew-grid,
  .about-why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

/* 2. Tablet Devices (640px to 1024px) */
@media (min-width: 640px) and (max-width: 1024px) {
  .page-width {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .product-grid,
  .product-grid--4col {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
  }

  .sub-collection-grid--2col {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .product-main-layout {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
  }
}

/* 3. Touch target optimization across all mobile devices */
@media (pointer: coarse) {
  .btn,
  .size-btn,
  .swatch-dot,
  .site-header__icon-btn,
  .quantity-stepper__btn {
    min-height: 42px;
  }
}

/* ==========================================================================
   SUB COLLECTION CARDS & HERO CATEGORY CARDS (Matching Reference Design)
   ========================================================================== */
.sub-collection-grid {
  display: grid;
  gap: 0.4rem !important;
  width: 100%;
}

.sub-collection-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.sub-collection-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}


.hero-category-card {
  position: relative;
  overflow: hidden;
  /* height: 550px; */
  width:100%;
  min-height: 480px;
  border-radius: 0px;
  background-color: #0A0E17;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.sub-collection-card:hover,
.hero-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 14, 23, 0.18);
}

/* .sub-collection-card--active,
.hero-category-card--active {
  border: 2px solid #2563EB !important;
} */

.sub-collection-card__media,
.hero-category-card__image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sub-collection-card__img,
.hero-category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sub-collection-card:hover .sub-collection-card__img,
.hero-category-card:hover .hero-category-card__image {
  transform: scale(1.05);
}

.sub-collection-card__overlay,
.hero-category-card__overlay {
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 1.5rem 2rem;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0) 0%, rgba(10, 14, 23, 0.55) 40%, rgba(10, 14, 23, 0.88) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sub-collection-card__title,
.hero-category-card__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #FFFFFF !important;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sub-collection-card__subtitle,
.hero-category-card__subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #F8FAFC !important;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0.95;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.sub-collection-card__btn,
.hero-category-card__btn {
  display: inline-block;
  background-color: #D4A017 !important;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2.25rem !important;
  border-radius: 50px !important;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.35);
  transition: all 0.25s ease !important;
}

.sub-collection-card__btn:hover,
.hero-category-card__btn:hover {
  background-color: #B8860B !important;
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.45);
}


@media(min-width:1500px){
  .category-badge-card__circle{
    width: 200px !important;
    height: 200px !important;
  }
  .category-carousel__wrapper{
    gap:4rem !important;
  }
  .category-badge-card__name{
    font-size:1.2rem !important;
  }
  .testimonial-card__quote{
    font-size:1.3rem !important;
  }
  .testimonial-card__badge{
    font-size:1rem;
  }
  .testimonial-card__badge svg{
    width: 15px !important;
    height: 15px !important;
  }
  .testimonial-card__date{
    font-size:1.2rem;
  }
  .testimonial-card__stars svg{
    height:25px !important;
    width:25px !important;
  }
  .sub-collection-card {
    min-height:500px;
  }
}
@media(max-width:576px){
  .sub-collection-card {
    min-height: 100px !important;
  }
  .sub-collection-cards-section{
    margin-bottom:0px !important;
  }
  .sub-collection-card__title{
    font-size:0.6rem !important;
  }
  .hero-category-card__overlay{
    padding-inline:5px !important;
  }
  .promo-card__overlay{
    padding-inline:8px;
    padding-bottom:10px;
  }
}
@media(max-width:991.92px){
  .d-none{
  display:none !important;
}
.sub-collection-card__overlay{
  box-sizing: border-box !important;
  padding:10px !important;
  height:100%;
  min-height:100%;
}
}