/*
 * LCW Luxury - Page Templates & Layouts Stylesheet
 */

/* ==========================================================================
   Top Announcement Bar & Header
   ========================================================================== */
.lcw-topbar {
  background: #040507;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.45rem 0;
  font-size: 0.78rem;
  color: var(--metal-steel);
}

.lcw-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.lcw-topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lcw-topbar-icon {
  color: var(--gold-400);
}

.lcw-topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lcw-currency-selector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lcw-select-currency {
  background: var(--bg-card);
  color: var(--gold-300);
  border: 1px solid var(--border-glass);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.lcw-select-currency option {
  background: var(--bg-obsidian);
  color: var(--metal-platinum);
}

.lcw-topbar-concierge {
  color: #25D366;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lcw-topbar-concierge:hover {
  color: #4ade80;
}

/* Sticky Main Header */
.lcw-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 14, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.lcw-site-header.scrolled {
  background: rgba(6, 7, 9, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-glass);
}

.lcw-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Brand Logo */
.lcw-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lcw-brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lcw-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  object-fit: cover;
}

.lcw-brand-text {
  display: flex;
  flex-direction: column;
}

.lcw-brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.lcw-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 500;
}

/* Desktop Nav */
.lcw-desktop-nav {
  display: flex;
  align-items: center;
}

.lcw-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.lcw-nav-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--metal-platinum);
  letter-spacing: 0.03em;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  transition: color var(--transition-fast);
}

.lcw-nav-link:hover {
  color: var(--gold-300);
}

.lcw-dropdown-icon {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}

.lcw-has-dropdown {
  position: relative;
}

.lcw-has-dropdown:hover .lcw-dropdown-icon {
  transform: rotate(180deg);
}

.lcw-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), var(--gold-glow);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  pointer-events: none;
  z-index: 200;
}

.lcw-has-dropdown:hover .lcw-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.lcw-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--metal-platinum);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.lcw-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
}

.lcw-dropdown-item-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-300);
}

.lcw-dropdown-item-sub {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.lcw-dropdown-viewall {
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
}

/* Header Right Actions */
.lcw-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lcw-action-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--metal-platinum);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  font-size: 0.95rem;
}

.lcw-action-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.lcw-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lcw-btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.lcw-btn-whatsapp-header:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* Mobile Nav Toggle */
.lcw-mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.lcw-hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.lcw-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-smooth);
}

.lcw-mobile-drawer.active {
  visibility: visible;
  opacity: 1;
}

.lcw-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.lcw-drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82%;
  max-width: 340px;
  background: var(--bg-obsidian);
  border-right: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
}

.lcw-mobile-drawer.active .lcw-drawer-content {
  transform: translateX(0);
}

.lcw-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-drawer-close {
  background: transparent;
  border: none;
  color: var(--metal-platinum);
  font-size: 1.35rem;
  cursor: pointer;
}

.lcw-drawer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lcw-mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lcw-mobile-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--metal-platinum);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--transition-fast);
}

.lcw-mobile-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-300);
}

.lcw-mobile-sublink {
  padding-left: 2.25rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.lcw-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lcw-drawer-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.lcw-hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.lcw-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.lcw-hero-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.lcw-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.lcw-hero-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.lcw-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.lcw-hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.lcw-metric-item {
  display: flex;
  flex-direction: column;
}

.lcw-metric-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.lcw-metric-number small {
  font-size: 0.95rem;
  color: var(--metal-steel);
}

.lcw-metric-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.lcw-metric-divider {
  width: 1px;
  height: 35px;
  background: var(--border-subtle);
}

/* Hero Showcase Watch Stage */
.lcw-hero-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lcw-hero-watch-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-bottom: -2rem;
  z-index: 2;
}

.lcw-watch-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(24px);
  z-index: -1;
  animation: pulseGlow 4s infinite ease-in-out;
}

.lcw-hero-watch-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.85));
  transition: transform var(--transition-slow);
}

.lcw-hero-watch-stage:hover .lcw-hero-watch-img {
  transform: scale(1.04) rotate(-1deg);
}

/* Hotspots */
.lcw-hotspot {
  position: absolute;
  cursor: pointer;
}

.lcw-hotspot-1 { top: 28%; right: 8%; }
.lcw-hotspot-2 { top: 48%; left: 6%; }
.lcw-hotspot-3 { bottom: 15%; right: 12%; }

.lcw-hotspot-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.35);
  animation: pulseGlow 2s infinite;
}

.lcw-hotspot-card {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0.65rem;
  background: rgba(12, 14, 18, 0.92);
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--metal-platinum);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.lcw-hero-watch-card {
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  z-index: 3;
}

.lcw-hero-card-title {
  font-size: 1.05rem;
  margin: 0.25rem 0;
}

.lcw-hero-card-factory {
  font-size: 0.75rem;
  color: var(--gold-400);
}

.lcw-hero-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.lcw-card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.lcw-card-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-300);
}

.lcw-card-original-price {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: #64748b;
}

/* ==========================================================================
   Guarantees Bar
   ========================================================================== */
.lcw-guarantees-bar {
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(18, 21, 28, 0.4);
}

.lcw-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.lcw-guarantee-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lcw-guarantee-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.lcw-guarantee-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--metal-platinum);
}

.lcw-guarantee-text p {
  font-size: 0.82rem;
  margin-bottom: 0;
  color: #94a3b8;
}

/* ==========================================================================
   Watch Grid & Cards
   ========================================================================== */
.lcw-featured-section,
.lcw-catalog-section,
.lcw-related-section {
  padding: 5rem 0;
}

.lcw-watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

/* List view mode */
.lcw-watch-grid.list-view {
  grid-template-columns: 1fr;
}

.lcw-watch-grid.list-view .lcw-watch-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
}

.lcw-watch-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lcw-watch-media {
  position: relative;
  background: radial-gradient(circle at center, rgba(30, 36, 48, 0.6) 0%, rgba(12, 14, 18, 0.9) 100%);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.lcw-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(12, 14, 18, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.lcw-watch-img {
  max-height: 230px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.lcw-watch-card:hover .lcw-watch-img {
  transform: scale(1.06);
}

.lcw-watch-overlay-actions {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.lcw-watch-card:hover .lcw-watch-overlay-actions {
  opacity: 1;
  visibility: visible;
}

.lcw-overlay-btn {
  background: rgba(12, 14, 18, 0.9);
  border: 1px solid var(--gold-400);
  color: var(--gold-300);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lcw-overlay-btn:hover {
  background: var(--gold-gradient);
  color: #000;
}

.lcw-watch-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lcw-watch-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.lcw-watch-brand {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  font-weight: 700;
}

.lcw-watch-factory-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.lcw-watch-name {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.lcw-watch-name a {
  color: var(--metal-platinum);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.lcw-watch-name a:hover {
  color: var(--gold-300);
}

.lcw-watch-specs-pill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.lcw-watch-specs-pill span {
  white-space: nowrap;
}

.lcw-watch-desc-snippet {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lcw-watch-movement-text {
  font-size: 0.75rem;
  color: var(--metal-steel);
  margin-bottom: 1.25rem;
}

.lcw-watch-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.lcw-price-stack {
  display: flex;
  flex-direction: column;
}

.lcw-price-current {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1.1;
}

.lcw-price-was {
  font-size: 0.78rem;
  color: #64748b;
  text-decoration: line-through;
}

.lcw-center-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ==========================================================================
   Catalog Filter Bar
   ========================================================================== */
.lcw-catalog-toolbar {
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.lcw-brand-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lcw-filter-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--metal-steel);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lcw-filter-pill:hover,
.lcw-filter-pill.active {
  background: var(--gold-gradient);
  border-color: var(--gold-400);
  color: #000;
  font-weight: 600;
}

.lcw-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lcw-filter-select-group {
  display: flex;
  gap: 0.75rem;
}

.lcw-select-field {
  background: var(--bg-obsidian);
  color: var(--metal-platinum);
  border: 1px solid var(--border-glass);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  cursor: pointer;
}

.lcw-layout-toggle {
  display: flex;
  gap: 0.35rem;
  border-left: 1px solid var(--border-subtle);
  padding-left: 0.75rem;
}

.lcw-layout-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--metal-steel);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lcw-layout-btn.active,
.lcw-layout-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.1);
}

.lcw-catalog-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

.lcw-guarantee-pill {
  font-size: 0.82rem;
  color: var(--gold-400);
  font-weight: 500;
}

/* Empty state */
.lcw-empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.lcw-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Single Watch Product Showcase
   ========================================================================== */
.lcw-single-watch-page {
  padding-bottom: 5rem;
}

.lcw-breadcrumb-bar {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}

.lcw-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  color: #94a3b8;
}

.lcw-breadcrumbs a {
  color: #94a3b8;
}

.lcw-breadcrumbs a:hover {
  color: var(--gold-300);
}

.lcw-breadcrumbs .active {
  color: var(--metal-platinum);
  font-weight: 500;
}

.lcw-product-main-section {
  padding: 3rem 0;
  width: 100%;
}

.lcw-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}

.lcw-product-gallery-wrap {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  position: sticky;
  top: 100px;
}

.lcw-product-info-wrap {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

/* Recreated Gallery Stage Box */
.lcw-gallery-stage-box {
  position: relative;
  height: 520px;
  min-height: 480px;
  max-height: 540px;
  background: radial-gradient(circle at center, rgba(30, 36, 48, 0.8) 0%, rgba(12, 14, 18, 0.98) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lcw-stage-image-viewport {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
  overflow: hidden;
  position: relative;
  padding: 1.5rem;
}

.lcw-main-zoom-target {
  max-height: 450px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85));
  transition: transform 0.1s ease-out, opacity 0.15s ease;
  will-change: transform, transform-origin;
  user-select: none;
}

.lcw-stage-video-viewport {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 1rem;
}

.lcw-stage-video-viewport video {
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lcw-fullscreen-trigger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(12, 14, 18, 0.75);
  border: 1px solid var(--border-glass);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.lcw-fullscreen-trigger:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-400);
  transform: scale(1.1);
}

.lcw-stage-zoom-pill {
  position: absolute;
  bottom: 0.85rem;
  font-size: 0.72rem;
  color: var(--gold-300);
  background: rgba(8, 10, 14, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  pointer-events: none;
  backdrop-filter: blur(6px);
  letter-spacing: 0.02em;
}

/* Recreated Thumbnails Matrix */
.lcw-gallery-thumbs-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

.lcw-thumb-item {
  height: 68px;
  border-radius: var(--radius-sm);
  background: rgba(18, 21, 28, 0.9);
  border: 2px solid var(--border-subtle);
  padding: 0.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.lcw-thumb-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  pointer-events: none;
}

.lcw-thumb-item:hover,
.lcw-thumb-item.active {
  border-color: var(--gold-400);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
  background: rgba(30, 36, 48, 0.95);
}

.lcw-thumb-item-video {
  background: linear-gradient(135deg, #1e1b4b 0%, #0d1117 100%);
  border-color: rgba(212, 175, 55, 0.4);
  flex-direction: column;
  gap: 0.2rem;
}

.lcw-thumb-item-video span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Full-Screen 4K Lightbox Modal
   ========================================================================== */
.lcw-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lcw-lightbox-modal.active {
  display: flex;
}

.lcw-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.95);
  backdrop-filter: blur(16px);
}

.lcw-lightbox-dialog {
  position: relative;
  z-index: 10;
  width: 95vw;
  max-width: 1300px;
  height: 92vh;
  display: flex;
  flex-direction: column;
  background: rgba(12, 14, 18, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  padding: 1.25rem 1.5rem;
}

.lcw-lightbox-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-lightbox-title-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lcw-lightbox-title-counter strong {
  font-size: 1.05rem;
}

.lcw-lb-counter {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-400);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.lcw-lightbox-actions {
  display: flex;
  gap: 0.5rem;
}

.lcw-lb-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lcw-lb-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-400);
}

.lcw-lightbox-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin: 1rem 0;
}

.lcw-lightbox-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lcw-lightbox-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95));
  transition: transform 0.25s ease;
  user-select: none;
}

.lcw-lightbox-img-wrap img.zoomed {
  transform: scale(2.5);
  cursor: grab;
}

.lcw-lb-nav {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(12, 14, 18, 0.7);
  border: 1px solid var(--border-glass);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition-fast);
}

.lcw-lb-nav:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: scale(1.1);
}

.lcw-lightbox-filmstrip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  scrollbar-width: thin;
}

.lcw-lb-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(18, 21, 28, 0.8);
  border: 2px solid var(--border-subtle);
  padding: 0.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lcw-lb-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lcw-lb-thumb:hover,
.lcw-lb-thumb.active {
  border-color: var(--gold-400);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.lcw-thumb.active,
.lcw-thumb:hover {
  border-color: var(--gold-400);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.lcw-product-trust-strip {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--metal-steel);
  gap: 0.5rem;
}

.lcw-pts-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Product Info */
/* ==========================================================================
   Elevated Product Info Details Column (Right Column)
   ========================================================================== */

/* Badges Row */
.lcw-pdp-badges-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.lcw-pdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}

.lcw-pdp-badge-factory {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-300);
}

.lcw-pdp-badge-stock {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.lcw-pdp-badge-grade {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--metal-platinum);
}

.lcw-live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: lcwPulse 1.8s infinite;
}

@keyframes lcwPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 12px #10b981; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Master Title */
.lcw-pdp-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.28;
  margin: 0.5rem 0 0.85rem;
  letter-spacing: -0.01em;
}

/* Rating & Clean Ref SKU Bar */
.lcw-pdp-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.lcw-pdp-stars {
  color: #fbbf24;
  font-size: 0.82rem;
  display: flex;
  gap: 2px;
}

.lcw-pdp-score {
  font-weight: 700;
  color: var(--metal-platinum);
}

.lcw-pdp-reviews {
  color: #94a3b8;
  font-size: 0.78rem;
}

.lcw-pdp-ref-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  color: #94a3b8;
}

.lcw-pdp-ref-pill strong {
  color: var(--gold-300);
}

/* Luxury Pricing Card */
.lcw-pdp-pricing-card {
  background: rgba(18, 21, 28, 0.75);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lcw-pdp-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.lcw-pdp-current-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(212, 175, 55, 0.25);
}

.lcw-pdp-original-price del {
  font-size: 1.1rem;
  color: #64748b;
}

.lcw-pdp-savings-pill {
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: #fb7185;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.lcw-pdp-inclusions-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Short Description */
.lcw-pdp-short-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

/* 2x2 Quick Horological Specs Matrix */
.lcw-pdp-quick-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: rgba(12, 14, 18, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.lcw-pdp-matrix-cell {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.lcw-pdp-matrix-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.lcw-pdp-matrix-text {
  display: flex;
  flex-direction: column;
}

.lcw-pdp-matrix-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 600;
}

.lcw-pdp-matrix-val {
  font-size: 0.82rem;
  color: var(--metal-platinum);
  line-height: 1.35;
  margin-top: 0.15rem;
}

/* Action & VIP Concierge Ordering Block */
.lcw-pdp-actions-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.lcw-pdp-add-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.lcw-pdp-qty-stepper {
  display: flex;
  align-items: center;
  background: rgba(18, 21, 28, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  height: 48px;
  padding: 0.25rem;
}

.lcw-pdp-qty-btn {
  width: 32px;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--gold-400);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lcw-pdp-qty-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-radius: 4px;
}

.lcw-pdp-qty-input {
  width: 38px;
  text-align: center;
  border: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  outline: none;
}

.lcw-pdp-btn-add {
  flex: 1;
  height: 48px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lcw-pdp-secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lcw-pdp-btn-instant {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lcw-pdp-btn-instant:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.lcw-pdp-btn-wa {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lcw-pdp-btn-wa:hover {
  background: #10b981;
  color: #000;
  border-color: #10b981;
}

/* Micro-Trust Strip */
.lcw-pdp-micro-trust {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: #94a3b8;
}

.lcw-pmt-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lcw-pmt-item i {
  color: var(--gold-400);
  font-size: 0.7rem;
}


.lcw-addon-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.lcw-addon-sub {
  font-size: 0.75rem;
  color: #94a3b8;
}

.lcw-product-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.lcw-btn-full {
  width: 100%;
}

.lcw-live-desk-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #94a3b8;
  justify-content: center;
}

.lcw-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGlow 1.5s infinite;
}

/* Specs Matrix */
.lcw-specs-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
}

.lcw-specs-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.lcw-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
}

.lcw-spec-name {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lcw-spec-value {
  color: var(--metal-platinum);
  text-align: right;
}

/* ==========================================================================
   Forensic Comparison Table
   ========================================================================== */
.lcw-comparison-metrics-section {
  padding: 3rem 0;
}

.lcw-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.lcw-metric-box {
  text-align: center;
  padding: 2rem 1.5rem;
}

.lcw-m-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}

.lcw-m-title {
  font-weight: 600;
  color: var(--metal-platinum);
  display: block;
  margin-bottom: 0.5rem;
}

.lcw-m-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.lcw-comparison-table-wrap {
  overflow-x: auto;
  padding: 0;
}

.lcw-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.lcw-comparison-table th,
.lcw-comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-comparison-table th {
  background: var(--bg-elevated);
  color: var(--metal-platinum);
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.lcw-th-lcw.highlight,
.lcw-td-lcw.highlight {
  background: rgba(212, 175, 55, 0.08);
  border-left: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
}

.lcw-feature-title strong {
  display: block;
  color: var(--metal-platinum);
}

.lcw-feature-title span {
  font-size: 0.75rem;
  color: #94a3b8;
}

.lcw-comparison-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 3rem 2rem;
}

.lcw-c-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   About & Protocols
   ========================================================================== */
.lcw-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.lcw-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.lcw-astat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.lcw-astat-lbl {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.lcw-protocol-section {
  padding: 5rem 0;
}

.lcw-protocol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lcw-protocol-card {
  position: relative;
  padding: 2.25rem;
}

.lcw-p-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.25);
  margin-bottom: 0.75rem;
  line-height: 1;
}

/* ==========================================================================
   Reviews Feed & Rating Overview
   ========================================================================== */
.lcw-rating-overview-card {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.lcw-ro-score-box {
  text-align: center;
}

.lcw-ro-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.lcw-ro-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 0.35rem;
  display: block;
}

.lcw-ro-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lcw-ro-bar-row {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.lcw-progress-bar {
  background: var(--bg-elevated);
  height: 8px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.lcw-progress-fill {
  background: var(--gold-gradient);
  height: 100%;
}

.lcw-reviews-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.lcw-review-feed-item {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.lcw-r-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lcw-r-user {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.lcw-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-glass);
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lcw-r-loc {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
}

.lcw-r-title {
  font-size: 1.05rem;
  margin: 0.75rem 0 0.5rem;
}

.lcw-r-body {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
}

.lcw-r-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

/* ==========================================================================
   FAQ Accordion & Warranty
   ========================================================================== */
.lcw-warranty-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 2.5rem;
}

.lcw-warranty-badge-emblem {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold-gradient-subtle);
  border: 2px solid var(--gold-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 2rem;
}

.lcw-warranty-badge-emblem span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.lcw-warranty-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

.lcw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lcw-faq-item {
  padding: 0;
  overflow: hidden;
}

.lcw-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--metal-platinum);
  cursor: pointer;
  gap: 1rem;
}

.lcw-faq-question:hover {
  color: var(--gold-300);
}

.lcw-faq-toggle-icon {
  font-size: 0.85rem;
  color: var(--gold-400);
  transition: transform var(--transition-fast);
}

.lcw-faq-item.open .lcw-faq-toggle-icon {
  transform: rotate(45deg);
}

.lcw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  padding: 0 1.75rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.7;
}

.lcw-faq-item.open .lcw-faq-answer {
  max-height: 400px;
  padding: 0 1.75rem 1.5rem;
}

/* ==========================================================================
   Contact & Consultation Form
   ========================================================================== */
.lcw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
}

.lcw-contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lcw-contact-channel-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
}

.lcw-contact-channel-card.highlight-whatsapp {
  border-color: rgba(37, 211, 102, 0.35);
  background: radial-gradient(circle at top right, rgba(37, 211, 102, 0.08) 0%, var(--bg-card) 60%);
}

.lcw-cc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lcw-cc-icon-wrap.telegram {
  background: rgba(0, 136, 204, 0.15);
  color: #0088cc;
}

.lcw-cc-info h3 {
  font-size: 1.15rem;
  margin: 0.4rem 0 0.35rem;
}

.lcw-cc-info p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.lcw-contact-info-card {
  padding: 1.75rem;
}

.lcw-c-address {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0.75rem 0 1rem;
}

.lcw-c-hours {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #94a3b8;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

/* Forms */
.lcw-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lcw-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.lcw-form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--metal-platinum);
}

.lcw-input {
  background: var(--bg-obsidian);
  border: 1px solid var(--border-subtle);
  color: var(--metal-platinum);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.lcw-input:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.lcw-form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1rem;
}

/* ==========================================================================
   Shopping Bag & Checkout Page
   ========================================================================== */
.lcw-checkout-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.lcw-cart-table-card {
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.lcw-cart-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}

.lcw-cart-page-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-cpi-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.lcw-cpi-title {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.lcw-cpi-meta {
  font-size: 0.75rem;
  color: #94a3b8;
}

.lcw-cpi-qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.lcw-qty-btn {
  background: transparent;
  border: none;
  color: var(--metal-platinum);
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.lcw-qty-val {
  font-size: 0.85rem;
  padding: 0 0.4rem;
  color: var(--gold-300);
  font-weight: 600;
}

.lcw-cpi-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-300);
}

.lcw-cpi-remove {
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 0.4rem;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.lcw-cpi-remove:hover {
  color: #ef4444;
}

.lcw-complimentary-box-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
}

.lcw-complimentary-box-notice strong {
  color: var(--gold-300);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.2rem;
}

.lcw-complimentary-box-notice p {
  font-size: 0.78rem;
  margin-bottom: 0;
  color: #cbd5e1;
}

/* Timeline */
.lcw-timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.lcw-t-step {
  display: flex;
  flex-direction: column;
}

.lcw-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.lcw-t-step strong {
  font-size: 0.85rem;
  color: var(--metal-platinum);
  margin-bottom: 0.2rem;
}

.lcw-t-step span {
  font-size: 0.72rem;
  color: #94a3b8;
}

/* Checkout Summary Card */
.lcw-checkout-summary-card {
  padding: 2rem;
}

.lcw-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.lcw-sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}

.lcw-sum-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.5rem 0;
}

.lcw-sum-total-row {
  font-size: 1.25rem;
  font-weight: 700;
}

.lcw-checkout-form-fields {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.lcw-checkout-form-fields h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.lcw-checkout-payment-methods {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.lcw-checkout-payment-methods h4 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.lcw-payment-method-card {
  display: block;
  background: rgba(12, 14, 18, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lcw-payment-method-card:hover,
.lcw-payment-method-card.active {
  border-color: var(--gold-400);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lcw-pmc-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lcw-pmc-header input[type="radio"] {
  accent-color: var(--gold-400);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.lcw-pmc-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--metal-platinum);
  flex: 1;
}

.lcw-pmc-icons {
  display: flex;
  gap: 0.4rem;
  color: #94a3b8;
  font-size: 1.1rem;
}

.lcw-pmc-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(0, 112, 186, 0.15);
  border: 1px solid rgba(0, 112, 186, 0.4);
  color: #38bdf8;
}

.lcw-pmc-badge-green {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.lcw-pmc-desc {
  margin-top: 0.5rem;
  padding-left: 1.65rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #94a3b8;
}

.lcw-pmc-desc p {
  margin: 0;
}

.lcw-payment-security-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  line-height: 1.45;
  color: #64748b;
}

.lcw-checkout-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   Modals & Drawers
   ========================================================================== */
.lcw-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all var(--transition-fast);
}

.lcw-modal.active {
  visibility: visible;
  opacity: 1;
}

.lcw-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.lcw-modal-dialog {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
  box-shadow: var(--shadow-lg), var(--gold-glow);
}

.lcw-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--metal-platinum);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
}

.lcw-modal-body {
  padding: 2.5rem;
}

/* Search Modal */
.lcw-search-dialog {
  max-width: 600px;
}

.lcw-search-modal-inner {
  padding: 2.5rem;
}

.lcw-search-title {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.lcw-search-box {
  position: relative;
  margin-bottom: 1.5rem;
}

.lcw-search-input-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-400);
}

.lcw-search-box input {
  width: 100%;
  background: var(--bg-obsidian);
  border: 1px solid var(--border-glass);
  color: var(--metal-platinum);
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
}

.lcw-search-box input:focus {
  outline: none;
  border-color: var(--gold-300);
  box-shadow: var(--gold-glow);
}

.lcw-search-results {
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lcw-search-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: background var(--transition-fast);
}

.lcw-search-item:hover {
  background: rgba(212, 175, 55, 0.1);
}

.lcw-search-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.lcw-search-initial-hint {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  padding: 2rem 0;
}

/* Cart Drawer */
.lcw-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-smooth);
}

.lcw-cart-drawer.active {
  visibility: visible;
  opacity: 1;
}

.lcw-cart-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-obsidian);
  border-left: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.lcw-cart-drawer.active .lcw-cart-drawer-content {
  transform: translateX(0);
}

.lcw-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-cart-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

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

.lcw-cart-drawer-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-cdi-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.lcw-cdi-title {
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.lcw-cdi-price {
  font-size: 0.85rem;
  color: var(--gold-300);
  font-weight: 600;
}

.lcw-cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.lcw-cart-summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}

.lcw-cart-summary-row {
  display: flex;
  justify-content: space-between;
}

.lcw-cart-total-row {
  font-size: 1.1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--gold-300);
}

.lcw-cart-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lcw-cart-guarantees {
  display: flex;
  justify-content: space-around;
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 1rem;
}

/* ==========================================================================
   Floating Widgets & Footer
   ========================================================================== */
.lcw-floating-concierge {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
}

.lcw-floating-whatsapp-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.lcw-floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.lcw-floating-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseGlow 1.8s infinite;
}

.lcw-floating-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--metal-platinum);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.lcw-floating-whatsapp-btn:hover .lcw-floating-tooltip {
  opacity: 1;
}

.lcw-back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--metal-platinum);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  opacity: 0;
  visibility: hidden;
}

.lcw-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.lcw-back-to-top:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-3px);
}

/* Newsletter */
.lcw-newsletter-section {
  padding: 4rem 0 2rem;
}

.lcw-newsletter-card {
  background: radial-gradient(circle at center, rgba(30, 36, 48, 0.8) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lcw-newsletter-title {
  font-size: 1.75rem;
  margin: 0.75rem 0 0.5rem;
}

.lcw-newsletter-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.lcw-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.lcw-newsletter-input {
  flex-grow: 1;
  background: var(--bg-obsidian);
  border: 1px solid var(--border-subtle);
  color: var(--metal-platinum);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.lcw-newsletter-input:focus {
  outline: none;
  border-color: var(--gold-400);
}

.lcw-form-note {
  font-size: 0.72rem;
  color: #64748b;
}

/* Footer Grid */
.lcw-site-footer {
  background: #030406;
  border-top: 1px solid var(--border-subtle);
  padding-top: 4.5rem;
  margin-top: auto;
}

.lcw-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.lcw-footer-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #94a3b8;
  margin: 1.25rem 0 1.5rem;
}

.lcw-footer-social {
  display: flex;
  gap: 0.75rem;
}

.lcw-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--metal-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lcw-social-icon:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.lcw-footer-title {
  font-size: 1.1rem;
  color: var(--metal-platinum);
  margin-bottom: 1.25rem;
}

.lcw-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lcw-footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.lcw-footer-links a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.lcw-footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lcw-contact-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
}

.lcw-gold-icon {
  color: var(--gold-400);
}

.lcw-contact-label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

.lcw-contact-value {
  color: var(--metal-platinum);
  font-weight: 500;
}

.lcw-footer-trust-bar {
  background: #020204;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
}

.lcw-trust-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.lcw-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.lcw-trust-item i {
  color: var(--gold-400);
  font-size: 1.35rem;
}

.lcw-trust-item strong {
  display: block;
  color: var(--metal-platinum);
}

.lcw-trust-item span {
  color: #64748b;
  font-size: 0.75rem;
}

.lcw-sub-footer {
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: #64748b;
}

.lcw-sub-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.lcw-sub-links {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.lcw-sub-links a {
  color: #64748b;
}

.lcw-sub-links a:hover {
  color: var(--gold-400);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .lcw-desktop-nav { display: none; }
  .lcw-mobile-nav-toggle { display: flex; }
  .lcw-hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .lcw-hero-lead { margin-left: auto; margin-right: auto; }
  .lcw-hero-cta-group { justify-content: center; }
  .lcw-hero-trust-metrics { justify-content: center; }
  .lcw-hero-watch-stage { margin-left: auto; margin-right: auto; }
  .lcw-hero-watch-card { margin-left: auto; margin-right: auto; }
  .lcw-product-layout { grid-template-columns: 1fr; }
  .lcw-about-grid { grid-template-columns: 1fr; }
  .lcw-checkout-layout { grid-template-columns: 1fr; }
  .lcw-footer-grid { grid-template-columns: 1fr 1fr; }
  .lcw-newsletter-card { grid-template-columns: 1fr; }
  .lcw-rating-overview-card { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .lcw-topbar-actions { display: none; }
  .lcw-specs-matrix { grid-template-columns: 1fr; }
  .lcw-contact-grid { grid-template-columns: 1fr; }
  .lcw-form-row { grid-template-columns: 1fr; }
  .lcw-warranty-card { grid-template-columns: 1fr; text-align: center; }
  .lcw-warranty-badge-emblem { margin: 0 auto; }
  .lcw-timeline-steps { grid-template-columns: 1fr 1fr; }
  .lcw-footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Elevated Homepage Components (Switcher, Timegrapher, Inspector, Factories, Toast)
   ========================================================================== */

/* 1. Hero Model Switcher Bar */
.lcw-hero-switcher-container {
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.lcw-hero-switcher-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(18, 21, 28, 0.7);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  width: fit-content;
  margin: 0 auto;
}

.lcw-hero-switcher-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--metal-platinum);
  white-space: nowrap;
}

.lcw-hero-switcher-pills {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
}

.lcw-hero-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--metal-steel);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lcw-pill-brand {
  color: var(--gold-400);
  font-weight: 600;
}

.lcw-pill-model {
  font-weight: 500;
}

.lcw-hero-pill:hover,
.lcw-hero-pill.active {
  background: var(--gold-gradient);
  border-color: var(--gold-400);
  color: #000;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.lcw-hero-pill:hover .lcw-pill-brand,
.lcw-hero-pill.active .lcw-pill-brand {
  color: #000;
}

/* 2. Timegrapher Telemetry Dashboard */
.lcw-timegrapher-card {
  padding: 1.25rem 1.5rem;
  background: rgba(12, 14, 18, 0.85);
  border-color: rgba(212, 175, 55, 0.2);
  margin-top: 1.5rem;
}

.lcw-tg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-tg-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--metal-platinum);
}

.lcw-tg-status {
  font-size: 0.72rem;
  color: var(--accent-emerald);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lcw-tg-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  text-align: center;
}

.lcw-tg-cell {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.25rem;
}

.lcw-tg-lbl {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lcw-tg-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--gold-300);
}

/* 3. 3-Way Macro Inspector Studio */
.lcw-macro-inspector-section {
  padding: 5rem 0;
  background: radial-gradient(circle at center, rgba(18, 21, 28, 0.7) 0%, var(--bg-black) 80%);
}

.lcw-inspector-card {
  padding: 2rem;
}

.lcw-inspector-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.lcw-ins-tab {
  background: var(--bg-obsidian);
  border: 1px solid var(--border-subtle);
  color: var(--metal-steel);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.lcw-ins-tab:hover,
.lcw-ins-tab.active {
  background: var(--gold-gradient);
  border-color: var(--gold-400);
  color: #000;
  font-weight: 600;
}

.lcw-inspector-viewport {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.lcw-ins-media-col {
  background: radial-gradient(circle at center, rgba(30, 36, 48, 0.6) 0%, rgba(12, 14, 18, 0.9) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
}

.lcw-ins-img {
  max-height: 360px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.lcw-ins-media-col:hover .lcw-ins-img {
  transform: scale(1.08);
}

.lcw-ins-title {
  font-size: 1.85rem;
  margin: 0.75rem 0 1rem;
}

.lcw-ins-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lcw-ins-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.lcw-ins-spec-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--metal-platinum);
}

/* 4. Factory Laboratories Grid */
.lcw-factories-section {
  padding: 5rem 0;
}

.lcw-factories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.lcw-factory-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.lcw-f-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.lcw-f-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-glass);
  color: var(--gold-400);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lcw-f-header h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.lcw-f-spec {
  font-size: 0.75rem;
  color: var(--gold-400);
  font-weight: 500;
}

.lcw-f-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
}

.lcw-f-features {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--metal-platinum);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

/* 5. Live Recent Buyer Activity Toast */
.lcw-activity-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1050;
  max-width: 380px;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.lcw-activity-toast.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lcw-toast-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(12, 14, 18, 0.95);
  border-color: var(--border-glass);
  box-shadow: var(--shadow-lg), var(--gold-glow);
  position: relative;
}

.lcw-toast-img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.lcw-toast-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lcw-toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.lcw-toast-badge {
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
}

.lcw-toast-time {
  font-size: 0.68rem;
  color: #64748b;
}

.lcw-toast-user {
  font-size: 0.82rem;
  color: var(--metal-platinum);
}

.lcw-toast-watch {
  font-size: 0.75rem;
  color: var(--gold-400);
}

.lcw-toast-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.lcw-toast-close:hover {
  color: var(--metal-platinum);
}

@media (max-width: 1024px) {
  .lcw-inspector-viewport { grid-template-columns: 1fr; }
  .lcw-hero-switcher-bar { width: 100%; border-radius: var(--radius-md); }
}

@media (max-width: 768px) {
  .lcw-activity-toast { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
  .lcw-tg-metrics-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Elevated Single Watch Showcase (Gallery Stage, 4K Video Studio, Sticky Bar)
   ========================================================================== */

/* Main Stage Multi-View (Image / Video) */
.lcw-product-main-image {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(30, 36, 48, 0.7) 0%, rgba(12, 14, 18, 0.98) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lcw-stage-view {
  display: none;
  width: 100%;
  text-align: center;
}

.lcw-stage-view.active {
  display: block;
  animation: lcwFadeIn 0.3s ease;
}

@keyframes lcwFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* Gallery Thumbnails Ribbon */
.lcw-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.lcw-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  background: rgba(18, 21, 28, 0.8);
  border: 2px solid var(--border-subtle);
  padding: 0.35rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lcw-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lcw-thumb:hover,
.lcw-thumb.active {
  border-color: var(--gold-400);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

/* Video Thumbnail Button */
.lcw-thumb-video {
  background: linear-gradient(135deg, #1e1b4b 0%, #0d1117 100%);
  border-color: rgba(212, 175, 55, 0.4);
  flex-direction: column;
  gap: 0.25rem;
}

.lcw-thumb-video-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.lcw-thumb-video-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trust Guarantee Strip */
.lcw-product-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  background: rgba(18, 21, 28, 0.6);
}

.lcw-pts-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
}

.lcw-pts-item i {
  font-size: 1.2rem;
  color: var(--gold-400);
}

.lcw-pts-item strong {
  display: block;
  color: var(--metal-platinum);
  font-size: 0.8rem;
}

.lcw-pts-item span {
  display: block;
  color: #64748b;
  font-size: 0.7rem;
}

/* 4K Video Demonstration Studio Section */
.lcw-video-studio-section {
  padding: 4rem 0;
  background: radial-gradient(circle at center, rgba(30, 36, 48, 0.5) 0%, var(--bg-black) 90%);
}

.lcw-video-studio-card {
  padding: 2.5rem;
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.08);
}

.lcw-vstudio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.lcw-vstudio-title {
  font-size: 1.85rem;
  margin: 0.5rem 0 1rem;
}

.lcw-vstudio-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.lcw-vstudio-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lcw-vf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--metal-platinum);
}

.lcw-vf-item i {
  margin-top: 0.2rem;
}

/* Technical Specifications Table */
.lcw-product-specs-section {
  padding: 4rem 0;
}

.lcw-specs-matrix-card {
  padding: 2rem;
  overflow-x: auto;
}

.lcw-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.lcw-specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.lcw-specs-table tr:last-child {
  border-bottom: none;
}

.lcw-specs-table th {
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--metal-platinum);
  width: 35%;
  background: rgba(255, 255, 255, 0.015);
}

.lcw-specs-table th i {
  margin-right: 0.45rem;
}

.lcw-specs-table td {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

/* Sticky Bottom Action Bar */
.lcw-sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(12, 14, 18, 0.96);
  border-top: 1px solid var(--border-glass);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.lcw-sticky-buy-bar.visible {
  transform: translateY(0);
}

.lcw-sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.lcw-sticky-watch {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lcw-sticky-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.lcw-sticky-text strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.lcw-sticky-price {
  font-family: var(--font-serif);
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.95rem;
}

.lcw-sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

@media (max-width: 768px) {
  .lcw-product-trust-strip { grid-template-columns: 1fr; }
  .lcw-sticky-watch { display: none; }
  .lcw-sticky-actions { width: 100%; }
  .lcw-sticky-actions .lcw-btn { flex: 1; }
  .lcw-specs-table th { width: 45%; }
}

/* ==========================================================================
   Homepage Presentation Section (.lcw-presentation-section)
   ========================================================================== */
.lcw-presentation-section {
  padding: 5rem 0;
  background: var(--bg-dark);
}

.lcw-presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lcw-presentation-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid var(--border-glass);
}

.lcw-presentation-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.lcw-presentation-media:hover .lcw-presentation-img {
  transform: scale(1.03);
}

.lcw-presentation-title {
  font-size: 2.25rem;
  margin: 1rem 0 1.25rem;
  line-height: 1.2;
}

.lcw-presentation-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.lcw-presentation-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.lcw-p-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lcw-p-feature i {
  font-size: 1.25rem;
  margin-top: 0.15rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lcw-p-feature strong {
  display: block;
  font-size: 1.05rem;
  color: #f8fafc;
  margin-bottom: 0.25rem;
}

.lcw-p-feature span {
  display: block;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .lcw-presentation-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   Homepage Reviews Teaser Section (.lcw-reviews-teaser-section)
   ========================================================================== */
.lcw-reviews-teaser-section {
  padding: 5rem 0;
  background: var(--bg-surface);
  position: relative;
}

.lcw-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.lcw-review-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.lcw-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border-color: rgba(212,175,55,0.3);
}

.lcw-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.lcw-review-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lcw-review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.lcw-reviewer {
  border-top: 1px solid var(--border-glass);
  padding-top: 1rem;
}

.lcw-reviewer strong {
  display: block;
  font-size: 0.95rem;
  color: #f8fafc;
  margin-bottom: 0.15rem;
}

.lcw-reviewer span {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

@media (max-width: 991px) {
  .lcw-reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

