/* ==========================================================================
   ATELIÊ ÓTICO — LUXURY EDITORIAL DESIGN SYSTEM
   ========================================================================== */

:root {
  --ll-black: #0a0a0a;
  --ll-dark: #141414;
  --ll-white: #ffffff;
  --ll-cream: #faf9f6;
  --ll-sand: #f5f4ee;
  --ll-card-bg: #ffffff;
  
  --ll-gray-100: #eae9e4;
  --ll-gray-300: #cccccc;
  --ll-gray-500: #666666;
  --ll-gray-700: #222222;

  --ll-border: rgba(0, 0, 0, 0.1);
  --ll-border-card: rgba(0, 0, 0, 0.14);
  --ll-border-dark: rgba(255, 255, 255, 0.14);

  --font-editorial: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-floating: 12px;
  --radius-card: 6px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
}

/* Global Reset & Base Typography */
body {
  font-family: var(--font-editorial);
  background-color: var(--ll-cream);
  color: var(--ll-black);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Container */
.ll-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 48px);
  box-sizing: border-box;
}

.ll-section {
  padding: clamp(48px, 6vw, 84px) 0;
  border-top: 1px solid var(--ll-border);
}

/* ==========================================================================
   NAVIGATION & MELIN-STYLE MEGA DROPDOWNS (SOFT CRISP BORDER & SHADOW)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 76px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease;
}

.site-header.scrolled {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.site-header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  height: 100%;
}

.site-header nav > a,
.nav-drop > a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 4px;
  position: relative;
}

.site-header nav > a:hover,
.nav-drop > a:hover {
  color: #555555;
}

.nav-drop {
  height: 100%;
  display: flex;
  align-items: center;
  position: static;
}

.nav-drop > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: #000000;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-drop:hover > a::after {
  transform: scaleX(1);
}

/* Mega Dropdown Menu - Pure White Seamless Background */
.mega-melin {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
  padding: 36px clamp(16px, 3.5vw, 48px) 32px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 95;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.nav-drop:hover .mega-melin {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-melin-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: transparent !important;
}

.mega-melin-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2.2vw, 32px);
  margin-bottom: 28px;
  align-items: start;
  background: transparent !important;
}

.mega-melin-grid.brands-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mega-melin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #0a0a0a;
  text-align: center;
  background: transparent !important;
  background-color: transparent !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mega-melin-item:hover {
  transform: translateY(-4px);
  opacity: 0.85;
  background: transparent !important;
  background-color: transparent !important;
}

.mega-melin-img-wrap {
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 14px;
}

.mega-melin-img-wrap img {
  max-width: 100%;
  max-height: 84px;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: contrast(106%) brightness(102%) !important;
}

.mega-melin-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
}

.mega-melin-footer {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  background: transparent !important;
}

.mega-melin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 32px;
  background: #ffffff;
  color: #000000;
  border: 1.5px solid #000000;
  border-radius: 0 !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mega-melin-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* Dark Backdrop Overlay on Hover */
.nav-backdrop-overlay {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.site-header:has(.nav-drop:hover) ~ .nav-backdrop-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Section Header Bar */
.ll-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 20px;
}

.ll-section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ll-gray-500);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ll-statement-title {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ll-black);
  max-width: 680px;
  margin: 0;
}

/* ==========================================================================
   1. HERO: MELIN-STYLE SINGLE BANNER
   ========================================================================= */
.ll-melin-hero {
  --menu-height: 80px;
  --PT: 0px;
  --PB: 0px;
  --CONTENT-WIDTH: 2000px;
  --full-screen: 540px;
  position: relative;
  width: 100%;
  height: var(--full-screen);
  min-height: calc(305px + var(--menu-height));
  padding-top: var(--PT);
  padding-bottom: var(--PB);
  background-color: #faf9f6;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.ll-melin-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  filter: contrast(1.04);
}

.ll-melin-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.22) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.ll-melin-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(16px, 3.5vw, 48px);
  color: var(--ll-white);
  box-sizing: border-box;
}

.ll-melin-hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ll-melin-hero-title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #ffffff;
  max-width: 780px;
}

.ll-melin-hero-desc {
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 0 28px;
}

.ll-melin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: background 0.25s ease, color 0.25s ease;
}

.ll-melin-btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
}

/* ==========================================================================
   2. BRANDS BAR UNDER HERO
   ========================================================================== */
.ll-brands-strip-section {
  background: #ffffff;
  border-bottom: 1px solid var(--ll-border);
  padding: clamp(56px, 5vw, 76px) 0 clamp(40px, 4vw, 56px);
}

.ll-brands-strip-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0 auto clamp(36px, 4vw, 54px);
}

.ll-brands-title {
  display: block;
  flex: 0 0 100%;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto;
  text-align: center !important;
  text-transform: none;
}

.ll-partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(18px, 2.5vw, 36px);
  align-items: center;
  justify-items: center;
  padding: 12px 0 6px;
}

.ll-partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  padding: 8px 12px;
  box-sizing: border-box;
  text-decoration: none;
}

.ll-partner-logo {
  object-fit: contain;
  background: transparent !important;
}

.ll-partner-logo.partner-folder-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 140px;
  filter: grayscale(1);
}

.orgreen-wordmark {
  display: block !important;
  opacity: 1 !important;
  filter: brightness(0) contrast(1.25) !important;
  min-width: 140px;
  height: 38px !important;
  object-fit: contain;
}

.ll-partner-logo.snob {
  height: 52px;
  width: auto;
  max-width: 190px;
  mix-blend-mode: multiply;
  transform: scale(1.8);
}

.ll-partner-logo.orgreen {
  height: 32px;
  width: auto;
  max-width: 160px;
  filter: brightness(0);
}

.ll-partner-logo.einstoffen {
  height: 50px;
  width: auto;
  max-width: 150px;
  mix-blend-mode: multiply;
  transform: scale(1.35);
}

.ll-partner-logo.rodenstock {
  height: 52px;
  width: auto;
  max-width: 160px;
  mix-blend-mode: multiply;
  transform: scale(1.2);
}

@media (max-width: 1100px) {
  .ll-partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .ll-partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ==========================================================================
   3. PRODUCT CARDS & HOVER ANIMATION (APPLIED TO ALL CARDS GLOBALLY)
   ========================================================================== */
.ll-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ll-carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 0 !important;
  border: 1.5px solid var(--ll-black);
  background: var(--ll-white);
  color: var(--ll-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  font-size: 18px;
  box-sizing: border-box;
}

.ll-carousel-btn:hover {
  background: var(--ll-black);
  color: var(--ll-white);
  border-color: var(--ll-black);
}

.ll-carousel-btn svg {
  display: block;
}

.ll-carousel-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ll-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 24px;
  scrollbar-width: none;
  user-select: none;
  cursor: grab;
}

.ll-carousel-track:active {
  cursor: grabbing;
}

.ll-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Base Card Style and Smooth Hover Animation */
.ll-product-card,
.store-card {
  flex: 0 0 clamp(260px, 22vw, 340px);
  scroll-snap-align: start;
  background: #ffffff !important;
  border: 1px solid var(--ll-border-card) !important;
  border-radius: 0 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease !important;
  cursor: pointer;
}

.product-grid .ll-product-card,
.related-grid .ll-product-card {
  width: 100%;
  min-width: 0;
  flex: none;
}

/* Card Hover Elevation */
.ll-product-card:hover,
.store-card:hover {
  border-color: #0a0a0a !important;
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.ll-card-fav,
.store-card .favorite {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--ll-black);
  transition: color var(--transition-fast), transform 0.2s ease;
}

.ll-card-fav:hover,
.store-card .favorite:hover {
  transform: scale(1.18);
  color: #e02424;
}

/* Eyewear Image Container */
.ll-card-image-box,
.store-card__image {
  position: relative;
  aspect-ratio: 1/1;
  background: #ffffff !important;
  overflow: hidden;
  padding: 24px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.ll-card-img-main,
.ll-card-img-hover,
.store-card__main,
.store-card__hover {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  background: transparent !important;
  filter: contrast(106%) brightness(102%) !important;
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ll-card-img-hover,
.store-card__hover {
  position: absolute;
  inset: 0;
  padding: 24px;
  opacity: 0;
}

/* Smooth zoom on hover for all cards */
.ll-product-card:hover .ll-card-img-main,
.store-card:hover .ll-card-img-main,
.store-card:hover .store-card__main {
  transform: scale(1.05);
}

.ll-product-card:hover .ll-card-img-hover,
.store-card:hover .ll-card-img-hover,
.store-card:hover .store-card__hover {
  opacity: 1;
  transform: scale(1.05);
}

.ll-card-meta {
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #ffffff !important;
  min-height: 88px;
  box-sizing: border-box;
}

.ll-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.ll-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--ll-black);
  min-width: 0;
  line-height: 1.4;
}

.ll-card-title a {
  color: inherit;
  text-decoration: none;
}

.ll-card-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ll-black);
  white-space: nowrap;
  flex: 0 0 auto;
}

.ll-card-sub {
  font-size: 11px;
  color: var(--ll-gray-500);
  margin: 0;
  letter-spacing: 0.02em;
}

.ll-catalog-cta {
  display: flex;
  justify-content: center;
  padding-top: clamp(48px, 6vw, 80px);
}

/* ==========================================================================
   DYNAMIC PRODUCT ZOOM (POINTER-TRACKING)
   ========================================================================== */
.product-gallery {
  display: block !important;
}

.product-zoom {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: crosshair;
  background: #ffffff !important;
  position: relative;
  border: 1px solid var(--ll-border-card);
}

.product-zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  transform-origin: center center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.product-zoom:hover img {
  transform: scale(2.65);
}

.brands-catalog-link {
  display: inline-block;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-details-popovers {
  min-height: 240px;
}

.product-details-popovers details {
  position: static;
}

.product-details-popovers details > p {
  position: static;
  margin: 12px 0 0;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

/* ==========================================================================
   PAYMENT METHODS (CLEAN & BORDERLESS SVG LOGOS)
   ========================================================================== */
.ll-payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding: 16px 0 14px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-width: 0;
  padding: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0.85;
}

.payment-badge:hover {
  opacity: 1;
  transform: scale(1.08);
  border: none !important;
  box-shadow: none !important;
}

.payment-badge img {
  height: 24px;
  width: auto;
  max-width: 68px;
  object-fit: contain;
  filter: none !important;
  mix-blend-mode: normal !important;
  background: transparent !important;
}

/* ==========================================================================
   4. CINEMATIC EDITORIAL BANNER
   ========================================================================== */
.ll-cinematic-editorial {
  position: relative;
  width: 100%;
  height: clamp(540px, 78vh, 800px);
  background-color: #faf9f6;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.ll-cinematic-img {
  position: absolute;
  inset: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  object-fit: cover;
  object-position: 65% 18%;
  filter: contrast(1.05);
  transform: scale(1.05);
  transform-origin: center;
}

.ll-floating-white-card {
  position: absolute;
  top: clamp(24px, 5vw, 64px);
  right: clamp(24px, 5vw, 64px);
  background: var(--ll-white);
  padding: clamp(24px, 3.5vw, 40px);
  max-width: 420px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  border-radius: 0 !important;
  z-index: 5;
}

.ll-floating-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ll-gray-500);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ll-floating-title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ll-black);
}

.ll-floating-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ll-gray-700);
  margin: 0 0 18px;
}

.ll-floating-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ll-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-bottom: 1px solid var(--ll-black);
  padding-bottom: 2px;
  transition: opacity var(--transition-fast);
}

.ll-floating-link:hover {
  opacity: 0.6;
}

.ll-cinematic-index-list {
  position: absolute;
  bottom: clamp(20px, 3.5vw, 40px);
  left: clamp(20px, 3.5vw, 40px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .ll-floating-white-card {
    position: static;
    margin: 20px 16px;
    max-width: none;
  }
  .ll-cinematic-editorial {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .ll-cinematic-img {
    height: 340px;
    object-position: center;
  }
}

/* ==========================================================================
   5. CRAFT SPECIFICATIONS
   ========================================================================== */
.ll-craft-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}

.ll-craft-images-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

.ll-craft-img-tile {
  background: #faf9f6;
  overflow: hidden;
  border: none !important;
  border-radius: 0 !important;
  height: 100%;
  min-height: 420px;
  display: flex;
}

.ll-craft-img-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none !important;
  border-radius: 0 !important;
  filter: contrast(1.04);
}

.ll-craft-specs-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.ll-spec-item {
  border-bottom: 1px solid var(--ll-border);
  padding-bottom: 14px;
}

.ll-spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ll-spec-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ll-gray-500);
  margin-bottom: 4px;
  display: block;
  text-transform: uppercase;
}

.ll-spec-heading {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ll-black);
}

.ll-spec-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ll-gray-700);
  margin: 0;
}

@media (max-width: 860px) {
  .ll-craft-split-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   6. CATALOGUE GRID
   ========================================================================== */
.ll-catalog-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ll-catalog-quote-card {
  background: var(--ll-sand);
  border: 1px solid var(--ll-border-card) !important;
  border-radius: 0 !important;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 280px;
  box-sizing: border-box;
}

.ll-catalog-quote-card:hover {
  border-color: var(--ll-border-card) !important;
}

.ll-catalog-quote-card p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--ll-black);
  margin: 0;
}

@media (max-width: 1024px) {
  .ll-catalog-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .ll-catalog-mosaic-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. STORIES & GALLERY MOSAIC
   ========================================================================== */
.ll-stories-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}

.ll-story-col-left {
  background: #faf9f6;
  overflow: hidden;
  border-radius: 0 !important;
  position: relative;
  min-height: 480px;
  height: 100%;
  display: flex;
}

.ll-story-col-left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 !important;
  display: block;
}

.ll-story-col-mid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}

.ll-story-tile-compact {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff !important;
  border: 1px solid var(--ll-border-card);
  border-radius: 0 !important;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  box-sizing: border-box;
  transition: border-color 0.25s ease;
}

.ll-story-tile-compact:hover {
  border-color: #0a0a0a;
}

.ll-story-tile-compact img {
  width: 96px;
  height: 84px;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  background: transparent !important;
  background-color: transparent !important;
  filter: contrast(106%) brightness(102%) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  flex-shrink: 0;
}

.ll-story-tile-info h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  color: var(--ll-black);
}

.ll-story-tile-info p {
  font-size: 12px;
  color: var(--ll-gray-500);
  line-height: 1.4;
  margin: 0;
}

.ll-story-col-right {
  background: #faf9f6;
  overflow: hidden;
  border-radius: 0 !important;
  position: relative;
  min-height: 480px;
  height: 100%;
  display: flex;
}

.ll-story-col-right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 !important;
  display: block;
}

@media (max-width: 900px) {
  .ll-stories-mosaic {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. PRE-FOOTER APPOINTMENT BANNER
   ========================================================================== */
.ll-prefooter-banner {
  position: relative;
  width: 100%;
  height: clamp(480px, 65vh, 680px);
  background-color: #faf9f6;
  overflow: hidden;
}

.ll-prefooter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  filter: contrast(1.05);
  display: block;
}

.ll-prefooter-floating-card {
  position: absolute;
  top: 50%;
  left: clamp(24px, 7vw, 100px);
  transform: translateY(-50%);
  background: var(--ll-white);
  padding: clamp(28px, 4vw, 48px);
  max-width: 460px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  border-radius: 0 !important;
  z-index: 5;
}

.ll-prefooter-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ll-gray-500);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ll-prefooter-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ll-black);
}

.ll-prefooter-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ll-gray-700);
  margin: 0 0 20px;
}

.ll-prefooter-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ll-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-bottom: 1px solid var(--ll-black);
  padding-bottom: 2px;
  transition: opacity var(--transition-fast);
}

.ll-prefooter-link:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .ll-prefooter-floating-card {
    position: static;
    transform: none;
    margin: 20px 16px;
    max-width: none;
  }
  .ll-prefooter-banner {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .ll-prefooter-img {
    height: 340px;
    object-position: 70% 30%;
  }
}

/* ==========================================================================
   9. ELEGANT LUXURY FOOTER (SOFT REFINED BORDERS)
   ========================================================================== */
.ll-monolith-footer {
  background-color: #ffffff;
  color: #111111;
  border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
  padding: clamp(56px, 7vw, 88px) 0 36px;
  position: relative;
}

.ll-footer-top-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.ll-footer-brand-logo {
  height: 52px;
  max-height: 56px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  background: transparent !important;
  margin-bottom: 14px;
}

.ll-footer-tagline {
  font-size: 13px;
  color: #666666;
  margin: 0;
  letter-spacing: 0.03em;
}

.ll-footer-nav-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 36px);
  margin-bottom: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
  padding: 22px 0;
}

.ll-footer-link {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
}

.ll-footer-link:hover {
  color: #666666;
}

/* Footer Google My Business Info */
.ll-footer-gmb-section {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 36px 0;
  margin: 36px 0 28px;
}

.ll-footer-gmb-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 32px;
}

.ll-footer-gmb-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ll-black);
  margin: 0 0 12px;
}

.ll-footer-gmb-col p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ll-gray-500);
  margin: 0 0 8px;
}

.ll-footer-gmb-col a {
  color: var(--ll-black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.ll-footer-gmb-col a:hover {
  opacity: 0.7;
}

.ll-hours-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12.5px;
  color: var(--ll-gray-500);
}

.ll-hours-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.ll-hours-row strong {
  color: var(--ll-black);
}

@media (max-width: 992px) {
  .ll-footer-gmb-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   GLOBAL PRODUCT IMAGE MULTIPLY BLEND & ZERO BACKGROUND BOXES
   ========================================================================== */
.store-card__image,
.ll-card-image-box,
.product-gallery,
.product-gallery div,
.product-page,
.store-card,
.product-grid {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.store-card__main,
.store-card__hover,
.ll-card-img-main,
.ll-card-img-hover,
.store-card img,
.product-gallery img,
.product-page img,
.mega-melin-img-wrap img {
  mix-blend-mode: multiply !important;
  background: transparent !important;
  background-color: transparent !important;
  filter: contrast(106%) brightness(102%) !important;
}

/* ==========================================================================
   CENTERED LEGAL LINKS & COPYRIGHT ROW
   ========================================================================== */
.ll-footer-centered-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding-top: 24px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ll-legal-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 13px;
  color: #444444;
}

.ll-legal-links-row a {
  color: #222222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ll-legal-links-row a:hover {
  color: #000000;
  text-decoration: underline;
}

.legal-dot {
  color: #bbbbbb;
  font-size: 11px;
  user-select: none;
}

.ll-copyright-centered {
  font-size: 12px;
  color: #777777;
  margin: 0;
  letter-spacing: 0.02em;
}
