:root {
  --brand-primary: #E7D8C3;
  --brand-secondary: #2C2416;
  --brand-accent: #A89078;
  --brand-bg: #FBF8F4;
  --brand-bg-alt: #F5EFE7;
  --brand-text-primary: #2C2416;
  --brand-text-secondary: #544A3D;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", Times, serif;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--brand-bg);
}

body {
  font-family: var(--font-sans);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
}

button, input, select, textarea {
  font-family: inherit;
}

.brand-logo {
  object-fit: contain;
}

.landing-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border: 0;
  background: transparent;
}

.landing-main {
  position: relative;
  z-index: 1;
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.landing-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.landing-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(44, 36, 22, 0.35) 0%,
    rgba(44, 36, 22, 0.08) 35%,
    rgba(44, 36, 22, 0.12) 65%,
    rgba(44, 36, 22, 0.45) 100%);
  opacity: 1;
}

@supports (background: linear-gradient(to bottom, color-mix(in srgb, black 30%, transparent), transparent)) {
  .landing-hero-overlay {
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--brand-secondary) 35%, transparent) 0%,
      color-mix(in srgb, var(--brand-secondary) 8%, transparent) 35%,
      color-mix(in srgb, var(--brand-secondary) 12%, transparent) 65%,
      color-mix(in srgb, var(--brand-secondary) 45%, transparent) 100%);
    opacity: 1;
  }
}

.landing-video-desktop {
  display: none;
}

@media (min-width: 992px) {
  .landing-video-mobile {
    display: none;
  }
  .landing-video-desktop {
    display: block;
  }
}

.landing-hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
  height: 70px;
}

.landing-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

@supports (background: color-mix(in srgb, white 50%, transparent)) {
  .landing-nav {
    background: linear-gradient(180deg, 
      rgba(251, 248, 244, 0.92) 0%, 
      rgba(251, 248, 244, 0.88) 100%);
    backdrop-filter: blur(16px) saturate(1.3);
    box-shadow: 0 1px 0 rgba(231, 216, 195, 0.3),
                0 4px 24px rgba(44, 36, 22, 0.06);
    border-bottom: 1px solid rgba(231, 216, 195, 0.4);
  }
}

.landing-icon-btn {
  --bs-btn-padding-x: 0.65rem;
  --bs-btn-padding-y: 0.65rem;
  --bs-btn-border-width: 1px;
  --bs-btn-color: var(--brand-secondary);
  --bs-btn-bg: transparent;
  --bs-btn-hover-color: var(--brand-secondary);
  --bs-btn-hover-bg: transparent;
  --bs-btn-active-color: var(--brand-secondary);
  --bs-btn-active-bg: transparent;
  border: 1px solid rgba(231, 216, 195, 0.3);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@supports (background: color-mix(in srgb, white 50%, transparent)) {
  .landing-icon-btn:hover {
    background: rgba(231, 216, 195, 0.25);
    border-color: rgba(231, 216, 195, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 216, 195, 0.3);
  }
}

.landing-icon-btn:active {
  transform: translateY(0);
}

.landing-icon-btn:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  border-color: var(--brand-primary);
}

.landing-link-btn {
  --bs-btn-padding-x: 1.25rem;
  --bs-btn-padding-y: 0.65rem;
  --bs-btn-border-width: 1px;
  --bs-btn-color: var(--brand-secondary);
  --bs-btn-bg: transparent;
  --bs-btn-hover-color: var(--brand-bg);
  --bs-btn-hover-bg: var(--brand-secondary);
  --bs-btn-active-color: var(--brand-bg);
  --bs-btn-active-bg: var(--brand-secondary);
  border: 1px solid var(--brand-secondary);
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@supports (background: color-mix(in srgb, white 50%, transparent)) {
  .landing-link-btn:hover {
    background: var(--brand-secondary);
    color: var(--brand-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 36, 22, 0.25);
  }
}

.landing-link-btn:active {
  transform: translateY(0);
}

.landing-link-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: rgba(44, 36, 22, 0.3);
  color: rgba(44, 36, 22, 0.5);
}

.landing-link-btn[aria-disabled="true"]:hover {
  background: transparent;
  color: rgba(44, 36, 22, 0.5);
  transform: none;
  box-shadow: none;
}

.landing-link-btn:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.landing-link-btn[aria-current="page"],
.landing-link-btn.is-current {
  background: var(--brand-secondary);
  color: var(--brand-bg);
}

.landing-link-btn[aria-current="page"]:hover,
.landing-link-btn.is-current:hover {
  background: var(--brand-secondary);
  color: var(--brand-bg);
  transform: translateY(-1px);
}

.boutique-main {
  padding-top: 92px;
}

.boutique-hero {
  background: 
    linear-gradient(135deg, #1a1510 0%, #2C2416 25%, #3d2f1f 50%, #2C2416 75%, #1a1510 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent !important;
  border-image: linear-gradient(90deg, 
    transparent 0%, 
    #d4a574 15%, 
    #f4e4c1 30%, 
    #d4a574 45%, 
    #f4e4c1 50%, 
    #d4a574 55%, 
    #f4e4c1 70%, 
    #d4a574 85%, 
    transparent 100%) 1;
  box-shadow: 
    0 4px 20px rgba(212, 165, 116, 0.3),
    inset 0 1px 0 rgba(244, 228, 193, 0.1);
}

/* Add sparkle effect overlay */
.boutique-hero-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(244, 228, 193, 0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(212, 165, 116, 0.6) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 40px 40px;
  opacity: 0;
  animation: sparkle 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes sparkle {
  0%, 100% { 
    opacity: 0;
    transform: scale(1);
  }
  10%, 30% { 
    opacity: 0.3;
    transform: scale(1.05);
  }
  20% {
    opacity: 0.6;
  }
  40%, 90% {
    opacity: 0;
  }
}

.boutique-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(244, 228, 193, 0.08) 25%, 
    rgba(212, 165, 116, 0.15) 50%, 
    rgba(244, 228, 193, 0.08) 75%, 
    transparent 100%);
  animation: luxShimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.boutique-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244, 228, 193, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes luxShimmer {
  0%, 100% { 
    transform: translateX(0);
    opacity: 0.5;
  }
  50% { 
    transform: translateX(50%);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.boutique-fade-in {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.boutique-badge {
  animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
  transform: translateX(-30px);
  position: relative;
}

.boutique-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #d4a574, #f4e4c1, #d4a574);
  border-radius: inherit;
  opacity: 0;
  animation: badgePulse 3s ease-in-out infinite;
  z-index: -1;
  filter: blur(8px);
}

@keyframes badgePulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.boutique-title {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 165, 116, 0.2),
    0 0 60px rgba(244, 228, 193, 0.1);
  background: linear-gradient(135deg, #f4e4c1 0%, #d4a574 50%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.boutique-subtitle {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  opacity: 0;
  color: rgba(244, 228, 193, 0.9) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Mobile-first optimizations for boutique hero */
@media (max-width: 768px) {
  .boutique-hero {
    padding-top: 80px !important;
    padding-bottom: 60px !important;
  }
  
  .boutique-hero::before {
    animation-duration: 4s;
  }
  
  .boutique-badge {
    transform: scale(0.95);
  }
  
  .boutique-badge::before {
    animation-duration: 2s;
  }
  
  .boutique-title {
    letter-spacing: -1px !important;
    text-shadow: 
      0 2px 4px rgba(0, 0, 0, 0.4),
      0 0 40px rgba(212, 165, 116, 0.3),
      0 0 80px rgba(244, 228, 193, 0.15);
  }
  
  .boutique-subtitle {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
  }
}

@media (max-width: 480px) {
  .boutique-hero {
    padding-top: 60px !important;
    padding-bottom: 50px !important;
  }
  
  .boutique-badge {
    padding: 0.5rem 1rem !important;
    gap: 0.5rem !important;
  }
  
  .boutique-badge svg {
    width: 12px !important;
    height: 12px !important;
  }
  
  .boutique-badge span {
    font-size: 0.65rem !important;
    letter-spacing: 2px !important;
  }
}

.catalog-header-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Catalog Show More Button */
.catalog-show-more-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.catalog-show-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(231, 216, 195, 0.45), 
              0 4px 12px rgba(44, 36, 22, 0.15) !important;
  background: linear-gradient(135deg, var(--brand-primary) 0%, rgba(231, 216, 195, 0.95) 100%) !important;
}

.catalog-show-more-btn svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.catalog-show-more-btn:hover svg {
  transform: translateX(5px);
}

/* Catalog Page Styles */
.catalog-main {
  padding-top: 92px;
  background: var(--brand-bg);
}

.catalog-hero {
  background: linear-gradient(180deg, rgba(231, 216, 195, 0.45) 0%, rgba(251, 248, 244, 0.95) 55%, var(--brand-bg) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(231, 216, 195, 0.5);
}

.catalog-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231, 216, 195, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 18s ease-in-out infinite;
  pointer-events: none;
}

.catalog-hero::after {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -12%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(231, 216, 195, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 22s ease-in-out infinite reverse;
  pointer-events: none;
}

.catalog-fade-in {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.catalog-badge {
  animation: slideInLeft 0.8s ease-out 0.2s forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.catalog-title {
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.catalog-subtitle {
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

.catalog-stats-badge {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.catalog-breadcrumb:hover {
  color: var(--brand-text-primary) !important;
  transform: translateX(-4px);
}

.catalog-breadcrumb svg {
  transition: transform 0.3s ease;
}

.catalog-breadcrumb:hover svg {
  transform: translateX(-3px);
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.catalog-product-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.catalog-product-card:nth-child(1) { animation-delay: 0.1s; }
.catalog-product-card:nth-child(2) { animation-delay: 0.15s; }
.catalog-product-card:nth-child(3) { animation-delay: 0.2s; }
.catalog-product-card:nth-child(4) { animation-delay: 0.25s; }
.catalog-product-card:nth-child(5) { animation-delay: 0.3s; }
.catalog-product-card:nth-child(6) { animation-delay: 0.35s; }
.catalog-product-card:nth-child(7) { animation-delay: 0.4s; }
.catalog-product-card:nth-child(8) { animation-delay: 0.45s; }
.catalog-product-card:nth-child(9) { animation-delay: 0.5s; }
.catalog-product-card:nth-child(10) { animation-delay: 0.55s; }
.catalog-product-card:nth-child(11) { animation-delay: 0.6s; }
.catalog-product-card:nth-child(12) { animation-delay: 0.65s; }
.catalog-product-card:nth-child(n+13) { animation-delay: 0.7s; }

@media (max-width: 575.98px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

/* Catalog Product Card */
.catalog-product-card {
  background: linear-gradient(180deg, var(--brand-bg) 0%, rgba(251, 248, 244, 0.98) 100%);
  border: 1px solid rgba(231, 216, 195, 0.45);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(44, 36, 22, 0.09),
              0 3px 10px rgba(44, 36, 22, 0.07),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.catalog-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brand-primary) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 420ms ease;
  z-index: 10;
}

.catalog-product-card:hover::before {
  opacity: 1;
}

.catalog-product-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 16px 40px rgba(231, 216, 195, 0.3),
              0 8px 20px rgba(44, 36, 22, 0.14),
              0 0 0 1px var(--brand-primary),
              inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-6px);
}

.catalog-product-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: linear-gradient(135deg, var(--brand-bg-alt) 0%, rgba(251, 248, 244, 0.5) 100%);
  border-radius: 14px 14px 0 0;
  transition: transform 580ms cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.4s ease;
}

.catalog-product-card:hover .catalog-product-img {
  transform: scale(1.06);
  filter: brightness(1.03) saturate(1.1);
}

.catalog-product-card:hover .product-card-shimmer {
  left: 150%;
}

.catalog-product-card:hover .product-card-icon {
  background: var(--brand-primary) !important;
  transform: scale(1.1) rotate(45deg);
  box-shadow: 0 4px 12px rgba(231, 216, 195, 0.4);
}

.catalog-product-card:hover .product-card-icon svg {
  color: var(--brand-secondary) !important;
  transform: rotate(-45deg);
}

.catalog-product-card:hover .product-price::after {
  width: 100%;
}

/* Back to Shop Button */
.catalog-back-to-shop-btn {
  position: relative;
  overflow: hidden;
}

.catalog-back-to-shop-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, rgba(231, 216, 195, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.catalog-back-to-shop-btn:hover {
  color: var(--brand-secondary) !important;
  border-color: var(--brand-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 216, 195, 0.35);
}

.catalog-back-to-shop-btn:hover::before {
  opacity: 1;
}

.catalog-back-to-shop-btn svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.catalog-back-to-shop-btn:hover svg {
  transform: translateX(-5px);
}

/* ============================================
   Product Detail Page Styles
   ============================================ */

.product-main {
  padding-top: 92px;
  background: var(--brand-bg);
  min-height: 100vh;
}

.product-page {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Breadcrumb */
.product-breadcrumb {
  font-size: 0.9rem;
}

.breadcrumb-link {
  color: var(--brand-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: var(--brand-text-primary);
  transform: translateX(-2px);
}

.breadcrumb-separator {
  color: var(--brand-accent);
  opacity: 0.5;
  margin: 0 0.25rem;
}

.breadcrumb-current {
  color: var(--brand-text-primary);
  font-weight: 600;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 100px;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-main-image-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-bg-alt) 0%, rgba(251, 248, 244, 0.5) 100%);
  box-shadow: 0 12px 40px rgba(44, 36, 22, 0.12),
              0 6px 20px rgba(44, 36, 22, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(231, 216, 195, 0.4);
}

.product-main-image-container {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: zoom-in;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

.product-main-image.active {
  opacity: 1;
  position: relative;
}

.product-main-image-container:hover .product-main-image.active {
  transform: scale(1.08);
}

.product-image-zoom-hint {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(251, 248, 244, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-text-primary);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(44, 36, 22, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(231, 216, 195, 0.5);
}

.product-main-image-container:hover .product-image-zoom-hint {
  opacity: 1;
  transform: scale(1.1);
}

/* Thumbnails */
.product-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-primary) transparent;
}

.product-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.product-thumbnails::-webkit-scrollbar-track {
  background: rgba(231, 216, 195, 0.2);
  border-radius: 10px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 10px;
}

.product-thumbnail {
  flex: 0 0 80px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--brand-bg-alt);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding: 0;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-thumbnail:hover {
  border-color: var(--brand-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(231, 216, 195, 0.3);
}

.product-thumbnail:hover img {
  transform: scale(1.1);
}

.product-thumbnail.active {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 16px rgba(231, 216, 195, 0.4);
}

.product-thumbnail.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(231, 216, 195, 0.3) 100%);
  pointer-events: none;
}

/* Product Info */
.product-info {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-badge {
  background: linear-gradient(135deg, rgba(231, 216, 195, 0.25) 0%, rgba(231, 216, 195, 0.12) 100%);
  border: 1px solid rgba(231, 216, 195, 0.5);
  border-radius: 999px;
  color: var(--brand-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 2px 8px rgba(231, 216, 195, 0.15);
  animation: slideInDown 0.6s ease-out 0.2s backwards;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--brand-text-primary);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideInDown 0.6s ease-out 0.3s backwards;
}

/* Price Section */
.product-price-section {
  animation: slideInDown 0.6s ease-out 0.4s backwards;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-text-primary);
  letter-spacing: -0.5px;
}

.product-compare-price {
  font-size: 1.4rem;
  color: var(--brand-text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

.product-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.product-description {
  color: var(--brand-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  animation: slideInDown 0.6s ease-out 0.5s backwards;
}

/* Variant Selector */
.product-form {
  animation: slideInDown 0.6s ease-out 0.6s backwards;
}

.variant-group {
  position: relative;
}

.variant-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-option {
  padding: 0.65rem 1.3rem;
  border: 2px solid rgba(231, 216, 195, 0.4);
  border-radius: 12px;
  background: var(--brand-bg);
  color: var(--brand-text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.variant-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, rgba(231, 216, 195, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.variant-option span,
.variant-option::after {
  position: relative;
  z-index: 1;
}

.variant-option:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 216, 195, 0.3);
}

.variant-option.active {
  border-color: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: 0 4px 16px rgba(231, 216, 195, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.variant-option.active::before {
  opacity: 1;
}

.variant-option.active::after {
  content: '✓';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(44, 36, 22, 0.3);
}

.variant-option:disabled,
.variant-option.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.variant-option:disabled::after,
.variant-option.disabled::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--brand-text-secondary);
  transform: translateY(-50%) rotate(-15deg);
  opacity: 0.5;
}

.variant-option:disabled:hover,
.variant-option.disabled:hover {
  border-color: rgba(231, 216, 195, 0.4);
  transform: none;
  box-shadow: none;
}

/* Stock Badge */
.product-stock {
  animation: slideInDown 0.6s ease-out 0.7s backwards;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.stock-badge.in-stock {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.stock-badge.out-of-stock {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* SKU Display */
.product-sku {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--brand-text-secondary);
  padding: 0.5rem 0;
  animation: slideInDown 0.6s ease-out 0.75s backwards;
}

.sku-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sku-value {
  font-family: monospace;
  background: rgba(231, 216, 195, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: var(--brand-text-primary);
  font-weight: 600;
}

/* Add to Cart Button */
.product-add-to-cart {
  width: 100%;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, var(--brand-primary) 0%, rgba(231, 216, 195, 0.9) 100%);
  border: 2px solid var(--brand-primary);
  border-radius: 16px;
  color: var(--brand-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(231, 216, 195, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  animation: slideInDown 0.6s ease-out 0.8s backwards;
}

.product-add-to-cart::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.product-add-to-cart:hover::before {
  width: 300px;
  height: 300px;
}

.product-add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(231, 216, 195, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, var(--brand-primary) 0%, rgba(231, 216, 195, 1) 100%);
}

.product-add-to-cart:active {
  transform: translateY(-1px);
}

.product-add-to-cart:disabled {
  background: linear-gradient(135deg, rgba(168, 144, 120, 0.3) 0%, rgba(168, 144, 120, 0.2) 100%);
  border-color: rgba(168, 144, 120, 0.4);
  color: var(--brand-text-secondary);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.product-add-to-cart svg {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.product-add-to-cart:hover:not(:disabled) svg {
  transform: scale(1.1) rotate(5deg);
}

.product-add-to-cart span {
  position: relative;
  z-index: 1;
}

/* Product Features */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(231, 216, 195, 0.15) 0%, rgba(231, 216, 195, 0.08) 100%);
  border-radius: 14px;
  border: 1px solid rgba(231, 216, 195, 0.3);
  animation: slideInDown 0.6s ease-out 0.9s backwards;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-item svg {
  color: var(--brand-accent);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .product-gallery {
    position: static;
    margin-bottom: 2rem;
  }

  .product-title {
    font-size: clamp(1.75rem, 5vw, 2.2rem);
  }

  .product-price {
    font-size: 1.8rem;
  }

  .product-main-image-wrapper {
    border-radius: 16px;
  }
}

@media (max-width: 575.98px) {
  .product-main {
    padding-top: 75px;
  }

  .product-thumbnail {
    flex: 0 0 70px;
    height: 88px;
  }

  .variant-option {
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
  }

  .product-add-to-cart {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .product-features {
    padding: 1.2rem;
  }

  .feature-item {
    font-size: 0.88rem;
  }
}

.landing-featured .featured-track.catalog-track {
  --featured-card-width: 190px;
  --featured-inactive-scale: 0.95;
  --featured-active-scale: 1.0;
  padding: 22px 0 26px;
}

.landing-featured .featured-track.catalog-track {
  gap: 16px;
}

.landing-featured .featured-card.catalog-card {
  text-decoration: none;
  user-select: none;
  -webkit-user-drag: none;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.1), 
              0 4px 12px rgba(231, 216, 195, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.landing-featured .featured-card.catalog-card:hover {
  transform: scale(var(--featured-inactive-scale)) translateY(-8px) !important;
  box-shadow: 0 24px 56px rgba(231, 216, 195, 0.4),
              0 16px 32px rgba(44, 36, 22, 0.2),
              0 0 0 2px var(--brand-primary),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.catalog-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}

.landing-featured .featured-card.catalog-card:hover .catalog-card-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.landing-featured .featured-card.catalog-card .catalog-card-img {
  aspect-ratio: 5 / 4;
  border-radius: 12px;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              filter 0.4s ease;
}

.landing-featured .featured-card.catalog-card:hover .catalog-card-img {
  transform: scale(1.1);
  filter: brightness(1.08) contrast(1.08) saturate(1.1);
}

.catalog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(44, 36, 22, 0.00) 30%,
    rgba(44, 36, 22, 0.70) 82%,
    rgba(44, 36, 22, 0.90) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  z-index: 1;
  transition: background 0.4s ease, padding 0.3s ease;
}

.landing-featured .featured-card.catalog-card:hover .catalog-card-overlay {
  background: linear-gradient(180deg,
    rgba(44, 36, 22, 0.00) 20%,
    rgba(44, 36, 22, 0.80) 75%,
    rgba(44, 36, 22, 0.95) 100%);
  padding: 24px;
}

.catalog-card-title {
  color: var(--brand-bg);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5), 
               0 6px 24px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.catalog-card-arrow {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0);
}

.landing-featured .featured-card.catalog-card:hover .catalog-card-arrow {
  transform: translateX(8px);
  opacity: 1 !important;
}

/* Catalog Card Description */
.catalog-card-description {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 0;
  overflow: hidden;
}

.landing-featured .featured-card.catalog-card:hover .catalog-card-description {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
  margin-top: 6px;
}

@media (max-width: 575.98px) {
  .landing-featured .featured-track.catalog-track {
    --featured-card-width: 180px;
    gap: 14px;
    padding: 24px 0 28px;
  }
  .catalog-card-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }
  .catalog-card-overlay {
    padding: 16px;
  }
  .catalog-card-description {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .landing-featured .featured-card.catalog-card:hover .catalog-card-description {
    max-height: 80px;
  }
}

.landing-nav-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.landing-nav-logo img {
  width: 74px;
  height: 74px;
}

@media (max-width: 575.98px) {
  .landing-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }

  .landing-nav-logo {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    padding: 0.25rem;
    border-radius: 14px;
  }

  .landing-nav-logo:hover {
    transform: scale(1.06) !important;
  }

  .landing-nav-logo:active {
    transform: scale(1.02) !important;
  }

  .landing-nav .container > .d-flex {
    flex: 1;
    justify-content: flex-end !important;
    gap: 8px !important;
    min-width: 0;
    flex-wrap: nowrap;
  }

  .landing-link-btn {
    --bs-btn-padding-x: 0.9rem;
    --bs-btn-padding-y: 0.55rem;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .landing-icon-btn {
    --bs-btn-padding-x: 0.55rem;
    --bs-btn-padding-y: 0.55rem;
    border-radius: 12px;
  }
}

.landing-nav-logo:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(231, 216, 195, 0.15);
  box-shadow: 0 4px 16px rgba(231, 216, 195, 0.3);
}

.landing-nav-logo:active {
  transform: translate(-50%, -50%) scale(1.02);
}

.landing-nav-logo:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, 
    rgba(231, 216, 195, 0.15) 0%, 
    transparent 50%);
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

.landing-hero-content {
  position: absolute;
  z-index: 2;
  top: auto;
  left: calc(24px + env(safe-area-inset-left));
  right: calc(24px + env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: auto;
  max-width: none;
  padding: 0;
  transform: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-panel {
  max-width: 480px;
  margin: 0;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-panel::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(244, 228, 193, 0.4) 15%,
    #d4a574 35%,
    #f4e4c1 50%,
    #d4a574 65%,
    rgba(244, 228, 193, 0.4) 85%, 
    transparent 100%);
  opacity: 1;
  filter: blur(1px);
  animation: topGlowPulse 3s ease-in-out infinite;
}

@keyframes topGlowPulse {
  0%, 100% { 
    opacity: 0.7;
    filter: blur(1px);
  }
  50% { 
    opacity: 1;
    filter: blur(2px);
  }
}

.landing-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at top center, rgba(244, 228, 193, 0.12) 0%, transparent 60%),
    radial-gradient(circle at bottom left, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
    radial-gradient(circle at bottom right, rgba(244, 228, 193, 0.08) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.8;
  animation: subtleGlow 4s ease-in-out infinite;
}

@keyframes subtleGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Mobile-first Premium Design for Landing Panel */
.landing-panel.lux-card {
  --lux-bg: rgba(231, 216, 195, 0.45);
  --lux-border: rgba(255, 255, 255, 0.4);
  --lux-shadow: rgba(44, 36, 22, 0.1);
  
  background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.1) 0%, 
      rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid var(--lux-border);
  border-radius: 20px;
  padding: 1.5rem 1.5rem;
  /* position: relative & overflow handled in media query block below */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 
    0 20px 60px -10px var(--lux-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  max-width: 380px;
  /* Reset previous max-width override */
  margin: 0 auto;
}

.landing-panel-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-text-secondary);
  font-weight: 600;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.landing-panel-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--brand-text-primary);
  margin: 0;
  font-weight: 500;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #2C2416 0%, #544A3D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Drop shadow not supported with text-fill-color transparent usually */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.landing-panel-separator {
  width: 40px;
  height: 2px;
  background: var(--brand-accent);
  margin: 0.75rem auto;
  opacity: 0.6;
}

.landing-panel-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--brand-text-secondary);
  margin-bottom: 1.25rem;
  font-style: italic;
  max-width: 90%;
}

.landing-panel-btn-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  background: var(--brand-text-primary);
  color: var(--brand-bg);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(44, 36, 22, 0.25);
  position: relative;
  overflow: hidden;
  animation: btnBreathing 4s ease-in-out infinite;
}

@keyframes btnBreathing {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 10px 30px rgba(44, 36, 22, 0.25); }
  50% { transform: translateY(-2px) scale(1.02); box-shadow: 0 15px 35px rgba(44, 36, 22, 0.3); }
}

@keyframes btnShimmerLoop {
  0% { transform: translateX(-100%); }
  20% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.landing-panel-btn-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  /* transition: transform 0.6s ease; - Removed in favor of animation for auto-play */
  animation: btnShimmerLoop 3s infinite;
  animation-delay: 1s;
}

.landing-panel-btn-new:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(44, 36, 22, 0.35);
  background: black;
  color: white;
  animation: none; /* Stop breathing on hover to lock state */
}

.landing-panel-btn-new:hover::before {
  /* transform: translateX(100%); handled by animation usually, but we can restart it or let it run */
  animation: none; /* Stop the loop */
  transform: translateX(100%); /* Ensure it finishes if hover happens */
  transition: transform 0.4s ease;
}

.landing-panel-btn-new svg {
  transition: transform 0.3s ease;
}

.landing-panel-btn-new:hover svg {
  transform: translateX(4px);
}

/* Mobile Tweaks */
@media (max-width: 576px) {
  .landing-hero-content {
    /* Align to bottom for mobile "sheet" feel */
    align-items: flex-end;
    padding-bottom: 12px;
  }

  .landing-panel.lux-card {
    width: 100%;
    max-width: 100%;
    margin: 0 24px; /* Larger margins = smaller card */
    padding: 1.25rem 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6); /* Slightly more transparent */
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
      0 10px 40px rgba(0,0,0,0.1),
      inset 0 0 0 1px rgba(255,255,255,0.5);
  }

  .landing-panel-title {
    font-size: 2rem;
  }
  
  .landing-panel-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .landing-panel-btn-new {
    width: 100%; /* Full width button on mobile */
    padding: 0.75rem;
  }
}

.landing-lookbook .carousel.slide {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 36, 22, 0.15),
              0 10px 30px rgba(44, 36, 22, 0.1),
              0 0 0 1px rgba(231, 216, 195, 0.4);
  border: none;
  background: var(--brand-bg);
  position: relative;
}

.landing-lookbook .carousel-item {
  height: 560px;
  background: linear-gradient(135deg, var(--brand-bg) 0%, var(--brand-bg-alt) 100%);
  position: relative;
  transition: transform 0.6s ease;
}

@media (max-width: 576px) {
  .landing-lookbook .carousel-item {
    height: 85vh;
    min-height: 600px;
  }
}

.landing-lookbook .lookbook-slide-bg,
.landing-lookbook .lookbook-slide-img {
  width: 100%;
  height: 100%;
}

.landing-lookbook .lookbook-slide-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: blur(24px) saturate(1.2);
  transform: scale(1.12);
  opacity: 0.3;
  animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  0% { transform: scale(1.12); }
  100% { transform: scale(1.18); }
}

.landing-lookbook .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, 
    transparent 0%, 
    rgba(44, 36, 22, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.landing-lookbook .lookbook-slide-img {
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(44, 36, 22, 0.2));
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing-lookbook .carousel-item.active .lookbook-slide-img {
  animation: slideInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideInScale {
  0% { 
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% { 
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 767.98px) {
  .landing-lookbook .lookbook-slide-bg {
    display: none;
  }

  .landing-lookbook .carousel-item {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .landing-lookbook .lookbook-slide-img {
    object-fit: cover;
    object-position: top center;
  }
  
  .landing-lookbook .carousel-caption {
    left: 5%;
    right: 5%;
    bottom: 5%;
  }
  
  .landing-lookbook .lookbook-caption-inner {
    padding: 16px 20px;
  }
  
  .landing-lookbook .lookbook-caption-inner h5 {
    font-size: 1.25rem;
  }
  
  .landing-lookbook .lookbook-caption-inner p {
    font-size: 0.9rem;
  }
}

.landing-lookbook .carousel-caption {
  text-align: left;
  z-index: 3;
  left: 8%;
  right: 8%;
  bottom: 8%;
}

.landing-lookbook .lookbook-caption-inner {
  position: relative;
  display: inline-block;
  max-width: min(600px, 100%);
  padding: 20px 28px;
  border-radius: 18px;
  color: var(--brand-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.landing-lookbook .carousel-item.active .lookbook-caption-inner {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-lookbook .lookbook-caption-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, 
    rgba(44, 36, 22, 0.85) 0%, 
    rgba(44, 36, 22, 0.75) 100%);
  z-index: -1;
}

@supports (backdrop-filter: blur(16px)) {
  .landing-lookbook .lookbook-caption-inner {
    backdrop-filter: blur(16px) saturate(1.5);
  }
  .landing-lookbook .lookbook-caption-inner::before {
    background: linear-gradient(135deg, 
      rgba(44, 36, 22, 0.7) 0%, 
      rgba(44, 36, 22, 0.6) 100%);
  }
}

.landing-lookbook .lookbook-caption-inner:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 216, 195, 0.5);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.3);
}

.landing-lookbook .lookbook-caption-inner h5 {
  color: var(--brand-bg);
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--font-serif);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.landing-lookbook .lookbook-caption-inner p {
  color: rgba(251, 248, 244, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.landing-featured .product-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: linear-gradient(135deg, var(--brand-bg-alt) 0%, rgba(251, 248, 244, 0.5) 100%);
  border-radius: 12px 12px 0 0;
  transition: transform 580ms cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.4s ease,
              box-shadow 0.4s ease;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.product-card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

/* Product Variant Badge */
.product-variant-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(44, 36, 22, 0.9);
  backdrop-filter: blur(8px);
  color: var(--brand-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(231, 216, 195, 0.2);
}

.product-card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.product-card:hover .product-card-shimmer,
.product-card-enhanced:hover .product-card-shimmer {
  left: 150%;
}

.product-card,
.product-card-enhanced {
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: linear-gradient(180deg, var(--brand-bg) 0%, rgba(251, 248, 244, 0.98) 100%);
  border: 1px solid rgba(231, 216, 195, 0.45);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(44, 36, 22, 0.09),
              0 3px 10px rgba(44, 36, 22, 0.07),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.product-card::before,
.product-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brand-primary) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 420ms ease;
  z-index: 10;
}

.product-card:hover::before,
.product-card-enhanced:hover::before {
  opacity: 1;
}

.product-card:hover,
.product-card-enhanced:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 16px 40px rgba(231, 216, 195, 0.3),
              0 8px 20px rgba(44, 36, 22, 0.14),
              0 0 0 1px var(--brand-primary),
              inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-6px);
}

.product-card:hover .product-card-img,
.product-card-enhanced:hover .product-card-img {
  transform: scale(1.06);
  filter: brightness(1.03) saturate(1.1);
}

.product-card .product-card-img,
.product-card-enhanced .product-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: linear-gradient(135deg, var(--brand-bg-alt) 0%, rgba(251, 248, 244, 0.5) 100%);
  border-radius: 14px 14px 0 0;
  transition: transform 580ms cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.4s ease;
}

.product-card:hover .product-card-icon,
.product-card-enhanced:hover .product-card-icon {
  background: var(--brand-primary) !important;
  transform: scale(1.1) rotate(45deg);
  box-shadow: 0 4px 12px rgba(231, 216, 195, 0.4);
}

.product-card:hover .product-card-icon svg,
.product-card-enhanced:hover .product-card-icon svg {
  color: var(--brand-secondary) !important;
  transform: rotate(-45deg);
}

.product-price {
  position: relative;
  display: inline-block;
}

.product-price::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-price::after,
.product-card-enhanced:hover .product-price::after {
  width: 100%;
}

/* Staggered animation for boutique product cards */
.product-card,
.product-card-enhanced {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.product-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.product-card-enhanced:nth-child(2) { animation-delay: 0.15s; }
.product-card-enhanced:nth-child(3) { animation-delay: 0.2s; }
.product-card-enhanced:nth-child(4) { animation-delay: 0.25s; }
.product-card-enhanced:nth-child(5) { animation-delay: 0.3s; }
.product-card-enhanced:nth-child(6) { animation-delay: 0.35s; }
.product-card-enhanced:nth-child(7) { animation-delay: 0.4s; }
.product-card-enhanced:nth-child(8) { animation-delay: 0.45s; }
.product-card-enhanced:nth-child(9) { animation-delay: 0.5s; }
.product-card-enhanced:nth-child(10) { animation-delay: 0.55s; }
.product-card-enhanced:nth-child(n+11) { animation-delay: 0.6s; }

/* Shared Luxury Section Background */
.section-luxury-light {
  background: linear-gradient(180deg, var(--brand-bg-alt) 0%, var(--brand-bg) 100%);
  border-top: 1px solid var(--brand-primary) !important;
  position: relative;
}

.landing-featured.section-luxury-light {
  border-top: 0 !important;
}

/* Ensure no competing backgrounds on featured section */
.landing-featured {
  background: transparent; /* Reset to rely on section-luxury-light if used, or let the class handle it */
}

.landing-featured .featured-strip {
  position: relative;
  padding: 8px 0;
  overflow: visible;
}

/* Ensure landing section headers always stack (badge/title/description/button on their own rows). */
.landing-featured .text-center.mb-5,
.landing-lookbook .text-center.mb-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-featured .text-center.mb-5 > *,
.landing-lookbook .text-center.mb-5 > * {
  flex: 0 0 auto;
}

.landing-featured .text-center.mb-5 > .d-inline-block,
.landing-lookbook .text-center.mb-5 > .d-inline-block,
.landing-lookbook .text-center.mb-5 > .d-inline-flex {
  width: auto;
}

.landing-featured .featured-track {
  --featured-card-width: 240px;
  --featured-inactive-scale: 0.92;
  --featured-active-scale: 1.0;

  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 32px 0 36px;
  padding-left: calc(50% - (var(--featured-card-width) / 2));
  padding-right: calc(50% - (var(--featured-card-width) / 2));
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}

.landing-featured .featured-track:active {
  cursor: grabbing;
  scroll-snap-type: none;
}

.landing-featured .featured-track::-webkit-scrollbar {
  display: none;
}

.landing-featured .featured-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(251, 248, 244, 0.4) 50%, 
    transparent 100%);
  border-radius: 10px;
}

.landing-featured .featured-card {
  flex: 0 0 var(--featured-card-width);
  scroll-snap-align: center;
  transform: scale(var(--featured-inactive-scale));
  transform-origin: center center;
  transition: all 420ms cubic-bezier(0.23, 1, 0.32, 1);
  text-align: left;
  background: linear-gradient(180deg, var(--brand-bg) 0%, rgba(251, 248, 244, 0.98) 100%);
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(231, 216, 195, 0.45);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(44, 36, 22, 0.09),
              0 3px 10px rgba(44, 36, 22, 0.07),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.landing-featured .featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brand-primary) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 420ms ease;
  z-index: 10;
}

.landing-featured .featured-card:hover::before,
.landing-featured .featured-card.is-active::before {
  opacity: 1;
}

.landing-featured .featured-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 16px 40px rgba(231, 216, 195, 0.3),
              0 8px 20px rgba(44, 36, 22, 0.14),
              0 0 0 1px var(--brand-primary),
              inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: scale(var(--featured-inactive-scale)) translateY(-6px);
}

.landing-featured .featured-card:hover .product-card-img,
.landing-featured .featured-card:hover .catalog-product-img {
  transform: scale(1.06);
  filter: brightness(1.03) saturate(1.1);
}

.landing-featured .featured-card.is-active {
  transform: scale(var(--featured-active-scale));
  border-color: var(--brand-primary);
  box-shadow: 0 20px 56px rgba(231, 216, 195, 0.35),
              0 10px 28px rgba(44, 36, 22, 0.18),
              0 0 0 2px var(--brand-primary),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.landing-featured .featured-card:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  /* Featured product strip: start shrinking earlier (same breakpoint as Lookbook). */
  .landing-featured .featured-track {
    --featured-card-width: min(260px, 78vw);
    --featured-inactive-scale: 0.94;
    --featured-active-scale: 1.0;

    gap: 16px;
    padding-top: 26px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
  }

  .landing-featured .featured-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 575.98px) {
  .landing-featured .featured-track {
    --featured-card-width: min(320px, 84vw);
    --featured-inactive-scale: 0.94;
    --featured-active-scale: 1.0;
    gap: 14px;
  }
}

.landing-featured .featured-card .p-3 {
  position: relative;
  background: transparent;
}

.catalog-back-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.catalog-back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 216, 195, 0.35) !important;
}

.catalog-back-btn svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.catalog-back-btn:hover svg {
  transform: translateX(-4px);
}

.landing-featured .featured-card svg {
  transition: all 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing-featured .featured-card:hover svg {
  transform: translateX(4px);
  opacity: 1 !important;
}

.landing-featured .product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(44, 36, 22, 0.03) 100%);
  pointer-events: none;
}

.landing-lookbook .carousel-indicators {
  margin-bottom: 24px;
  gap: 8px;
}

.landing-lookbook .carousel-indicators [data-bs-target] {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(231, 216, 195, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0;
  opacity: 1;
}

.landing-lookbook .carousel-indicators [data-bs-target]:hover {
  background: rgba(231, 216, 195, 0.5);
  transform: scaleY(1.5);
}

.landing-lookbook .carousel-indicators [data-bs-target].active {
  width: 60px;
  background: var(--brand-primary);
  box-shadow: 0 2px 12px rgba(231, 216, 195, 0.5);
}

.landing-lookbook .carousel-control-prev,
.landing-lookbook .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
  background: rgba(251, 248, 244, 0.9);
  border-radius: 50%;
  border: 1px solid rgba(231, 216, 195, 0.5);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.landing-lookbook .carousel-control-prev {
  left: 20px;
}

.landing-lookbook .carousel-control-next {
  right: 20px;
  opacity: 0;
}
  
.landing-lookbook .carousel-control-prev,
.landing-lookbook .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
  background: rgba(251, 248, 244, 0.9);
  border-radius: 50%;
  border: 1px solid rgba(231, 216, 195, 0.5);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.landing-lookbook .carousel-control-prev {
  left: 20px;
}

.landing-lookbook .carousel-control-next {
  right: 20px;
}

.landing-lookbook .carousel-control-prev:hover,
.landing-lookbook .carousel-control-next:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(231, 216, 195, 0.4);
}

.landing-lookbook .carousel-control-prev-icon,
.landing-lookbook .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100%;
  filter: invert(0.2);
}

.landing-lookbook .carousel-control-prev:hover .carousel-control-prev-icon,
.landing-lookbook .carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(0.15);
}

@media (max-width: 991.98px) {
  .landing-lookbook .carousel-item {
    height: 420px;
  }
  
  .landing-lookbook .carousel-control-prev,
  .landing-lookbook .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .landing-lookbook .carousel-control-prev {
    left: 12px;
  }
  
  .landing-lookbook .carousel-control-next {
    right: 12px;
  }
}

.lookbook-thumb {
  width: 140px;
  text-align: left;
  background: var(--brand-bg);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 2px solid rgba(231, 216, 195, 0.3);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(44, 36, 22, 0.08);
}

.lookbook-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(44, 36, 22, 0.4) 100%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.lookbook-thumb:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: var(--brand-primary);
  box-shadow: 0 12px 32px rgba(231, 216, 195, 0.3),
              0 6px 16px rgba(44, 36, 22, 0.15);
}

.lookbook-thumb:hover::before {
  opacity: 0.3;
}

.lookbook-thumb.is-active {
  border-color: var(--brand-primary);
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(231, 216, 195, 0.4),
              0 0 0 1px var(--brand-primary);
}

.lookbook-thumb.is-active::before {
  opacity: 0.3;
}

.lookbook-thumb.is-active::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  font-weight: bold;
  font-size: 16px;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(231, 216, 195, 0.5);
}

.lookbook-thumbs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 16px 0;
  justify-content: center;
  scroll-behavior: smooth;
}

@media (max-width: 991.98px) {
  .lookbook-thumbs {
    justify-content: flex-start;
    padding-left: 4px;
  }
  
  .lookbook-thumb {
    width: 120px;
  }
}

.lookbook-thumbs::-webkit-scrollbar {
  height: 8px;
}

.lookbook-thumbs::-webkit-scrollbar-track {
  background: rgba(231, 216, 195, 0.1);
  border-radius: 10px;
}

.lookbook-thumbs::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.lookbook-thumbs::-webkit-scrollbar-thumb:hover {
  background: var(--brand-accent);
}

.lookbook-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.lookbook-thumb:hover img {
  transform: scale(1.08);
}

.lookbook-thumb-label {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--brand-bg);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
  background: rgba(44, 36, 22, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.lookbook-thumb:hover .lookbook-thumb-label {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  transform: translateX(-50%) translateY(-4px);
  border-color: var(--brand-primary);
}

.lookbook-thumb-label::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--brand-secondary);
  opacity: 0.45;
  z-index: -1;
}

@supports (background: color-mix(in srgb, black 30%, transparent)) {
  .lookbook-thumb-label::before {
    background: color-mix(in srgb, var(--brand-secondary) 55%, transparent);
    opacity: 1;
  }
}

.lookbook-thumb {
  min-width: 180px;
  max-width: 180px;
}

@media (max-width: 575.98px) {
  .lookbook-thumb {
    min-width: 128px;
    max-width: 128px;
  }
}

@media (max-width: 575.98px) {
  .landing-lookbook .lookbook-caption-inner {
    padding: 8px 10px;
    border-radius: 12px;
  }

  .landing-lookbook .lookbook-caption-inner h5 {
    font-size: 1rem;
  }

  .landing-lookbook .lookbook-caption-inner p {
    font-size: 0.875rem;
    line-height: 1.25;
  }

  .lookbook-thumb-label {
    font-size: 0.82rem;
    padding: 7px 9px;
  }
}

.lookbook-thumb.is-active {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

.lookbook-thumb:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

@supports (background: color-mix(in srgb, white 50%, transparent)) {
  .landing-panel.lux-card {
    background: linear-gradient(135deg, 
      var(--brand-primary) 0%, 
      var(--brand-accent) 100%) !important;
    backdrop-filter: blur(20px) saturate(1.4);
  }
}

@media (max-width: 991.98px) {
  .landing-hero-content {
    left: calc(16px + env(safe-area-inset-left));
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .landing-panel {
    max-width: 100%;
  }
}

.bg-brand {
  background: var(--brand-primary) !important;
}

.bg-black {
  background: var(--brand-secondary) !important;
}

.border-black {
  border-color: var(--brand-secondary) !important;
}

.text-black {
  color: var(--brand-secondary) !important;
}

/* Premium Footer Styles */
.landing-footer {
  background: linear-gradient(180deg, var(--brand-secondary) 0%, #1A140E 100%);
  color: var(--brand-bg);
  position: relative;
  overflow: hidden;
}

.landing-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(231, 216, 195, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-tagline {
  color: rgba(251, 248, 244, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-section-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(251, 248, 244, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--brand-primary);
  transform: translateX(4px);
}

.footer-link::before {
  content: '→';
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(231, 216, 195, 0.1);
  border: 1px solid rgba(231, 216, 195, 0.2);
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--brand-secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 216, 195, 0.3);
}

.footer-contact-form {
  background: rgba(231, 216, 195, 0.08);
  border: 1px solid rgba(231, 216, 195, 0.15);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
}

.footer-form-group {
  margin-bottom: 1.25rem;
}

.footer-form-label {
  display: block;
  color: var(--brand-primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.footer-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(251, 248, 244, 0.05);
  border: 1px solid rgba(231, 216, 195, 0.25);
  border-radius: 10px;
  color: var(--brand-bg);
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-sans);
}

.footer-form-control::placeholder {
  color: rgba(251, 248, 244, 0.4);
}

.footer-form-control:focus {
  outline: none;
  background: rgba(251, 248, 244, 0.08);
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(231, 216, 195, 0.15);
}

.footer-form-control:hover {
  border-color: rgba(231, 216, 195, 0.35);
}

textarea.footer-form-control {
  resize: vertical;
  min-height: 100px;
}

.footer-submit-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-sans);
}

.footer-submit-btn:hover {
  background: transparent;
  color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 216, 195, 0.3);
}

.footer-submit-btn:active {
  transform: translateY(0);
}

.footer-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.footer-bottom {
  border-top: 1px solid rgba(231, 216, 195, 0.15);
  padding-top: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-legal-link {
  color: rgba(251, 248, 244, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal-link:hover {
  color: var(--brand-primary);
}

.footer-copyright {
  color: rgba(251, 248, 244, 0.5);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .footer-brand {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .footer-brand img {
    margin: 0 auto 1rem;
  }
  
  .footer-tagline {
    margin: 0 auto;
  }
  
  .footer-section-title {
    text-align: center;
    margin-top: 2rem;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-link::before {
    display: none;
  }
  
  .footer-link:hover {
    transform: none;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact-form {
    margin-top: 2rem;
  }
}

.btn-outline-black {
  --bs-btn-color: var(--brand-secondary);
  --bs-btn-border-color: var(--brand-secondary);
  --bs-btn-hover-color: var(--brand-bg);
  --bs-btn-hover-bg: var(--brand-secondary);
  --bs-btn-hover-border-color: var(--brand-secondary);
  --bs-btn-active-color: var(--brand-bg);
  --bs-btn-active-bg: var(--brand-secondary);
  --bs-btn-active-border-color: var(--brand-secondary);
}

.btn-brand {
  --bs-btn-color: var(--brand-secondary);
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-secondary);
  --bs-btn-hover-color: var(--brand-secondary);
  --bs-btn-hover-bg: var(--brand-primary);
  --bs-btn-hover-border-color: var(--brand-secondary);
  --bs-btn-active-color: var(--brand-secondary);
  --bs-btn-active-bg: var(--brand-primary);
  --bs-btn-active-border-color: var(--brand-secondary);
}

.lux-card {
  border: 1px solid var(--brand-secondary);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%) !important;
}

.lux-card .lux-card-header {
  border-bottom: 1px solid var(--brand-secondary);
  background: var(--brand-primary);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.form-control, .form-select {
  border-color: var(--brand-secondary);
}

.form-control:focus, .form-select:focus {
  border-color: var(--brand-secondary);
  box-shadow: none;
}

/* ============================================
   CART PAGE STYLES
   ============================================ */

/* Cart Badge (in navigation) */
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  background: var(--brand-accent);
  color: var(--brand-bg);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

/* Cart Header */
.cart-main {
  background: var(--brand-bg);
  min-height: 100vh;
}

.cart-header {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.cart-header-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cart-badge-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(231, 216, 195, 0.2) 0%, rgba(231, 216, 195, 0.1) 100%);
  border-radius: 50%;
  border: 2px solid rgba(231, 216, 195, 0.4);
  color: var(--brand-accent);
}

.cart-title {
  color: var(--brand-text-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cart-subtitle {
  color: var(--brand-text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Cart Empty State */
.cart-empty {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Cart Item */
.cart-item {
  transition: all 0.3s ease;
  animation: fadeInUp 0.4s ease-out both;
}

.cart-item:nth-child(1) { animation-delay: 0.05s; }
.cart-item:nth-child(2) { animation-delay: 0.1s; }
.cart-item:nth-child(3) { animation-delay: 0.15s; }
.cart-item:nth-child(4) { animation-delay: 0.2s; }
.cart-item:nth-child(5) { animation-delay: 0.25s; }

.cart-item:hover {
  box-shadow: 0 8px 24px rgba(231, 216, 195, 0.25);
  transform: translateY(-2px);
}

.cart-item-image {
  display: block;
  width: 100px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(231, 216, 195, 0.3);
  transition: all 0.3s ease;
}

.cart-item-image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(231, 216, 195, 0.3);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-text-primary);
  font-family: var(--font-serif);
  line-height: 1.3;
}

.cart-item-title a {
  color: var(--brand-text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-item-title a:hover {
  color: var(--brand-accent);
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.cart-item-sku {
  color: var(--brand-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.cart-item-variant {
  color: var(--brand-text-secondary);
}

.cart-item-warning {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 6px;
  color: #997404;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
}

.cart-item-warning svg {
  flex-shrink: 0;
}

.cart-item-actions {
  text-align: right;
}

.cart-item-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-text-primary);
  font-family: var(--font-serif);
}

.cart-quantity-form {
  margin-bottom: 8px;
}

.btn-qty-decrease,
.btn-qty-increase {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(231, 216, 195, 0.4);
  background: var(--brand-bg);
  color: var(--brand-text-primary);
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-qty-decrease:hover,
.btn-qty-increase:hover {
  background: var(--brand-primary);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.cart-qty-input {
  width: 60px;
  height: 32px;
  text-align: center;
  border: 1px solid rgba(231, 216, 195, 0.4);
  border-radius: 6px;
  font-weight: 600;
  padding: 0;
}

.cart-item-subtotal {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-accent);
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

.cart-remove-btn {
  color: var(--brand-text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0;
  border: none;
  background: none;
  transition: color 0.2s ease;
}

.cart-remove-btn:hover {
  color: #dc3545;
  text-decoration: underline;
}

/* Cart Summary */
.cart-summary {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.cart-summary-line {
  font-size: 0.95rem;
}

.cart-summary-total {
  padding-top: 16px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cart-summary {
    margin-top: 32px;
  }
  
  .cart-summary.sticky-top {
    position: static !important;
  }
}

@media (max-width: 575.98px) {
  .cart-title {
    font-size: 2rem;
  }
  
  .cart-item-image {
    width: 80px;
    height: 100px;
  }
  
  .cart-item-actions {
    text-align: left;
    margin-top: 12px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================
   BURGER MENU STYLES
   ============================================ */

.burger-menu-btn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border: 1px solid rgba(231, 216, 195, 0.4);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(231, 216, 195, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.burger-menu-btn:hover {
  box-shadow: 0 6px 20px rgba(231, 216, 195, 0.4);
  transform: scale(1.05);
}

.burger-line {
  width: 20px;
  height: 2px;
  background: var(--brand-secondary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu-btn.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-menu-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu-btn.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(44, 36, 22, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu.active {
  opacity: 1;
  pointer-events: all;
}

.burger-menu-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-bg) 0%, var(--brand-bg-alt) 100%);
  box-shadow: 4px 0 24px rgba(44, 36, 22, 0.3);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 0 24px;
  overflow-y: auto;
}

.burger-menu.active .burger-menu-inner {
  transform: translateX(0);
}

.burger-menu-header {
  padding: 0 24px 20px;
  border-bottom: 1px solid rgba(231, 216, 195, 0.3);
  margin-bottom: 8px;
}

.burger-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.burger-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: var(--brand-text-primary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.burger-menu-link:hover {
  background: rgba(231, 216, 195, 0.15);
  color: var(--brand-accent);
  padding-left: 32px;
}

.burger-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  transition: height 0.3s ease;
}

.burger-menu-link:hover::before {
  height: 60%;
}

.burger-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: var(--brand-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(231, 216, 195, 0.3);
}

.burger-menu-divider {
  height: 1px;
  background: rgba(231, 216, 195, 0.2);
  margin: 12px 24px;
}

/* Mobile Cart Icon */
.mobile-cart-icon {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border: 1px solid rgba(231, 216, 195, 0.4);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(231, 216, 195, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.mobile-cart-icon:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(231, 216, 195, 0.4);
  color: var(--brand-secondary);
}

.mobile-cart-icon svg {
  position: relative;
  z-index: 1;
}

.mobile-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid var(--brand-bg);
  box-shadow: 0 2px 8px rgba(44, 36, 22, 0.3);
  z-index: 2;
}

@media (max-width: 991.98px) {
  .burger-menu-btn {
    display: flex;
  }

  .nav-desktop-links {
    display: none !important;
  }

  .mobile-cart-icon {
    display: flex;
  }

  .landing-nav {
    height: 64px;
  }

  .landing-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .landing-nav-logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: 1;
  }

  .burger-menu-btn {
    position: absolute;
    left: 16px;
  }

  .landing-nav-logo img {
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 992px) {
  .burger-menu {
    display: none;
  }

  .nav-desktop-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex: 1;
  }
}