/* =========================================
   ECOMMERCE HERO BANNER STYLES
   ========================================= */
.hero-ecom-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--black, #000);
}

/* --- BACKGROUND SLIDER --- */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  animation: premiumCrossfade 18s infinite ease-in-out;
}

.hero-slide video,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  animation-delay: 6s;
}
.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes premiumCrossfade {
  0%,
  5% {
    opacity: 0;
    transform: scale(1.05);
  }
  10%,
  30% {
    opacity: 1;
    transform: scale(1);
  }
  35%,
  100% {
    opacity: 0;
    transform: scale(0.98);
  }
}

/* --- OVERLAY FOR ECOMMERCE LEGIBILITY --- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

/* --- HERO CONTENT --- */
.hero-content-container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -40px; /* Offset for trust bar */
}

/* Promo Badge */
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-secondary, sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #4ade80; /* Success Green */
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(74, 222, 128, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* Title & Description */
.hero-title {
  font-family: var(--font-primary, serif);
  font-size: clamp(40px, 8vw, 85px);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-description {
  font-family: var(--font-secondary, sans-serif);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 auto 35px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Buttons */
.hero-action-row {
  display: flex;
  gap: 15px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-btn {
  font-family: var(--font-secondary, sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #ffffff;
}

.primary-btn:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.secondary-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* --- TRUST BAR --- */
.hero-trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-secondary, sans-serif);
  font-size: 13px;
  font-weight: 500;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .hero-action-row {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
  }
  .trust-item {
    font-size: 12px;
  }
  .hero-content-container {
    margin-top: -100px; /* Make room for stacked trust bar */
  }
}

/* =========================================
   PRODUCT SLIDER STYLING ENGINE
========================================= */
:root {
  --ps-bg: #ffffff;
  --ps-text-main: #111111;
  --ps-text-muted: #888888;
  --ps-text-light: #cccccc;
  --ps-star-color: #eab308;
  --ps-image-bg: #f4f4f4;
}

.product-section {
  background-color: var(--ps-bg);
  padding: 80px 0;
  font-family: var(--font-secondary);
  color: var(--ps-text-main);
  overflow: hidden;
  /* Prevents fractional layout page bleeds */
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0;
}

.section-nav {
  display: flex;
  gap: 25px;
}

.section-nav a {
  text-decoration: none;
  color: var(--ps-text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.section-nav a:hover,
.section-nav a.active {
  color: var(--ps-text-main);
}

/* Horizontal Track Config for 10-Element Architecture */
.product-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Hide for Firefox */
  -ms-overflow-style: none;
  /* Hide for IE/Edge */
  padding-bottom: 25px;
}

.product-slider::-webkit-scrollbar {
  display: none;
  /* Hide for Chrome/Safari */
}

/* Flexible Matrix - Keeps layout perfectly responsive */
.product-card {
  flex: 0 0 calc(25% - 18px);
  /* Locks exactly 4 cards into view on ultra wide desktop display */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ps-text-main);
}

.product-image-wrapper {
  border-radius: 10px;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  /* Editorial fashion sizing proportionality */
  background-color: var(--ps-image-bg);
  overflow: hidden;
  margin-bottom: 20px;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

/* Floating Metrics Discount Tags */
.badge {
  border-radius: 10px;
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffffff;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 8px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Text Meta Properties block */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-title {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Prevents uneven text warping on layout blocks */
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-current {
  font-size: 15px;
  font-weight: 600;
}

.price-old {
  font-size: 14px;
  color: var(--ps-text-light);
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: var(--ps-star-color);
  font-size: 13px;
  letter-spacing: 1px;
}

.rating-score {
  font-size: 12px;
  font-weight: 600;
  margin-left: 2px;
}

.rating-count {
  font-size: 12px;
  color: var(--ps-text-muted);
}

/* =========================================
   RESPONSIVE MATRIX MEDIA QUERIES
========================================= */
@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 calc(33.333% - 16px);
    /* 3 Columns Visible */
  }
}

@media (max-width: 900px) {
  .product-container {
    padding: 0 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .product-card {
    flex: 0 0 calc(50% - 12px);
    /* 2 Columns Visible */
  }
}

@media (max-width: 600px) {
  .product-slider {
    gap: 16px;
  }

  .product-card {
    flex: 0 0 82%;
    /* Displays 1 full card + a visual edge hint of product 2 to indicate horizontal swipe */
  }

  .product-image-wrapper {
    aspect-ratio: 4 / 5;
  }
}

/* Update your existing .product-slider block to include the cursor properties */
.product-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 25px;

  /* Add these two lines */
  cursor: grab;
}

/* Add this new block to change the cursor when clicking */
.product-slider:active {
  cursor: grabbing;
}

/* =========================================
   SLIDER ARROWS
========================================= */
.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-arrow {
  position: absolute;
  top: 40%;
  /* Slightly above center to align with images, not text */
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
  left: -25px;
  /* Pulls it slightly outside the content box */
}

.next-arrow {
  right: -25px;
}

/* Hide arrows on mobile since touch-swiping is native and arrows clutter small screens */
@media (max-width: 900px) {
  .slider-arrow {
    display: none;
  }
}

/* =========================================
   ULTIMATE BENTO-BOX CATEGORY STYLES
   ========================================= */

.premium-bento-section {
  background-color: var(--white, #ffffff);
  padding: 90px 0;
  overflow: hidden;
}

/* --- Header Layout --- */
.bento-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.bento-title {
  font-family: var(--font-primary, serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 500;
  color: var(--black, #111111);
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.bento-subtitle {
  font-size: 15px;
  color: #666666;
  margin: 0;
  letter-spacing: 0.5px;
}

.btn-explore-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--black, #111111);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
}

.btn-explore-all:hover {
  opacity: 0.6;
}

.btn-explore-all .arrow {
  transition: transform 0.3s ease;
}

.btn-explore-all:hover .arrow {
  transform: translateX(4px);
}

/* --- Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 340px;
  gap: 20px;
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  background-color: #f0f0f0;
  isolation: isolate;
  -webkit-transform: translateZ(0);
  /* Subtle inner ring gives a polished, glass-like edge */
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 15px 35px rgba(0, 0, 0, 0.04);
}

/* --- Image & Gradient Overlay --- */
.bento-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  /* Soft gradient focuses shadow at the bottom for text readability */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  opacity: 0.7;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* --- Content (Text & Meta) --- */
.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(15px); /* Pushed down slightly initially */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-meta {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.bento-name {
  color: #ffffff;
  font-family: var(--font-primary, serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- Action Pill (The eCommerce touch) --- */
.bento-action-pill {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; /* Let the whole card be the click target */
}

/* --- Hover Physics --- */
.bento-card:hover .bento-image img {
  transform: scale(1.06);
}

.bento-card:hover .bento-overlay {
  opacity: 0.9;
}

.bento-card:hover .bento-content {
  transform: translateY(0); /* Slides text into place */
}

.bento-card:hover .bento-action-pill {
  opacity: 1;
  transform: translateY(0); /* Drops the pill in */
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
  /* .bento-container {
    padding: 0 25px;
  } */
  .bento-grid {
    gap: 16px;
    grid-auto-rows: 300px;
  }
  .bento-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .premium-bento-section {
    padding: 60px 0;
  }
  .bento-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
  .bento-card.large,
  .bento-card.wide {
    grid-column: span 2;
    grid-row: span 1; /* On tablet, everything breaks down cleanly */
  }
  /* Touch devices: reveal content since hover isn't standard */
  .bento-content {
    transform: translateY(0);
  }
  .bento-overlay {
    opacity: 0.85;
  }
  .bento-action-pill {
    display: none; /* Hide floating pill on mobile to keep images clean */
  }
}

@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
    gap: 12px;
  }
  .bento-card.large,
  .bento-card.wide {
    grid-column: span 1;
  }
}

/* =========================================
   PURE ECOMMERCE GRID STYLES
   ========================================= */

.ecom-shop-section {
  background-color: #ffffff;
  padding: 60px 0 80px 0;
  font-family: var(--font-secondary, system-ui, sans-serif);
}

/* --- Header --- */
.ecom-header {
  text-align: center;
  margin-bottom: 40px;
}

.ecom-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ecom-header p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* --- 4-Column Product Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px; /* 30px bottom, 20px sides */
  margin-bottom: 50px;
}

/* --- Individual Product Card --- */
.gallery-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.gallery-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* Standard apparel eCommerce ratio */
  background-color: #f7f7f7;
  margin-bottom: 12px;
  overflow: hidden;
  display: block;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

/* --- Quick Shop Hover Button --- */
.quick-shop-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  color: #111111;
  text-align: center;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(100%); /* Hidden below edge */
  transition: transform 0.2s ease-in-out;
}

.gallery-image-wrap:hover .quick-shop-btn {
  transform: translateY(0); /* Slides up instantly on hover */
}

.quick-shop-btn:hover {
  background-color: #111111;
  color: #ffffff;
}

/* --- Product Text / Info --- */
.gallery-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-tag {
  font-size: 11px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-title {
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  line-height: 1.4;
}

.gallery-title:hover {
  text-decoration: underline;
}

/* --- Footer CTA --- */
.ecom-footer {
  text-align: center;
}

.load-more-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #111111;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 10px;
}

.load-more-btn:hover {
  background-color: #111111;
  color: #ffffff;
}

/* --- Responsive for Mobile (2 Columns) --- */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ecom-shop-section {
    padding: 40px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
    gap: 20px 10px;
  }

  .ecom-header h2 {
    font-size: 20px;
  }

  /* Show Quick Shop button permanently on mobile (no hover) */
  .quick-shop-btn {
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 10px;
  }
}

/* =========================================
   MINIMAL PREMIUM LOGO MARQUEE
========================================= */
:root {
  --ml-bg: #ffffff;
  --ml-text: #111111;
  --ml-text-muted: #888888;
  --ml-gap: 80px;
  --ml-speed: 30s;
}

.minimal-logo-section {
  background-color: var(--ml-bg);
  padding: 80px 0;
  overflow: hidden;
  font-family: var(--font-primary);
}

.minimal-logo-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.minimal-logo-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ml-text-muted);
  margin-bottom: 50px;
}

/* =========================================
   THE WRAPPER (Fading Edges)
========================================= */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Creates the smooth fade-out on the left and right edges */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

/* =========================================
   THE TRACK (Infinite Loop)
========================================= */
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--ml-gap);
  width: max-content;
  animation: scrollMinimal var(--ml-speed) linear infinite;
  padding: 10px 0;
  /* Prevents hover scale from getting cut off */
}

/* Pause the animation gently on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* =========================================
   THE ITEMS & HOVER EFFECTS
========================================= */
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  /* color: var(--ml-text-muted); */
  letter-spacing: -0.5px;
  white-space: nowrap;
  cursor: pointer;

  /* Smooth transition for the hover effects */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* If you are using actual images instead of text: */
.marquee-item img {
  height: 150px;
  width: auto;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  opacity: 1;
  transition: all 0.4s ease;
}

/* 
  THE MAGIC: 
  1. When hovering the track, dim ALL items slightly.
  2. The specific item being hovered gets brightened and scaled.
*/
.marquee-track:hover .marquee-item {
  opacity: 0.3;
}

.marquee-track .marquee-item:hover {
  opacity: 1;
  color: var(--ml-text);
  transform: scale(1.08);
}

.marquee-track .marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* =========================================
   KEYFRAMES
========================================= */
@keyframes scrollMinimal {
  0% {
    transform: translateX(0);
  }

  /* Shifts exactly half the width + half the gap for a flawless loop */
  100% {
    transform: translateX(calc(-50% - (var(--ml-gap) / 2)));
  }
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 768px) {
  :root {
    --ml-gap: 50px;
    /* Reduce gap on mobile */
  }

  .minimal-logo-section {
    padding: 60px 0;
  }

  .marquee-item {
    font-size: 20px;
  }

  .marquee-item img {
    height: 28px;
  }

  .marquee-wrapper {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
  }
}

/* =========================================
   PREMIUM FEATURES VARIABLES & THEMING
========================================= */
:root {
  /* Change these for Light/Dark mode integration */
  --bf-bg: #ffffff;
  --bf-text-main: #111111;
  --bf-text-muted: #777777;
  --bf-border: #eaeaea;
}

/* =========================================
   LAYOUT & CONTAINER
========================================= */
.brand-features-section {
  background-color: var(--bf-bg);
  padding: 80px 0;
  /* border-top: 1px solid var(--bf-border);
    border-bottom: 1px solid var(--bf-border); */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* =========================================
   FEATURE CARDS
========================================= */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--bf-text-main);
  opacity: 0.7;
  /* Soften the icon slightly by default */
  transition: all 0.4s ease;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--bf-text-main);
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bf-text-muted);
  margin: 0;
  max-width: 280px;
  /* Keeps text from getting too wide on large screens */
}

/* =========================================
   ELEGANT HOVER EFFECTS
========================================= */
.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card:hover .feature-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }
}

@media (max-width: 600px) {
  .brand-features-section {
    padding: 60px 0;
  }

  /* .features-container {
    padding: 0 24px;
  } */

  .features-grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }
}

/* =========================================
   PREMIUM PROMO SECTION VARIABLES
========================================= */
:root {
  --ps-bg: #ffffff;
  --ps-text: #111111;
  --ps-text-muted: #777777;

  --ps-card-bg: #f9f9f9;
  --ps-card-border: #f0f0f0;

  --ps-banner-bg: #111111;
  --ps-banner-text: #ffffff;

  --ps-gap: 20px;
}

/* =========================================
   LAYOUT STRUCTURE
========================================= */
.featured-promo-section {
  background-color: var(--ps-bg);
  padding: 80px 0;
  overflow: hidden;
}

.featured-promo-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /* Left side slightly larger */
  gap: 40px;
  align-items: stretch;
}

/* =========================================
   LEFT SIDE: SLIDER AREA
========================================= */
.promo-slider-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  /* Soft gradient masks on edges so items don't cut off harshly */
  /* mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); */
}

.promo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 10px;
}

.promo-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--ps-text);
  margin: 0;
  letter-spacing: -0.5px;
}

.promo-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ps-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Track Settings */
.slider-track-wrapper {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: var(--ps-gap);
  width: max-content;
  padding: 5px;
  /* Prevent box-shadow cutoff */
}

/* Auto-Scroll Animations */
.slide-left {
  animation: slideLeft 25s linear infinite;
}

.slide-right {
  animation: slideRight 25s linear infinite;
}

/* THE MAGIC: Pause on Hover */
.slider-track:hover {
  animation-play-state: paused;
}

/* =========================================
   PRODUCT CARDS
========================================= */
.promo-card {
  width: 260px;
  /* Fixed width for consistent sliding */
  background: var(--ps-bg);
  border: 1px solid var(--ps-card-border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.promo-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--ps-card-bg);
  border-radius: 8px;
  overflow: hidden;
}

.promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-card-img img {
  transform: scale(1.05);
}

.promo-card-info h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ps-text);
  margin: 0 0 12px 0;
}

.promo-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 600;
  color: var(--ps-text);
}

.add-btn {
  width: 30% !important;
  background: var(--ps-card-bg) !important;
  border: none !important;
  padding: 6px 12px !important;
  border-radius: 40px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ps-text) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.add-btn:hover {
  background: var(--ps-text) !important;
  color: var(--ps-bg) !important;
}

/* =========================================
   RIGHT SIDE: PROMO BANNER
========================================= */
.promo-banner-area {
  background-color: var(--ps-banner-bg);
  border-radius: 16px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Optional: Add a subtle background image blending */
  background-image: url("https://www.roysapparels.com/public/assets/img/home/what-we-deliver.png");
  background-size: cover;
  background-position: center;
}

/* Dark overlay to ensure text is readable */
.promo-banner-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.9),
    rgba(17, 17, 17, 0.4)
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--ps-banner-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.banner-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--ps-banner-text);
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.banner-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 32px 0;
}

.banner-btn {
  display: inline-block;
  background: var(--ps-banner-text);
  color: var(--ps-banner-bg);
  text-decoration: none;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.banner-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* =========================================
   KEYFRAMES FOR SLIDERS
========================================= */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  /* Shifts half the width + half the gap to loop seamlessly */
  100% {
    transform: translateX(calc(-50% - (var(--ps-gap) / 2)));
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(calc(-50% - (var(--ps-gap) / 2)));
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================================
   RESPONSIVE SCALING
========================================= */
@media (max-width: 1024px) {
  .featured-promo-container {
    grid-template-columns: 1fr;
    /* Stacks the banner and slider */
  }

  .promo-banner-area {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .featured-promo-section {
    padding: 40px 0;
  }

  /* .featured-promo-container {
    padding: 0 20px;
  } */

  .promo-card {
    width: 220px;
  }

  .promo-banner-area {
    padding: 40px 24px;
  }

  .banner-title {
    font-size: 28px;
  }
}

:root {
  --ed-bg: #ffffff;
  --ed-text: #111111;
  --ed-text-muted: #555555;
  --ed-border: #eeeeee;

  /* Font pairings for the magazine feel */
  /* --ed-font-sans: var(--font-primary, system-ui, sans-serif);
    --ed-font-serif: "Playfair Display", "Didot", "Georgia", serif; */
}

.editorial-split-section {
  background-color: var(--ed-bg);
  border-top: 1px solid var(--ed-border);
  border-bottom: 1px solid var(--ed-border);
}

.editorial-container {
  display: flex;
  min-height: 80vh;
}

/* Image Side */
.editorial-image-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.editorial-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Side */
.editorial-content-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  /* Generous whitespace */
}

.editorial-content {
  max-width: 500px;
  /* Keeps line lengths readable */
}

.editorial-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ed-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.editorial-title {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  /* Serif fonts often look more premium with lighter weights */
  line-height: 1.15;
  color: var(--ed-text);
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
}

.editorial-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ed-text-muted);
  margin: 0 0 20px 0;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ed-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 1px solid var(--ed-text);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.editorial-link:hover {
  opacity: 0.6;
}

.editorial-link .arrow {
  transition: transform 0.3s ease;
}

.editorial-link:hover .arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
  .editorial-container {
    flex-direction: column;
    min-height: auto;
  }

  .editorial-image-wrapper {
    min-height: 50vh;
    /* Give image fixed height on mobile */
  }

  .editorial-content-wrapper {
    padding: 80px 24px;
  }
}

/* =========================================
   EDITORIAL FLOATING SHOWCASE STYLES
   ========================================= */

.premium-edit-section {
    background-color: var(--white, #ffffff);
    padding: 80px 0 120px 0;
    font-family: var(--font-secondary, system-ui, sans-serif);
    overflow: hidden;
}

.edit-container {
    position: relative;
}

/* --- The Main Lifestyle Backdrop --- */
.edit-backdrop {
    position: relative;
    width: 100%;
    height: 65vh; 
    min-height: 550px;
    max-height: 750px;
    border-radius: 12px;
    background-color: #222222;
    overflow: hidden;
}

.backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
}

/* Deeper gradient for white text readability */
.edit-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    pointer-events: none;
}

/* --- Editorial Typography inside the Backdrop --- */
.edit-typography {
    position: absolute;
    top: 80px;
    left: 60px;
    z-index: 2;
    color: #ffffff;
    max-width: 450px;
}

.edit-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.edit-title {
    font-family: var(--font-primary);
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    color: white;
}

.edit-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* --- The Overlapping Floating Products --- */
.edit-products-track {
    display: flex;
    gap: 20px;
    margin-top: -200px; /* Pulls products up */
    padding-left: 28%; /* Shifts them right */
    padding-right: 40px;
    position: relative;
    z-index: 3;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.edit-products-track::-webkit-scrollbar {
    display: none;
}

/* --- Individual Floating Product Card --- */
.float-card {
    flex: 0 0 280px; 
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    text-decoration: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.float-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
}

.float-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 18px;
}

.float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Ensures faces/collars aren't cut off */
}

.float-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.float-name {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
}

.float-action {
    font-size: 11px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.float-card:hover .float-action {
    color: #111111;
}

/* --- View All Floating Card --- */
.view-all-float {
    background-color: #f7f7f7;
    box-shadow: none;
    justify-content: center;
    align-items: center;
    border: 1px solid #eeeeee;
}

.view-all-content {
    text-align: center;
    color: #111111;
}

.view-text {
    font-family: var(--font-primary, serif);
    font-size: 22px;
    display: block;
    margin-bottom: 15px;
    line-height: 1.2;
}

.view-arrow {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 42px;
    border-radius: 50%;
    border: 1px solid #111111;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.view-all-float:hover .view-arrow {
    background-color: #111111;
    color: #ffffff;
    transform: translateX(5px);
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    .edit-products-track {
        padding-left: 10%; 
    }
}

@media (max-width: 768px) {
    .premium-edit-section {
        padding: 40px 0 80px 0;
    }
    /* .edit-container {
        padding: 0 20px;
    } */
    .edit-backdrop {
        height: 55vh;
        min-height: 450px;
        border-radius: 8px;
    }
    .edit-typography {
        top: 40px;
        left: 20px;
        right: 20px;
    }
    .edit-products-track {
        margin-top: -120px; 
        padding-left: 20px;
        padding-right: 20px;
        gap: 15px;
    }
    .float-card {
        flex: 0 0 240px; 
        padding: 12px;
    }
    .float-action {
        display: none; 
    }
}

    /* =========================================
   PREMIUM "SHOP THE LOOK" STYLES
   ========================================= */

.shop-the-look-section {
    background-color: #fcfcfc;
    padding: 80px 0;
    font-family: var(--font-secondary, system-ui, sans-serif);
    border-top: 1px solid #eeeeee;
}

.stl-container {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* --- Left: Editorial Image --- */
.stl-editorial {
    flex: 1.2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.stl-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* --- Interactive Hotspots --- */
.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hotspot-pulse {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease;
}

/* The expanding radar effect */
.hotspot-pulse::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    animation: hotspotPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes hotspotPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hotspot:hover .hotspot-pulse {
    transform: scale(1.2);
}

/* Tooltip on Hover */
.hotspot-tooltip {
    position: absolute;
    top: 50%;
    left: 35px; /* Offset from the dot */
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 16px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-width: 140px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

.tooltip-title {
    font-size: 11px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.tooltip-price {
    font-size: 11px;
    color: #666;
}

/* --- Right: Product Pane --- */
.stl-products-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stl-header {
    margin-bottom: 40px;
}

.stl-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.stl-title {
    font-family: var(--font-primary, serif);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 500;
    color: #111;
    margin: 0 0 12px 0;
}

.stl-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- Product List Stack --- */
.stl-product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.stl-product-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #ffffff;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.stl-product-card:hover {
    border-color: #cccccc;
}

.stl-img-link {
    width: 80px;
    height: 100px;
    background-color: #f7f7f7;
    flex-shrink: 0;
}

.stl-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stl-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stl-prod-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    margin-bottom: 4px;
}

.stl-prod-name:hover {
    text-decoration: underline;
}

.stl-prod-price {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.stl-btn-add {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    align-self: flex-start;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
}

/* --- Master CTA Button --- */
.stl-shop-all-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #111111;
    color: #ffffff;
    padding: 16px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.stl-shop-all-btn:hover {
    background-color: #333333;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .stl-container {
        padding: 0 20px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .shop-the-look-section {
        padding: 40px 0;
    }
    
    .stl-container {
        flex-direction: column; /* Stack image on top, products on bottom */
        gap: 30px;
    }
    
    .stl-editorial {
        /* Restrict height on mobile so it doesn't take up the whole screen */
        aspect-ratio: 4 / 5;
    }
    
    .hotspot-tooltip {
        display: none; /* Tooltips often get cut off on mobile screens, keep it clean */
    }
}