/** Shopify CDN: Minification failed

Line 264:1 Unexpected ","
Line 973:9 Unexpected "/"
Line 1033:0 Expected "}" to go with "{"

**/
/* ================================================================= */
/* 1. VARIABLES & RESETS                                             */
/* ================================================================= */
:root {
  /* Layout Dimensions */
  --container-width: 1200px;
  --site-gutter: 24px;
  --header-height-desktop: 110px;
  --header-height-mobile: 60px;

  /* Colors */
  --bg-body: #FFFFFF;
  --bg-card: #FFFFFF
  --bg-white: #ffffff;
  --text-main: #111111;
  --text-black: #000000;
  --border-light: rgba(0,0,0,0.05);
}

/* Base Resets */
html {
  overflow-x: hidden; /* Prevents horizontal scroll */
  height: 100%;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  padding-top: var(--header-height-desktop);
  overflow-x: hidden;
  height: auto;
  position: relative;
}

/* Ensure consistent backgrounds */
#MainContent, .shopify-section, .page-container, .wrapper, main {
  background-color: var(--bg-body);
  overflow: visible !important;
}

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

/* ================================================================= */
/* 2. HEADER & NAVIGATION                                            */
/* ================================================================= */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--bg-body); /* Match body background */
  border-bottom: none;
  box-shadow: none;
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 28px var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.site-logo {
  font-family: serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-black);
  text-decoration: none;
  white-space: nowrap;
  margin: 0 20px;
}

.site-logo-image {
  height: 52px;
  width: auto;
  display: block;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-black);
  text-decoration: none;
}

.nav-link:hover { opacity: 0.6; }

/* Container for Account and Cart */
/* Container for the icons */
.header-utilities {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

/* Base link styling to remove blue color/underlines */
.header-utility-link {
  color: #000 !important;
  text-decoration: none !important;
  position: relative;
  display: flex;
  align-items: center;
}

/* Icon Sizing */
.header-utility-link svg {
  width: 14x; /* Adjust size to match your preference */
  height: 14px;
  display: block;
}

/* The Black Notification Badge */
.cart-count {
  position: absolute;
  bottom: -1px;
  right: -3px;
  background-color: #000;
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

/* Hides the 'Account' text from view but keeps it for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Hamburger & Mobile Elements */
.mobile-menu-toggle { display: none; }
.desktop-only { display: flex; }

/* --- HEADER MOBILE OVERRIDES --- */
@media screen and (max-width: 768px) {
  body { padding-top: var(--header-height-mobile) !important; }

  .site-header {
    height: 60px; /* Force the header to exactly 60px */
    display: flex;
    align-items: center;
  }
  
  .header-inner {
    width: 100%;
    padding: 0 20px !important;
    height: 100%;
  }

  .site-logo-image { height: 64px !important; }
  .desktop-only { display: none !important; }
  .mobile-menu-toggle { display: block; }
  
  /* Centering Logo Logic */
  .site-logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    z-index: 10;
    width: max-content;
    display: flex;
    justify-content: center;
  }

  /* Hamburger Icon */
  .hamburger-icon {
    list-style: none;
    cursor: pointer;
    width: 18px;
    height: 18x;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background:rgb(98, 98, 98);
  }
  .hamburger-icon::-webkit-details-marker { display: none; }

/* Mobile Drawer */
  .mobile-drawer {
    position: fixed; /* Changed to fixed so it stays put while scrolling */
    top: 60px; /* This matches your --header-height-mobile variable */
    left: 0;
    width: 100%;
    /* Use 100dvh for modern mobile browsers to account for browser UI bars */
    height: calc(100vh - 60px); 
    background: var(--bg-body);
    padding: 30px 20px; 
    box-sizing: border-box;
    border-top: #ffffff; /* Removed the 1px solid border that creates a gap line */
    z-index: 999;
    overflow-y: auto;
  }
  .mobile-nav { display: flex; flex-direction: column; gap: 24px; }
  .mobile-nav-link { font-size: 12px; font-weight: 500;text-decoration: none; color: #000; text-transform: uppercase; letter-spacing: 0.05em; }
}

/* ================================================================= */
/* 3. HERO & HOMEPAGE EDITORIAL                                      */
/* ================================================================= */
/* --- BASE STYLES & SHARED ASPECT RATIO --- */
.hero-editorial {
  position: relative;
  height: auto; /* Changed from 100vh to allow aspect-ratio to dictate height */
  overflow: hidden;
}

.hero-editorial a, .hero-editorial button { display: none !important; }

/* Global 2:3 Aspect Ratio for Editorial Images */
.hero-media img
{
    width: 100%;
  aspect-ratio: 3 / 2; /* Enforces landscape shape */
  object-fit: cover;   /* Ensures image fills the frame without distortion */
  display: block;

}, 
.collection-editorial img,
.collection-editorial-2-products .editorial-product img {
  width: 100%;
  aspect-ratio: 2 / 3; /* Enforces portrait shape */
  object-fit: cover;   /* Ensures image fills the frame without distortion */
  display: block;
}

.collection-editorial { margin-bottom: 40px; }

.hero-overlay {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

/* --- DESKTOP LAYOUT (Side-by-Side) --- *

/* --- MOBILE OVERRIDES --- */
@media screen and (max-width: 768px) {
  .hero-editorial {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }

  .hero-media img {
    aspect-ratio: 2 / 3 !important; 
  }

  .collection-editorial-2-products .editorial-products {
    display: block !important;
    padding: 0 20px !important;
  }

  .collection-editorial-2-products .editorial-product:nth-child(2) {
    display: none !important; /* Keep hiding the 2nd product on mobile as per your logic */
  }
  
  .collection-editorial-2-products {
    margin-bottom: 0px !important;
  }
}

/* ================================================================= */
/* 4. PRODUCT STRIP (HORIZONTAL SCROLL)                              */
/* ================================================================= */
.product-strip {
  padding: 24px 24px !important;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hide extra UI elements in strip */
.product-strip .card__heading,
.product-strip .product-title,
.product-strip .card__information a,
.product-strip .view-all,
.product-strip .collection__view-all,
.product-strip a.view-all {
  display: none !important;
}

.product-strip .products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  justify-content: start !important;
}

.product-strip .product-card {
  display: block;
  width: 180px !important;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.product-strip .product-card img {
  width: 100%;
  height: 240px !important;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.product-strip__view-all {
  width: 100%;
  text-align: center;
  padding: 10px;
}

.view-all-link {
  display: inline-block;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #000;
  transition: opacity 0.3s ease;
}

.view-all-link:hover {
  opacity: 0.7;
}

/* Hide scrollbar for the product strip container */
.product-strip__container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.product-strip__container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
  width: 0;
  height: 0;
  background: transparent;
}

/* --- STRIP MOBILE OVERRIDES --- */
@media screen and (max-width: 768px) {
  .product-strip {
    padding: 10px;
    margin-top: 0 !important;
  }

  .product-strip .products {
    grid-auto-columns: 160px;
    padding: 0 20px !important;
    gap: 16px !important;
  }
  
  .product-strip .products::-webkit-scrollbar { display: none; }
  .product-strip .product-card { width: 160px !important; }
  .product-strip .product-card img { 
    width: 100% !important;     /* Fill the container width */
    height: auto !important;    /* Reset fixed height */
    aspect-ratio: 2 / 3;        /* Sets the 2:3 ratio */
    object-fit: cover;
  }
}

/* ================================================================= */
/* 5. EDITORIAL GRID (THE MAIN GRID)                                 */
/* ================================================================= */
/* Desktop Layout */
.collection-editorial-grid-inner {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Desktop gap: 8px vertical, 32px horizontal */
  gap: 8px 32px;
}

.editorial-product { text-decoration: none; color: inherit; }

.editorial-product-image {
  background: var(--bg-card);
  aspect-ratio: 2 / 3; /* Fixed 2:3 Ratio */
  width: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.editorial-product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.35s ease;
}

/* Hover Effects */
.editorial-product-image .primary-image { opacity: 1; z-index: 1; }
.editorial-product-image .secondary-image { opacity: 0; z-index: 2; }
.editorial-product:hover .secondary-image { opacity: 1; }
.editorial-product:hover .primary-image { opacity: 0; }

.editorial-product-meta { margin-top: 14px; }
.editorial-product-title { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.editorial-product-price { font-size: 12px; opacity: 0.75; margin-top: 4px; }
.editorial-product-badge { font-size: 10px; letter-spacing: 0.08em; margin-top: 6px; }

/* --- EDITORIAL GRID MOBILE OVERRIDES (STRICT) --- */
@media screen and (max-width: 768px) {
  .collection-editorial-grid-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    /* Vertical gap 8px; Horizontal gap 8px (Tight Grid) */
    gap: 8px 8px !important; 
    padding: 16px 8px !important;
  }

  .editorial-product-image {
    aspect-ratio: 2 / 3 !important;
  }

  .editorial-product-meta {
    /* Tight text spacing */
    margin-top: 4px !important;
    margin-bottom: 4px !important; 
    text-align: left;
  }

  .editorial-product-title {
    font-size: 11px !important;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .editorial-product-price {
    font-size: 11px !important;
    opacity: 1 !important;
    margin-top: 0 !important;
  }
}

/* ================================================================= */
/* 6. GENERIC COLLECTION GRID (FALLBACK)                             */
/* ================================================================= */
.template-collection .product-grid { gap: 48px 32px; margin-top: 0; }
.template-collection .card { border: none; background: transparent; }
.template-collection .card__media {
  background: var(--bg-card);
  padding: 40px 24px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.template-collection .card__media img { max-height: 100%; max-width: 100%; object-fit: contain; }
.template-collection .card__heading { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 16px; }

@media (min-width: 1200px) {
  .template-collection .grid--4-col-desktop { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================================= */
/* 7. PDP (PRODUCT DETAIL PAGE)                                      */
/* ================================================================= */

/* --- DESKTOP PDP --- */
@media (min-width: 769px) {
  .pdp-grid {
    display: grid;
    grid-template-columns: 200px 500px 1fr;
    column-gap: 10px;
    align-items: start;
  }
  
  .pdp-thumbs {
    position: sticky;
    top: 130px;
    display: block;
    width: 100%;
    padding-left: 20px;
    height: max-content;
    align-self: start;
  }

  .pdp-main {
    overflow-x: hidden !important;
    scrollbar-width: none !important;
  }
  .pdp-main::-webkit-scrollbar { display: none; }

  .pdp-info {
    position: sticky;
    top: 130px;
    align-self: start;
    height: max-content;
  }
}

/* PDP Common Elements */
.pdp-thumbs img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 12px;
  cursor: pointer;
  opacity: 0.6;
}
.pdp-thumbs img.active { opacity: 1; }

.pdp-main-image, .pdp-main img {
  width: 100%;
  max-width: 500px !important;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 16px;
}

.pdp-info {
  padding-left: 20px;
  padding-right: 48px;
  box-sizing: border-box;
}

.product-title { font-size: 20px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.12em; }
.product-price { margin-top: 8px; margin-bottom: 24px; }
.add-to-cart {
  width: 100%;
  height: 48px;
  background: #000;
  color: #fff;
  border: none;
  margin-top: 24px;
  text-transform: uppercase;
}

/* Options */
/* --- UPDATED MINIMALIST OPTIONS --- */
.product-option { 
  margin-bottom: 24px; 
}

/* Bold Uppercase "SIZE" label */
.option-label { 
  margin-bottom: 16px !important; 
  font-size: 13px; 
  font-weight: bold !important;
  text-transform: uppercase !important; 
  letter-spacing: 0.1em;
  display: block;
  color: #000;
}

/* Container for the numbers */
.option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; 
}

/* The clickable number area */
.option-values label { 
  margin: 0 !important; 
  cursor: pointer; 
  font-size: 14px;
  color: #000;
  position: relative; /* Needed for the absolute underline positioning */
  padding-bottom: 8px; /* Space for the line */
}

/* The Black Underline Logic */
/* This targets the label immediately following a checked radio button */
.option-values input:checked + label,
.option-values input:checked + span,
.option-values input:checked + label span { 
  border-bottom: 1.5px solid #000 !important;
  font-weight: bold;
    padding-bottom: 8px; 
}

/* Hide the native radio button circles */
.option-values input[type="radio"] { 
  display: none !important; 
}

/* size guide */
/* ================================================================= */
/* SIZE GUIDE MODAL STYLES
/* ================================================================= */

/* 1. The Trigger Link on PDP */
.size-guide-wrapper {
  margin-top: 12px;
  margin-bottom: 24px; /* Space before the description starts */
  text-align: left;
}

.size-guide-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 10px; /* Matches other PDP links */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  color: #000;
  transition: opacity 0.2s;
}

.size-guide-link:hover {
  opacity: 0.7;
}

/* 2. The Modal Overlay (Background) */
.sg-modal-overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999; /* Sit on top of everything including header */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
  backdrop-filter: blur(2px); /* Optional slight blur effect */
  align-items: center;
  justify-content: center;
}

/* State to show the modal (activated by JS) */
.sg-modal-overlay.is-open {
  display: flex !important;
}

/* 3. The Modal Content Box */
.sg-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 40px 20px 20px; /* Top padding makes room for close 'X' */
  border: none;
  width: 90%;
  max-width: 800px; /* Maximum width on large screens */
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-height: 90vh;
  overflow-y: auto;
}

/* The Image inside the modal */
.sg-image {
  width: 100%;
  height: auto;
  display: block;
}

/* 4. The Close Button (X) */
.sg-close-btn {
  color: #333;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.sg-close-btn:hover,
.sg-close-btn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .sg-modal-content {
    width: 95%;
    padding: 35px 10px 10px;
  }
}

/* Accordion */
.pdp-accordion { margin-top: 6px; }
.pdp-accordion details { padding: 6px 0; }
.pdp-accordion summary { cursor: pointer; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; list-style: none; }
.pdp-accordion summary::-webkit-details-marker { display: none; }
.pdp-accordion details[open] summary { margin-bottom: 12px; }
.accordion-content, .extra-info-content { font-size: 14px; line-height: 1.6; }



/* --- MOBILE PDP OVERRIDES --- */
@media screen and (max-width: 768px) {
  .pdp-grid {
    display: block !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 10 !important;
    position: relative !important;
  }

  .pdp-thumbs { display: none !important; }

  /* PDP Image Slider (Horizontal Scroll) */
  .pdp-main {
    order: -1 !important;
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important; 
  scroll-behavior: smooth;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    left: 50%;
    right: 50%;
    position: relative;
    padding-bottom: 2px !important;

  }

  /* Images Mobile */
  .pdp-main-track { display: contents !important; }
  .pdp-main img, .pdp-main-image {
    flex: 0 0 100vw !important;
    height: auto !important;
    aspect-ratio: 2/3;
    object-fit: cover !important;
    padding: 20px !important; 
  box-sizing: border-box !important;
    scroll-snap-align: start !important;
   margin: 0 !important;
  }

  .pdp-info { width: 100% !important; padding: 24px 20px !important; }

  /* Dots (Only on Product Template) */
  body.template-product .pdp-grid::after {
    content: "";
    display: block !important;
    position: absolute;
    top: 128vw; /* Positioned relative to image height */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    z-index: 20;
    pointer-events: none;
    background-image:
      radial-gradient(circle, #fff 2px, transparent 2.5px),
      radial-gradient(circle, rgba(255,255,255,0.5) 2px, transparent 2.5px),
      radial-gradient(circle, rgba(255,255,255,0.5) 2px, transparent 2.5px);
    background-size: 12px 12px;
    background-position: center left, center, center right;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.2); 
    border-radius: 10px;
  }
  .pdp-main::-webkit-scrollbar { display: none; }

  .pdp-dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pdp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc; /* Inactive color */
  transition: background-color 0.3s ease;
}

.pdp-dot.active {
  background-color: #000; /* Active color - matches your brand aesthetic */
}

}


.recommendations-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
}

.product-stripe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  
}

.product-card-info {
  margin-top: 15px;
  text-align: center;
}

.product-card-title {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.product-card-price {
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .product-stripe-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile */
    gap: 10px;
  }
}


/* ================================================================= */
/* 8. CART PAGE                                                      */
/* ================================================================= */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;


.cart-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-page-header h1 { font-size: 16px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.cart-close-icon { font-size: 24px; text-decoration: none; color: #000; line-height: 1; }

.cart-items { margin-bottom: 40px; border-bottom: 1px solid #eee; }
.cart-item { display: flex; gap: 20px; padding-bottom: 30px; margin-bottom: 30px; }

.cart-item-image { width: 120px; flex-shrink: 0; background-color: #f9f9f9; }
.cart-item-image img { width: 100%; height: auto; display: block; object-fit: contain; }

.cart-item-details { flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-title { display: block; font-size: 14px; font-weight: bold; text-transform: uppercase; text-decoration: none; color: #000; margin-bottom: 4px; }
.cart-item-price, .cart-item-variant { font-size: 14px; margin-bottom: 4px; color: #000; }

.cart-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

/* Quantity */
.qty-selector { display: flex; align-items: center; gap: 12px; }
.qty-btn { background: none; border: none; font-size: 18px; cursor: pointer; width: 20px; display: flex; align-items: center; justify-content: center; }
.qty-input { width: 30px; text-align: center; border: none; background: transparent; font-size: 14px; font-weight: bold; }

.cart-remove-link { font-size: 12px; text-decoration: underline; color: #000; text-transform: uppercase; }

/* Cart Footer */
.cart-footer { margin-top: 20px; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; }
.cart-tax-note { font-size: 12px; color: #000; margin-bottom: 24px; }
.checkout-btn { width: 100%; background-color: #000; color: #fff; border: none; padding: 16px; font-size: 14px; font-weight: bold; text-transform: uppercase; cursor: pointer; }

.btn-continue { display: inline-block; margin-top: 20px; padding: 12px 24px; background: #000; color: #fff; text-decoration: none; text-transform: uppercase; font-size: 12px; }

@media screen and (max-width: 768px) {
.cart-page-wrapper {
  /* --- ADD THIS LINE --- */
  box-sizing: border-box; 
  /* --------------------- */
  
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px; /* Now this will be contained INSIDE the screen width */
  
  /* Flex settings you added earlier */
  flex: 1;
  display: flex;
  flex-direction: column;
}
  .cart-item-image { width: 100px; }

  .cart-empty {
  /* text-align: center;  <-- Remove strictly text-align if you use flex below */
  
  /* --- NEW STYLES --- */
  flex: 1;                 /* 1. Take up all available empty space */
  display: flex;           /* 2. Use flexbox for centering content */
  flex-direction: column;  /* 3. Stack text and button */
  justify-content: center; /* 4. Center VERTICALLY */
  align-items: center;     /* 5. Center HORIZONTALLY */
  padding: 0;              /* 6. Remove large padding that affects centering */
}
/* Hides "YOUR SELECTION" only when the cart is empty */
.cart-page-wrapper:has(.cart-empty) .cart-page-header {
  display: none;
}
}



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

--- Base / Desktop Styles ---
.site-footer {
  background-color: #FAF9F7;
  padding: 60px 20px; /* Increased padding to match Image 1 spaciousness */
  font-family: 'Helvetica', sans-serif; /* Clean sans-serif */
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-column {
  flex: 1;
}

.footer-header {
  font-size: 6px;
  font-weight: 100px;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  cursor: default; /* Not clickable on desktop */
}

/* HIDE CHEVRON ON DESKTOP */
.icon-chevron {
  display: none; 
}

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

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

.footer-menu a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-menu a:hover {
  opacity: 1;
}

/* Ensure the links in the last column are also right-aligned */
/* --- Mobile Specifics (Max Width 768px) --- */
