/* ==========================================
   ROZEN'S — Luxury Jewelry Design System
   Redesigned to match Renne.jewelry collection aesthetics
   ========================================== */

:root {
  /* Brand Color Tokens */
  --navy: #1C4170;
  --navy-dark: #122B4D;
  --cream: #FFFFFF;
  --cream-dark: #F5F5F7;
  --line: #D2C3A0;
  --gray-text: #6B6354;
  --white: #FFFFFF;
  --black: #000000;
  
  /* Swatch Colors */
  --rose-gold-swatch: #e2a79f;
  --silver-swatch: #d5d7d8;
  --gold-swatch: #f1ca8b;
  
  /* Layout variables */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Frank Ruhl Libre', serif;
  --font-sans: 'Assistant', sans-serif;
  --font-en-sans: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--navy) var(--cream-dark);
  overflow-x: hidden;
  max-width: 100%;
}

/* Custom Scrollbar Styling (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 4px !important;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy-dark);
}

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  touch-action: manipulation;
}

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  transition: var(--transition-smooth);
}

input, select {
  font-family: inherit;
  color: inherit;
}

.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.wrap-wide {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.wrap-ultra-wide {
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Document Direction Adaptations */
html[dir="rtl"] body {
  direction: rtl;
  font-family: var(--font-sans);
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: var(--font-en-sans);
}

/* ==========================================
   Header & Navigation (Shopify/Renne Style)
   ========================================== */

/* Announcement Bar */
.announcement-bar {
  background: var(--navy-dark);
  color: var(--cream);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  position: relative;
  z-index: 101;
}

.announcement-bar strong {
  font-weight: 600;
  color: var(--white);
}

/* Language Header Strip */
.top-header-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  justify-content: flex-start; /* Always on the left */
  align-items: center;
  padding: 6px 40px;
  font-size: 11px;
  letter-spacing: 1px;
  position: relative;
  z-index: 101;
  direction: ltr !important; /* Force Left-to-Right layout */
}

.top-header-strip .lang-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-divider {
  color: var(--cream-dark);
  opacity: 0.6;
  margin: 0 2px;
}

.lang-option {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.6;
  font-weight: 400;
}

.lang-option.active {
  opacity: 1;
  font-weight: 600;
}

.flag-icon {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Main Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95); /* White with glassmorphism */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease;
}

header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  flex-direction: column;
  padding: 15px 0 10px;
}

.brand-posh-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px; /* Space between name and logo row */
}

.brand-posh-text {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy-dark);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .brand-posh-row {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 8px !important;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(10, 34, 64, 0.06);
  }
  .brand-posh-text {
    font-size: 10px !important;
    letter-spacing: 3px !important;
  }
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  direction: ltr !important; /* Force Logo Left, Utilities Right always */
}

.header-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-account-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.utility-account-btn .mobile-icon {
  display: none;
}

@media (max-width: 768px) {
  .utility-account-btn .mobile-icon {
    display: block;
    width: 18px;
    height: 18px;
    stroke: var(--navy);
    fill: none;
  }
  .utility-account-btn .desktop-text {
    display: none;
  }
}


.desktop-navigation {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
  border-top: 1px solid var(--cream-dark);
  padding-top: 12px;
  width: 100%;
  position: relative;
}

.nav-link {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

/* Logo & Branding */
.brand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-header-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition-smooth);
}

.logo-header-img:hover {
  transform: scale(1.05);
}

.logo-footer-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  mix-blend-mode: multiply;
  transition: var(--transition-smooth);
}

.logo-footer-img:hover {
  transform: scale(1.05);
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Icons & Cart */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  position: relative;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

.icon-button:hover svg {
  transform: scale(1.1);
  stroke: var(--navy-dark);
}

/* Cart Badge button */
.cart-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--navy);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
}

.cart-trigger:hover {
  background: var(--navy);
  color: var(--cream);
}

.cart-count {
  background: var(--navy-dark);
  color: var(--cream);
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
}

.cart-trigger:hover .cart-count {
  background: var(--cream);
  color: var(--navy-dark);
}

/* Megamenu Dropdown */
.megamenu-trigger {
  /* Removed position: relative to allow positioning relative to the navigation bar container */
}

.megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  padding: 40px 0;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99;
}

.megamenu-trigger:hover .megamenu-panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Header Search Bar */
.search-bar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 15px 40px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 98;
  box-shadow: 0 5px 10px rgba(0,0,0,0.03);
}

.search-bar-dropdown.active {
  display: flex;
}

.search-input-wrapper {
  max-width: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--navy);
  padding: 5px 0;
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  padding: 6px 10px;
  color: var(--navy);
}

.search-input-wrapper input:focus {
  outline: none;
}

/* Megamenu Grid Layout */
.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.megamenu-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.megamenu-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.megamenu-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.megamenu-col ul a {
  font-size: 13px;
  opacity: 0.75;
}

.megamenu-col ul a:hover {
  opacity: 1;
  color: var(--navy-dark);
  padding-right: 5px;
}

html[dir="ltr"] .megamenu-col ul a:hover {
  padding-left: 5px;
  padding-right: 0;
}

.megamenu-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  margin-bottom: 10px;
}

.megamenu-img-wrap:hover img {
  transform: scale(1.05);
}

/* Mobile Menu Button */
.menu-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition-smooth);
}

/* ==========================================
   Collection Hero Banner (Cream & Navy)
   ========================================== */

.hero-slider {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  background: var(--navy-dark);
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.8s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-bg img {
  opacity: 0.65;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 40px;
  background: rgba(18, 43, 77, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.slide-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
}

.slide-link-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 30px;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.slide-link-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50% !important;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy-dark);
  border-color: var(--cream);
}

.slider-prev {
  left: 20px;
}

html[dir="rtl"] .slider-prev {
  left: auto;
  right: 20px;
}

.slider-next {
  right: 20px;
}

html[dir="rtl"] .slider-next {
  right: auto;
  left: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50% !important;
  border: 1px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dots .dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Breadcrumbs Section */
.breadcrumbs-bar {
  padding: 20px 0;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--gray-text);
  text-transform: uppercase;
}

.breadcrumbs-bar span {
  opacity: 0.6;
  margin: 0 8px;
}

/* ==========================================
   Filter & Sorting Panel
   ========================================== */

.controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.controls-left, .controls-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.control-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--line);
}

.control-btn:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.control-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.product-count-label {
  font-size: 13px;
  color: var(--gray-text);
}

.sort-select-wrapper {
  position: relative;
}

.sort-select-wrapper select {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 36px 8px 16px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

html[dir="rtl"] .sort-select-wrapper select {
  padding: 8px 16px 8px 36px;
}

.sort-select-wrapper::after {
  content: '▼';
  font-size: 9px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

html[dir="rtl"] .sort-select-wrapper::after {
  right: auto;
  left: 14px;
}

/* ==========================================
   Product Loop Grid (Shopify Aesthetics)
   ========================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin-bottom: 70px;
}

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: transparent;
}

/* Image Container with Hover Swap */
.product-image-container {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  margin-bottom: 15px;
}

.product-image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-image-hover {
  opacity: 0;
  z-index: 2;
}

.product-image-container:hover .product-image-hover {
  opacity: 1;
}

.product-image-container:hover .product-image-main {
  transform: scale(1.03);
}

/* Badges */
.badge-sale {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  letter-spacing: 1px;
  z-index: 5;
}

html[dir="rtl"] .badge-sale {
  right: auto;
  left: 12px;
}

/* Product Info */
.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  cursor: pointer;
}

.product-meta {
  flex: 1;
}

.product-vendor {
  font-size: 10px;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  font-weight: 600;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy-dark);
}

.product-price {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
  text-align: right;
  margin-left: 10px;
}

html[dir="rtl"] .product-price {
  text-align: left;
  margin-left: 0;
  margin-right: 10px;
}

.product-price .old-price {
  font-size: 12px;
  color: var(--gray-text);
  text-decoration: line-through;
  margin-right: 5px;
  font-weight: 400;
}

html[dir="rtl"] .product-price .old-price {
  margin-right: 0;
  margin-left: 5px;
}

/* Metal Color Swatches */
.product-swatches {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50% !important;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.swatch:hover, .swatch.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 1px var(--navy);
}

.swatch.rose-gold { background: var(--rose-gold-swatch); }
.swatch.white-gold { background: var(--silver-swatch); }
.swatch.yellow-gold { background: var(--gold-swatch); }

/* Quick Add Button */
.quick-add-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  transition: var(--transition-smooth);
}

.quick-add-btn:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ==========================================
   Side Slide-out Drawers (Cart & Filters)
   ========================================== */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 43, 77, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 460px;
  max-width: 100vw;
  background: var(--cream);
  z-index: 201;
  box-shadow: 0 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slide in directions based on layout */
.drawer-right {
  right: 0;
  transform: translateX(100%);
}

.drawer-left {
  left: 0;
  transform: translateX(-100%);
}

.drawer-right.active, .drawer-left.active {
  transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.drawer-close {
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close:hover {
  transform: rotate(90deg);
}

/* Drawer Content */
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}

/* Drawer Footer */
.drawer-footer {
  padding: 24px 30px;
  border-top: 1px solid var(--line);
  background: var(--cream-dark);
}

/* Shopping Cart Specifics */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 20px;
}

.cart-item-image {
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  overflow: hidden;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
}

.cart-item-meta {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 2px;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 600;
}

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

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}

.qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.qty-val {
  width: 30px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

.cart-item-remove {
  font-size: 12px;
  color: var(--gray-text);
  text-decoration: underline;
}

.cart-item-remove:hover {
  color: var(--navy);
}

/* Cart Empty State */
.cart-empty-msg {
  text-align: center;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cart-empty-msg p {
  color: var(--gray-text);
  font-size: 15px;
}

/* Cart Summary */
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.checkout-btn:hover {
  background: var(--navy-dark);
}

/* Filters Drawer Specifics */
.filter-group {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--cream-dark);
}

.filter-group-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.filter-options {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

.filter-checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.filter-actions-btn {
  padding: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--navy);
}

.filter-actions-btn.apply {
  background: var(--navy);
  color: var(--cream);
}

.filter-actions-btn.clear {
  background: transparent;
  color: var(--navy);
}

/* ==========================================
   Newsletter & Footer Redesign
   ========================================== */

/* Newsletter */
.newsletter-section {
  background: var(--cream-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
  text-align: center;
}

.newsletter-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.newsletter-desc {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 30px;
  max-width: 500px;
  margin-inline: auto;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid var(--navy);
  border-right: none;
  padding: 14px 18px;
  background: transparent;
  font-size: 13px;
}

html[dir="rtl"] .newsletter-form input {
  border-right: 1px solid var(--navy);
  border-left: none;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  padding: 0 28px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.newsletter-form button:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* Split Footer Section (Renne Style) */
.footer-split {
  display: flex;
  width: 100%;
  margin-top: auto;
  align-items: stretch;
}

.footer-left {
  background: var(--navy-dark); /* Luxury brand blue */
  color: var(--cream);
  flex: 1.6;
  padding: 80px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-left-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 50px;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-about {
  display: flex;
  flex-direction: column;
}

.footer-about .logo-footer-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  margin-bottom: 15px;
  align-self: flex-start;
}

html[dir="rtl"] .footer-about .logo-footer-img {
  align-self: flex-start;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  opacity: 0.75;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-left-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 10px;
  font-size: 11px;
  letter-spacing: 0.5px;
  opacity: 0.6;
  text-align: center;
  width: 100%;
}

.footer-currency-picker {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-currency-picker .footer-picker-btn {
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px 24px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
  text-align: center;
}

.footer-currency-picker .footer-picker-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}

.footer-rights-details {
  font-size: 11px;
  width: 100%;
  text-align: center;
}

.footer-right {
  background: var(--white);
  color: var(--navy);
  flex: 1;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

html[dir="rtl"] .footer-right {
  border-left: none;
  border-right: none;
}

.footer-right-inner {
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-right-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #b07d75; /* Warm clay color */
  letter-spacing: 1.5px;
}

.footer-right .footer-newsletter-form {
  width: 100%;
}

.footer-right .footer-email-input-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #b07d75; /* Warm clay color */
  padding: 6px 0;
}

.footer-right .footer-email-input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  padding: 6px 0;
  color: var(--navy);
}

.footer-right .footer-email-input-wrapper input::placeholder {
  color: rgba(10, 34, 64, 0.45);
}

.footer-right .footer-email-input-wrapper input:focus {
  outline: none;
}

.footer-right .footer-email-input-wrapper button {
  border: none;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #b07d75; /* Warm clay color */
  cursor: pointer;
  padding: 0 5px;
}

.footer-right .footer-social-icon {
  color: #b07d75; /* Warm clay color */
  opacity: 0.8;
  transition: var(--transition-smooth);
  margin-top: 10px;
}

.footer-right .footer-social-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .footer-split {
    flex-direction: column-reverse;
  }
  .footer-left {
    padding: 50px 40px;
  }
  .footer-right {
    padding: 60px 40px;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-about .logo-footer-img {
    margin-inline: auto;
    align-self: center;
  }
  
  .footer-left-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ==========================================
   Float Buttons & Access System
   ========================================== */

.float-action-btn {
  position: fixed;
  bottom: 20px;
  z-index: 150;
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.25s ease;
}

.float-action-btn:hover {
  transform: scale(1.1);
}

.float-access-btn {
  left: 20px;
  right: auto;
  background: var(--navy);
  color: var(--cream);
}

.float-whatsapp-btn {
  right: 20px;
  left: auto;
  background: #25D366;
  color: var(--white);
}

.float-action-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Transcy-like Floating Language Picker */
.floating-lang-picker {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 150;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.floating-lang-picker:hover {
  background: var(--cream);
}

.floating-lang-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 140px;
  display: none;
  flex-direction: column;
  z-index: 151;
}

.floating-lang-dropdown.active {
  display: flex;
}

.floating-lang-opt {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.floating-lang-opt:hover {
  background: var(--cream);
}

/* ==========================================
   Mobile Side Menu Overlay
   ========================================== */

.mobile-menu-drawer {
  display: none;
}

/* ==========================================
   Responsive Adaptations
   ========================================== */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .wrap, .wrap-wide {
    padding: 0 20px;
  }
  
  .desktop-navigation {
    display: none;
  }

  /* Mobile controls bar optimization */
  .controls-bar {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    margin-bottom: 25px !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .controls-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 !important;
  }

  .controls-right {
    display: flex !important;
    justify-content: flex-end !important;
    flex: 1 !important;
  }

  /* Make Filter Button smaller and elegant */
  .control-btn.filter-trigger {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: var(--navy) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    gap: 6px !important;
  }

  .control-btn.filter-trigger:hover {
    color: var(--navy-dark) !important;
    background: transparent !important;
  }

  .control-btn.filter-trigger svg {
    width: 12px !important;
    height: 12px !important;
    fill: currentColor !important;
  }

  /* Smaller count label */
  .product-count-label {
    font-size: 11px !important;
    color: var(--gray-text) !important;
    border-left: 1px solid var(--line) !important;
    padding-left: 10px !important;
    margin-left: 5px !important;
  }

  html[dir="rtl"] .product-count-label {
    border-left: none !important;
    border-right: 1px solid var(--line) !important;
    padding-left: 0 !important;
    padding-right: 10px !important;
    margin-left: 0 !important;
    margin-right: 5px !important;
  }

  /* Make Sort Select wrapper borderless and elegant */
  .sort-select-wrapper select {
    border: none !important;
    background: transparent !important;
    padding: 4px 20px 4px 4px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: var(--navy) !important;
    letter-spacing: 1px !important;
  }

  html[dir="rtl"] .sort-select-wrapper select {
    padding: 4px 4px 4px 20px !important;
  }

  .sort-select-wrapper::after {
    font-size: 8px !important;
    right: 4px !important;
    color: var(--navy) !important;
  }

  html[dir="rtl"] .sort-select-wrapper::after {
    right: auto !important;
    left: 4px !important;
  }

  .top-header-strip {
    display: flex !important;
    background: var(--white) !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 6px 15px !important;
    justify-content: flex-start !important;
    min-height: auto !important;
  }
  
  .header-top-row {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    width: 100% !important;
    direction: ltr !important; /* Force Left-to-Right layout */
    padding: 10px 0 !important;
  }

  .menu-toggle-btn {
    display: flex !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
    width: 32px !important;
    height: 32px !important;
    gap: 5px !important;
    flex-direction: column;
    justify-content: center;
  }

  .menu-toggle-btn span {
    display: block;
    width: 22px !important;
    height: 1.5px !important;
    background: var(--navy-dark) !important;
  }

  .menu-toggle-btn span:nth-child(3) {
    display: none !important; /* Make it a 2-line menu like Renne */
  }

  .brand-wrapper {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .logo-header-img {
    height: 52px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .header-utilities {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* Hide other utility buttons, keep only cart badge circle */
  .header-utilities .search-trigger,
  .header-utilities .utility-account-btn,
  .header-utilities .mobile-lang-toggle {
    display: none !important;
  }

  /* Cart trigger styled as solid clay circle badge */
  .cart-trigger {
    border: none !important;
    background: #b07d75 !important; /* Warm clay color */
    color: #fff !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .cart-trigger:hover {
    background: #b07d75 !important;
  }

  .cart-trigger .cart-label {
    display: none !important;
  }

  .cart-trigger .cart-count {
    background: transparent !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    min-width: unset !important;
    height: auto !important;
  }

  /* Permanent mobile search bar below header */
  .search-bar-dropdown {
    position: static !important;
    display: flex !important;
    background: var(--white) !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 10px 20px !important;
    box-shadow: none !important;
  }
  
  .search-input-wrapper {
    max-width: 100% !important;
    border-bottom: 1px solid var(--line) !important;
    background: #fdfdfd;
    border-radius: 4px;
    padding: 6px 12px !important;
  }

  .search-input-wrapper input {
    font-size: 14px !important;
    color: var(--navy-dark) !important;
  }
  
  .nav-row {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }
  
  .brand-logo {
    font-size: 20px;
    letter-spacing: 2px;
  }
  
  .collection-hero {
    height: 70vh !important;
    min-height: 480px !important;
  }
  
  .collection-hero-content h1 {
    font-size: 24px !important;
    letter-spacing: 2px !important;
  }
  
  .collection-hero-content p {
    font-size: 12px !important;
    max-width: 90% !important;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
  
  .product-title {
    font-size: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-about p {
    margin-inline: auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .drawer {
    width: 100vw;
  }
  
  .bestseller-card-swatches {
    display: none !important;
  }

  /* Breadcrumbs Section Mobile Override */
  .breadcrumbs-bar {
    padding: 12px 0 !important;
    font-size: 10px !important;
    letter-spacing: 0.8px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Newsletter Section Mobile Override */
  .newsletter-section {
    padding: 40px 0 !important;
  }
  .newsletter-title {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }
  .newsletter-desc {
    font-size: 12px !important;
    margin-bottom: 20px !important;
    padding: 0 10px !important;
  }
  .newsletter-form {
    max-width: 100% !important;
    padding: 0 15px !important;
  }
  .newsletter-form input {
    padding: 10px 14px !important;
    font-size: 13px !important;
    border: 1px solid var(--line) !important;
    background: var(--white) !important;
  }
  .newsletter-form button {
    padding: 0 20px !important;
    font-size: 11px !important;
  }

  /* Footer accent line to gold */
  .footer-right .footer-email-input-wrapper {
    border-bottom: 1px solid #b08d57 !important;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Quick Lang Button */
.mobile-lang-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Wishlist heart button on product cards */
.wishlist-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: var(--white);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: var(--navy);
  transition: var(--transition-smooth);
}

html[dir="rtl"] .wishlist-btn {
  left: auto;
  right: 12px;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn.active svg {
  fill: #E03C3C;
  stroke: #E03C3C;
}

/* Promo Popup Modal Styles */
.promo-overlay-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 43, 77, 0.55);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.promo-popup-box {
  background: var(--cream);
  border: 1px solid var(--navy);
  width: 440px;
  max-width: 90vw;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-overlay-modal.active .promo-popup-box {
  transform: scale(1);
}

.promo-popup-close {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 24px;
  color: var(--navy);
}

html[dir="rtl"] .promo-popup-close {
  left: auto;
  right: 15px;
}

.promo-popup-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.promo-popup-box h2 {
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1.25;
  color: var(--navy-dark);
}

.promo-popup-box p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 25px;
  line-height: 1.6;
}

.promo-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-popup-form input {
  padding: 13px 16px;
  background: transparent;
  border: 1px solid var(--navy);
  font-size: 13px;
  width: 100%;
}

.promo-popup-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.3);
}

.promo-popup-form button {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  padding: 13px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.promo-popup-form button:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.promo-popup-code {
  margin-top: 15px;
  border: 1px dashed var(--navy);
  padding: 12px;
  font-size: 14px;
  background: var(--cream-dark);
}

/* User Account Area Styles */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-dark);
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--navy);
}

.account-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
}

.account-submit-btn:hover {
  background: var(--navy-dark);
}

.account-switch-prompt {
  text-align: center;
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 15px;
}

.account-switch-prompt a {
  text-decoration: underline;
  color: var(--navy);
  font-weight: 600;
}

/* Profile screen inside drawer */
.profile-header {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.profile-name {
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy-dark);
}

.profile-email {
  font-size: 12px;
  color: var(--gray-text);
}

.profile-logout-btn {
  font-size: 12px;
  color: #E03C3C;
  text-decoration: underline;
  margin-top: 8px;
  display: inline-block;
}

.profile-section-title {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 8px;
  margin-bottom: 15px;
  color: var(--navy-dark);
}

/* Wishlist list inside profile drawer */
.wishlist-drawer-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.wishlist-drawer-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px dashed var(--cream-dark);
  padding-bottom: 12px;
}

.wishlist-drawer-item img {
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
}

.wishlist-drawer-item-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
}

.wishlist-drawer-item-price {
  font-size: 12px;
  color: var(--gray-text);
}

.wishlist-remove-btn {
  font-size: 16px;
  color: var(--gray-text);
}

.wishlist-remove-btn:hover {
  color: #E03C3C;
}

/* Orders List */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-row {
  border: 1px solid var(--line);
  padding: 12px;
  background: rgba(255,255,255,0.2);
}

.order-row-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.order-row-details {
  font-size: 13px;
  color: var(--navy-dark);
}

.order-row-status {
  font-size: 11px;
  color: var(--navy-dark);
  background: var(--cream-dark);
  padding: 2px 6px;
  font-weight: 600;
}

/* Checkout Drawer Forms */
.checkout-section {
  margin-bottom: 24px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-summary-box {
  background: rgba(255,255,255,0.3);
  border: 1px solid var(--line);
  padding: 18px;
  margin-bottom: 20px;
}

.checkout-summary-title {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}

.checkout-summary-row.total {
  font-size: 15px;
  font-weight: 700;
  border-top: 1px solid var(--cream-dark);
  padding-top: 8px;
  margin-top: 8px;
  color: var(--navy-dark);
}

/* Checkout Success Screen */
.success-screen {
  text-align: center;
  padding: 40px 0;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50% !important;
  background: var(--cream-dark);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.success-screen h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.success-screen p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.success-order-id {
  font-size: 13px;
  font-weight: 600;
  border: 1px dashed var(--navy);
  padding: 8px;
  background: var(--cream-dark);
  margin-bottom: 24px;
  display: inline-block;
}

/* Active links highlight */
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-link {
  transition: var(--transition-smooth);
  opacity: 0.7;
}

.mobile-menu-link:hover, .mobile-menu-link.active {
  opacity: 1;
  color: var(--navy-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==========================================
   Modals & Dialogs Style System (Renne Style)
   ========================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 43, 77, 0.6);
  backdrop-filter: blur(4px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.modal-box {
  background: var(--cream);
  border: 1px solid var(--navy);
  padding: 40px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

html[dir="rtl"] .modal-close {
  right: auto;
  left: 15px;
}

.modal-close:hover {
  transform: rotate(90deg);
}

/* Quick View Grid Layout */
.quickview-box {
  width: 900px;
  max-width: 95vw;
  padding: 50px 40px;
}

.quickview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.quickview-gallery {
  display: flex;
  flex-direction: column;
}

.qv-image-wrap {
  aspect-ratio: 1/1;
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  background: var(--cream-dark);
}

.qv-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.qv-thumbs img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.qv-thumbs img.active, .qv-thumbs img:hover {
  opacity: 1;
  border-color: var(--navy);
}

.quickview-details {
  display: flex;
  flex-direction: column;
}

.qv-vendor {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-text);
  margin-bottom: 8px;
  font-weight: 600;
}

.qv-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.qv-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.qv-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 25px;
}

.qv-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
  margin-bottom: 20px;
}

.qv-option-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.qv-swatches {
  display: flex;
  gap: 10px;
}

/* Request a Quote Form */
.quote-box {
  width: 480px;
  max-width: 90vw;
}

/* Size Table */
.size-table th, .size-table td {
  padding: 12px;
  border: 1px solid var(--line);
}

/* Quick View Hover Button on Product Card */
.product-image-container {
  position: relative;
}

.qv-trigger-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 15px);
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  z-index: 5;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
  white-space: nowrap;
}

.product-image-container:hover .qv-trigger-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

.qv-trigger-btn:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* Mobile Quick View adaptations */
@media (max-width: 768px) {
  .quickview-box {
    width: 95vw;
    padding: 30px 20px;
  }
  .quickview-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .qv-trigger-btn {
    display: none; /* Hide on hover for mobile */
  }
}

/* ==========================================
   Categories Grid Section (Welcome to Rozen's)
   ========================================== */
.categories-grid-section {
  padding: 60px 0 0px;
  background: var(--cream);
  text-align: center;
}

.section-title-centered {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 40px;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.category-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-name {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-sans);
  position: relative;
  font-style: italic; /* Match renne's style */
}

.category-name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.category-card:hover .category-name::after {
  width: 50%;
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }
  .category-img-wrap {
    aspect-ratio: 4/5 !important;
  }
  .categories-grid-section {
    padding: 30px 0 10px;
  }
  .section-title-centered {
    font-size: 18px !important;
    font-style: italic !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    margin-bottom: 25px;
  }
}

/* ==========================================
   Bestsellers Carousel Section Styles
   ========================================== */
.bestsellers-carousel-section {
  padding: 0px 0 60px;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.bestsellers-container {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.bestsellers-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-right: 20px;
}

html[dir="ltr"] .bestsellers-info {
  padding-right: 0;
  padding-left: 20px;
}

.bestsellers-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.bestsellers-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-text);
  text-align: right;
}

html[dir="ltr"] .bestsellers-subtitle {
  text-align: left;
}

.bestsellers-shop-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 6px;
  transition: var(--transition-smooth);
}

.bestsellers-shop-btn:hover {
  color: var(--navy-dark);
  border-color: var(--navy-dark);
  letter-spacing: 3px;
}

.bestsellers-carousel-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 0;
}

.bestsellers-arrow {
  position: absolute;
  top: 115px; /* Vertically centered over the 210px square product images */
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
  font-size: 16px;
  font-weight: bold;
}

.bestsellers-arrow:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.bestsellers-arrow.prev {
  left: -20px;
}

.bestsellers-arrow.next {
  right: -20px;
}

@media (max-width: 768px) {
  .bestsellers-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .bestsellers-arrow.prev {
    left: -10px;
  }
  .bestsellers-arrow.next {
    right: -10px;
  }
}

.bestsellers-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  padding: 10px 0;
}

.bestsellers-carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.bestseller-card {
  flex: 0 0 210px; /* Width of each product card (reduced from 280px) */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: transparent;
  position: relative;
}

.bestseller-img-container {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  background: var(--cream-dark);
  margin-bottom: 10px;
}

.bestseller-img-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bestseller-img-hover {
  opacity: 0;
  z-index: 2;
}

.bestseller-img-container:hover .bestseller-img-hover {
  opacity: 1;
}

.bestseller-img-container:hover .bestseller-img-main {
  transform: scale(1.03);
}

.bestseller-card-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}

.bestseller-card-vendor {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-text);
  font-weight: 600;
}

.bestseller-card-title {
  font-family: var(--font-serif);
  font-size: 14px; /* Reduced from 16px */
  font-weight: 500;
  color: var(--navy-dark);
}

.bestseller-card-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.bestseller-card-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

/* Custom Scrollbar Track styling */
.carousel-track-wrapper {
  width: 100%;
  padding: 0 10px;
}

.carousel-track-bar {
  width: 100%;
  height: 2px;
  background: transparent;
  border-bottom: 2px dashed rgba(107, 99, 84, 0.25); /* Dashed gray text like Renne */
  position: relative;
}

.carousel-track-handle {
  height: 100%;
  background: var(--navy);
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.1s ease, width 0.3s ease;
}

@media (max-width: 1024px) {
  .bestsellers-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .bestsellers-info {
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .bestsellers-subtitle {
    text-align: center;
  }
}

/* ==========================================
   Fullbleed Banners Styles (Personalized & Bridal)
   ========================================== */
.fullbleed-banner {
  position: relative;
  height: 100vh;
  min-height: 850px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  margin: 0 0 50px 0;
  padding: 0;
}

.personalized-banner {
  background-image: url('assets/images/personalized_banner.webp');
}

.banner-overlay-tint {
  position: absolute;
  inset: 0;
  background: rgba(18, 43, 77, 0.25); /* Subtle dark blue tint */
  z-index: 1;
}

.banner-content-box {
  position: relative;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.banner-shop-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.banner-shop-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 36px;
    letter-spacing: 4px;
  }
  .fullbleed-banner {
    height: 80vh;
    min-height: 500px;
    margin-bottom: 30px;
  }
}

.bridal-banner {
  background-image: url('assets/images/bridal_banner.webp');
}

.bridal-banner .banner-subtitle {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  margin-top: -5px;
  margin-bottom: 10px;
}

.shopthelook-banner {
  background-image: url('assets/images/shopthelook_banner.webp');
}

/* Interactive Hotspots styling */
.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% !important;
  background: var(--white);
  border: 2.5px solid var(--navy);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 5;
  animation: hotspot-pulse 2s infinite;
  transition: var(--transition-smooth);
}

.hotspot:hover {
  transform: scale(1.35);
  background: var(--navy);
  border-color: var(--white);
}

@keyframes hotspot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Admin Panel Styles */
.admin-tab-btn {
  font-family: inherit;
  transition: all 0.2s ease;
}
.admin-tab-btn:hover {
  background: rgba(28, 65, 112, 0.05) !important;
}
.admin-tab-btn.active {
  background: var(--white) !important;
  color: var(--navy-dark) !important;
  border-inline-start: 4px solid var(--navy-dark) !important;
}
.admin-tab-panel {
  animation: adminFadeIn 0.3s ease;
}
@keyframes adminFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.admin-action-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  font-family: inherit;
}
.admin-action-btn.edit {
  color: var(--navy-dark);
  border: 1px solid var(--navy-dark);
  margin-inline-end: 8px;
}
.admin-action-btn.edit:hover {
  background: var(--navy-dark);
  color: var(--cream);
}
.admin-action-btn.delete {
  color: #d9534f;
  border: 1px solid #d9534f;
}
.admin-action-btn.delete:hover {
  background: #d9534f;
  color: var(--white);
}
.admin-badge-status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.admin-badge-status.processing {
  background: #f0ad4e;
  color: #fff;
}
.admin-badge-status.shipped {
  background: #5cb85c;
  color: #fff;
}
.admin-badge-status.cancelled {
  background: #d9534f;
  color: #fff;
}

.admin-badge-status.regular {
  background: #e0e0e0;
  color: #333;
}
.admin-badge-status.vip {
  background: #1c4170;
  color: #f7f3eb;
}
.admin-badge-status.premium {
  background: #111;
  color: #d4af37;
  border: 1px solid #d4af37;
}

/* ==========================================
   Clay Mobile Menu Drawer Custom Styles (Renne Jewelry)
   ========================================== */
.mobile-menu-drawer-clay {
  background-color: var(--navy-dark) !important;
  color: #ffffff !important;
  font-family: 'Assistant', 'Poppins', sans-serif !important;
}

.mobile-drawer-header-clay {
  background-color: var(--navy-dark) !important;
  border-bottom: none !important;
  padding: 24px 30px;
}

.mobile-drawer-header-clay .drawer-close {
  color: #ffffff !important;
}

.mobile-drawer-body-clay {
  background-color: var(--navy-dark) !important;
  padding: 10px 30px 40px 30px !important;
  overflow-y: auto;
}

.mobile-nav-links-clay {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links-clay li {
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-nav-links-clay li a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  display: block;
  transition: opacity 0.2s ease !important;
}

.mobile-nav-links-clay li a:hover {
  opacity: 0.8 !important;
}

.mobile-menu-dropdown-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  user-select: none !important;
}

.mobile-menu-dropdown-header .dropdown-arrow {
  font-size: 12px !important;
  transition: transform 0.3s ease !important;
  display: inline-block !important;
}

.mobile-menu-item-dropdown.expanded .mobile-menu-dropdown-header .dropdown-arrow {
  transform: rotate(180deg) !important;
}

.mobile-submenu {
  display: none;
  list-style: none !important;
  padding: 0 !important;
  padding-inline-start: 15px !important;
  margin: 12px 0 0 0 !important;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-item-dropdown.expanded .mobile-submenu {
  display: flex !important;
}

.mobile-submenu li a {
  font-size: 13px !important;
  font-weight: 400 !important;
  opacity: 0.85 !important;
  text-transform: capitalize !important;
}

.mobile-menu-divider-white {
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
  margin: 15px 0 !important;
  height: 0 !important;
}

.mobile-menu-login-link-white {
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
}

.lang-switcher-mobile-clay {
  margin-top: 15px !important;
}

.lang-option-mobile-clay {
  transition: opacity 0.2s ease !important;
}

.lang-option-mobile-clay:hover {
  opacity: 0.8 !important;
}

/* ==========================================
   ROZEN'S Luxury Landing Page & Animation System
   ========================================== */

/* Keyframe Animations */
@keyframes zoomSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Sticky Landing Header */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(210, 195, 160, 0.25);
  transition: var(--transition-smooth);
}

.landing-header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-nav-links {
  display: flex;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .landing-nav-links {
    display: none;
  }
}

.landing-nav-link {
  position: relative;
  padding: 8px 0;
  opacity: 0.85;
}

.landing-nav-link:hover {
  opacity: 1;
}

.landing-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: var(--transition-smooth);
}

.landing-nav-link:hover::after {
  width: 100%;
}

/* Immersive Hero Section */
.landing-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.landing-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomSlow 20s infinite alternate ease-in-out;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 43, 77, 0.55);
  z-index: 2;
}

.landing-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.landing-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--line);
  display: block;
}

.landing-hero-title {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 30px;
  text-transform: uppercase;
}


@media (max-width: 768px) {
  .landing-hero-title {
    font-size: 38px;
  }
}

.landing-hero-btn {
  display: inline-block;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 15px 35px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  background: transparent;
  cursor: pointer;
}

.landing-hero-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
}

/* Split Craftsmanship Section */
.landing-split-section {
  padding: 120px 0;
  background: var(--cream);
}

.landing-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .landing-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.landing-split-img-wrap {
  position: relative;
  height: 550px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.landing-split-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.landing-split-img-wrap:hover img {
  transform: scale(1.03);
}

.landing-split-content {
  padding: 0 20px;
}

.landing-split-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 12px;
  display: block;
}

.landing-split-title {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--navy-dark);
  font-family: var(--font-serif);
  line-height: 1.3;
}

.landing-split-text {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Curated Collection Showcase */
.landing-showcase-section {
  padding: 120px 0;
  background: var(--cream-dark);
  text-align: center;
}

.landing-section-title {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--navy-dark);
  font-family: var(--font-serif);
  text-transform: uppercase;
}

.landing-section-subtitle {
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 14px;
  line-height: 1.6;
}

.landing-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

@media (max-width: 580px) {
  .landing-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.landing-product-card {
  background: var(--white);
  border: 1px solid rgba(210, 195, 160, 0.25);
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.landing-product-card:hover {
  box-shadow: 0 15px 35px rgba(18, 43, 77, 0.05);
  transform: translateY(-6px);
  border-color: var(--line);
}

.landing-product-img {
  height: 270px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--cream-dark);
}

.landing-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-product-card:hover .landing-product-img img {
  transform: scale(1.06);
}

.landing-product-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.landing-product-price {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 600;
}

/* Interactive Consultation Form */
.landing-form-section {
  padding: 120px 0;
  background: var(--white);
  display: flex;
  justify-content: center;
}

.landing-form-card {
  width: 100%;
  max-width: 750px;
  padding: 60px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 20px 50px rgba(18, 43, 77, 0.03);
}

@media (max-width: 768px) {
  .landing-form-card {
    padding: 40px 25px;
  }
}

.landing-form-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-family: var(--font-serif);
}

.landing-form-desc {
  text-align: center;
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 45px;
  line-height: 1.6;
}

.landing-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

@media (max-width: 580px) {
  .landing-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.landing-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-form-group.full-width {
  grid-column: 1 / -1;
}

.landing-form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.landing-form-group input,
.landing-form-group select,
.landing-form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-dark);
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.landing-form-group input:focus,
.landing-form-group select:focus,
.landing-form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28, 65, 112, 0.08);
}

.landing-submit-btn {
  width: 100%;
  background: var(--navy-dark);
  color: var(--white);
  padding: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 15px;
  transition: var(--transition-smooth);
  border: 1px solid var(--navy-dark);
  cursor: pointer;
}

.landing-submit-btn:hover {
  background: transparent;
  color: var(--navy-dark);
}

/* Mobile responsive adjustments for Landing/VIP page */
@media (max-width: 768px) {
  .landing-split-section,
  .landing-showcase-section,
  .landing-form-section {
    padding: 60px 0 !important;
  }
  .landing-split-img-wrap {
    height: 320px !important;
  }
  .landing-split-grid {
    gap: 30px !important;
  }
  .landing-form-card {
    padding: 30px 18px !important;
  }
  .landing-hero-title {
    font-size: 28px !important;
  }
  .landing-hero-eyebrow {
    font-size: 11px !important;
    letter-spacing: 2px !important;
  }
  .landing-header-inner {
    padding: 0 15px !important;
  }
}

/* ==========================================
   ROZEN'S Accessibility & Regulatory Systems
   ========================================== */

/* Accessibility Options Panel */
.accessibility-panel {
  position: fixed;
  bottom: 95px;
  left: 20px;
  width: 320px;
  max-width: 90vw;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgba(18, 43, 77, 0.18);
  z-index: 1000;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 15px;
  text-align: right;
  direction: rtl;
  border-radius: 4px !important;
}

html[dir="ltr"] .accessibility-panel {
  left: auto;
  right: 20px;
  text-align: left;
  direction: ltr;
}

.accessibility-panel.active {
  display: flex;
}

.accessibility-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.accessibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.accessibility-btn {
  background: var(--cream);
  color: var(--navy-dark);
  border: 1px solid var(--line);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  border-radius: 2px !important;
}

.accessibility-btn:hover,
.accessibility-btn.active {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.accessibility-btn.full-width {
  grid-column: 1 / -1;
}

/* Accessibility state helpers */
body.acc-grayscale > *:not(.accessibility-panel):not(.float-action-btn):not(.floating-lang-picker):not(.regulatory-modal) {
  filter: grayscale(100%) !important;
}
body.acc-high-contrast {
  background: #000 !important;
  color: #fff !important;
}
body.acc-high-contrast *:not(.accessibility-panel):not(.accessibility-panel *) {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
body.acc-negative-contrast > *:not(.accessibility-panel):not(.float-action-btn):not(.floating-lang-picker):not(.regulatory-modal) {
  filter: invert(100%) !important;
}
body.acc-underline-links a {
  text-decoration: underline !important;
}
body.acc-readable-font * {
  font-family: Arial, Helvetica, sans-serif !important;
}
body.acc-text-large {
  font-size: 1.15em !important;
}
body.acc-text-xlarge {
  font-size: 1.3em !important;
}

/* Regulatory Modals (Privacy & Accessibility Statement) */
.regulatory-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 43, 77, 0.65);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(5px);
}

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

.regulatory-modal-card {
  width: 100%;
  max-width: 680px;
  max-height: 80vh;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 25px 65px rgba(18, 43, 77, 0.2);
  display: flex;
  flex-direction: column;
  border-radius: 4px !important;
  animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.regulatory-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
}

.regulatory-modal-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
}

.regulatory-modal-close {
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--navy-dark);
  opacity: 0.6;
  transition: opacity 0.3s;
  line-height: 1;
  padding: 0 10px;
}

.regulatory-modal-close:hover {
  opacity: 1;
}

.regulatory-modal-content {
  padding: 28px 24px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-text);
  text-align: right;
  direction: rtl;
}

html[dir="ltr"] .regulatory-modal-content {
  text-align: left;
  direction: ltr;
}

.regulatory-modal-content h3 {
  color: var(--navy-dark);
  font-family: var(--font-serif);
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 16px;
}

.regulatory-modal-content p {
  margin-bottom: 14px;
}

