/*
 * Lubaca Premium Luxury E-Commerce Stylesheet
 * Brand Personality: Elegant, Sophisticated, Warm, Celebration-focused
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://db.onlinewebfonts.com/c/61637e80c3e88812def846832594f24d?family=Larken-Regular');

/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
  /* Colors - Synced with official Lubaca Mockup Design (#8C2B54 Plum Burgundy) */
  --color-plum: #8C2B54;
  --color-plum-hover: #732043;
  --color-plum-light: #FAF0F3;
  --color-plum-muted: #D9A5B8;
  
  --color-rose: #8C2B54;
  --color-rose-light: #FAF0F3;
  --color-rose-hover: #732043;
  --color-rose-accent: #E8C8D5;
  --color-rose-muted: #D9A5B8;
  
  /* Aliases for compatibility with inline styles & scripts */
  --color-gold: var(--color-plum);
  --color-gold-light: var(--color-plum-light);
  --color-gold-hover: var(--color-plum-hover);
  --color-peach-rose: var(--color-rose-accent);
  --color-peach-light: var(--color-plum-light);
  --color-sand: #e8e2d6;
  --color-cream: #ffffff;
  --color-cream-tint: #FAF0F3;
  --color-blue-dusty: var(--color-rose-muted);
  --color-blue-light: #f1e2e5;
  
  --color-dark: #05244C;
  --color-dark-light: #48433f;
  --color-muted: #706b64;
  --color-white: #ffffff;
  
  --color-border: #E8C8D5;
  --color-border-light: #F4E2E9;
  --color-shadow: rgba(140, 43, 84, 0.08);
  --color-shadow-hover: rgba(140, 43, 84, 0.16);

  /* Fonts */
  --font-serif: 'Larken-Regular', 'Cormorant Garamond', serif;
  --font-sans: 'Larken-Regular', 'Outfit', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout */
  --container-max-width: 1280px;
  --header-height: 145px;
  --header-sticky-height: 90px;
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px; /* Increased overall site font size */
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600; /* Bolder headings for high visibility */
  color: var(--color-dark);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--color-peach-rose);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #4a3c31 0%, #c87a87 50%, #4a3c31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  width: 100%;
}

.section-subtitle {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #c87a87 0%, #645549 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  width: 100%;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-dark);
}

.btn-primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.btn-secondary:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-text:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-text:hover svg {
  transform: translateX(4px);
}

.btn-text svg {
  transition: var(--transition-fast);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--color-dark-light);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-gold);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--color-peach-rose);
  color: var(--color-dark);
  border-radius: 20px;
}

.badge-gold {
  background-color: var(--color-gold-light);
  color: var(--color-gold);
}

/* --- HEADER DESIGN --- */
.header-wrapper {
  background: linear-gradient(135deg, #fcf9f5 0%, #fdf5f6 100%); /* Elegant cream to rose-blush gradient */
  border-bottom: 1px solid var(--color-rose-accent);
  position: relative;
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}



/* Search Bar */
.search-container {
  position: relative;
  width: 320px;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  height: 38px;
  padding: 0 36px 0 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem; /* Increased size for clarity */
  color: #645549; /* Darker, high-contrast Almond Beige */
  font-weight: 500; /* Added weight for readability */
  transition: var(--transition-fast);
  background: transparent;
  line-height: 37px;
}

.search-input::placeholder {
  color: #8c7e70; /* fallback for older browsers */
  background: linear-gradient(to right, var(--color-rose) 0%, #8c7e70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
}

.search-input:focus {
  border-bottom-color: var(--color-rose); /* Lubaca Brand Pink */
  outline: none;
}

.search-icon-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #645549; /* High-contrast Almond Beige */
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
}

.search-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2; /* Thicker line to make it noticeable */
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

.search-icon-btn:hover svg {
  color: var(--color-rose); /* Lubaca Brand Pink */
  transform: scale(1.18); /* Pulsing hover zoom */
}

/* Search Dropdown Modal */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 760px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.08);
  margin-top: 12px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}

.search-dropdown.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.search-dropdown-inner {
  display: flex;
}

.search-dropdown-left {
  width: 35%;
  padding: 24px;
  border-right: 1px solid var(--color-border-light);
  background-color: var(--color-cream);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.search-dropdown-right {
  width: 65%;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.search-dropdown-section {
  margin-bottom: 24px;
}

.search-dropdown-section:last-child {
  margin-bottom: 0;
}

.search-dropdown-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.search-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-dropdown-list li {
  margin-bottom: 8px;
}

.search-dropdown-list li:last-child {
  margin-bottom: 0;
}

.search-dropdown-list a {
  font-size: 0.825rem;
  color: var(--color-muted);
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.search-dropdown-list a:hover {
  color: var(--color-rose-hover);
  transform: translateX(4px);
}

.search-dropdown-products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  margin-bottom: 16px;
}

.search-dropdown-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.search-dropdown-product-item:hover {
  background-color: var(--color-rose-light);
}

.search-dropdown-product-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-border-light);
}

.search-dropdown-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-dropdown-product-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
}

.search-dropdown-product-price {
  font-size: 0.8rem;
  color: var(--color-rose);
  font-weight: 600;
}

.search-dropdown-view-all {
  display: block;
  width: 100%;
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: auto;
}

.search-dropdown-view-all:hover {
  background-color: var(--color-rose-hover);
}

.search-dropdown-empty {
  font-size: 0.8rem;
  color: var(--color-muted);
  padding: 12px 8px;
  text-align: center;
}

/* Responsive adjustment for search dropdown */
@media (max-width: 991px) {
  .search-dropdown {
    width: 320px;
    left: auto;
    right: 0;
  }
  .search-dropdown-inner {
    flex-direction: column;
  }
  .search-dropdown-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
    padding: 16px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
  }
  .search-dropdown-right {
    width: 100%;
    padding: 16px;
  }
}

/* Header Row 1 Right Nav */
.header-row-1-nav {
  display: flex;
  gap: 28px;
}

.header-row-1-nav a {
  font-size: 0.8rem; /* Slightly larger for visibility */
  font-weight: 600; /* Bolder for high legibility */
  text-transform: uppercase;
  letter-spacing: 2px; /* Slightly increased letter-spacing */
  color: #645549; /* Darker, high-contrast Almond Beige */
  transition: var(--transition-fast);
}

.header-row-1-nav a:hover {
  color: var(--color-rose); /* Lubaca Brand Pink */
}

/* Header Row 2 */
.header-row-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.logo-image {
  height: 110px;
  width: auto;
  transition: var(--transition-smooth);
  display: block;
}

.logo-image:hover {
  transform: scale(1.02);
}

/* Header Row 2 Right Column */
.header-row-2-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

/* Header Row 2 Icons Row */
.header-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.icon-btn {
  position: relative;
  color: #4a3c31; /* Elegant Cocoa Brown */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: var(--transition-fast);
}

.icon-btn svg {
  width: 24px;  /* Make SVGs larger for better visibility */
  height: 24px;
  stroke: currentColor;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

.icon-btn:hover svg {
  color: var(--color-rose); /* Lubaca Brand Pink */
  transform: scale(1.15); /* smooth hover animation */
}

.icon-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background-color: var(--color-rose); /* Lubaca Brand Pink */
  color: var(--color-white); /* White text */
  font-size: 0.65rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category Navigation */
.category-nav {
  display: flex;
  gap: 32px;
}

.category-nav-link {
  font-size: 0.825rem; /* Larger than top menu, but elegant */
  font-weight: 500; /* Medium weight */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4a3c31; /* Elegant Cocoa Brown */
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition-fast);
}

.category-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-rose); /* Lubaca Brand Pink */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-nav-link:hover,
.category-nav-link.active {
  color: var(--color-rose); /* Lubaca Brand Pink */
}

.category-nav-link:hover::after,
.category-nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-dark);
  cursor: pointer;
}

/* Sticky Header Behavior */
body.header-sticky .header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  background: rgba(252, 249, 245, 0.95); /* Clear background gradient to show clean solid color on scroll */
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.header-sticky {
  padding-top: var(--header-height);
}

body.header-sticky .header-row-1 {
  display: none;
}

/* Sticky hamburger menu — hidden by default, shown only in sticky mode */
.sticky-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid #b06571;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: #4a3c31;
  transition: all 0.25s ease;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.sticky-menu-toggle:hover {
  background: #b06571;
  color: #fff;
  border-color: #b06571;
}

.sticky-menu-toggle svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

body.header-sticky .header-row-2 {
  padding: 10px 0; /* Add vertical padding for spacing above/below logo when sticky */
}

body.header-sticky .logo-image {
  height: 55px; /* Compact mobile sticky logo */
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* --- HERO BANNER / SLIDER --- */
.hero-slider {
  position: relative;
  height: calc(100vh - 120px); /* Expanded further to prevent any bottom white space from showing */
  min-height: 500px;
  overflow: hidden;
}

/* =============================================
   HANGING BELL ANNOUNCEMENT
   ============================================= */
.hanging-bell-announcement {
  position: absolute;
  top: 0;
  right: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bellSwing 3s ease-in-out infinite;
  transform-origin: top center;
  cursor: pointer;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}

/* The string from which bell hangs */
.bell-string {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #c9a96e, #b8860b);
}

/* Bell body card */
.bell-body {
  background: linear-gradient(135deg, #b8860b 0%, #d4a843 40%, #f5d98e 100%);
  color: #3e2c1a;
  padding: 16px 18px 14px;
  border-radius: 8px 8px 22px 22px;
  text-align: center;
  min-width: 110px;
  position: relative;
  box-shadow:
    0 4px 16px rgba(184, 134, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Shimmer effect on bell body */
/*.bell-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  border-radius: inherit;
  animation: bellShimmer 4s ease-in-out infinite 1.5s;
}*/

/* Bell icon */
.bell-icon {
  margin-bottom: 6px;
  color: #3e2c1a;
  animation: bellRing 3s ease-in-out infinite;
}

/* Discount text — big & bold */
.bell-discount {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  margin-bottom: 3px;
}

/* Message text */
.bell-message {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  color: #3e2c1a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Clapper at the bottom */
.bell-clapper {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 35% 35%, #f5d98e, #b8860b);
  border-radius: 50%;
  margin-top: -1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Swing animation */
@keyframes bellSwing {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-4deg); }
  45% { transform: rotate(3deg); }
  60% { transform: rotate(-2deg); }
  75% { transform: rotate(1deg); }
}

/* Bell icon ring animation */
@keyframes bellRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-12deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(0deg); }
}

/* Shimmer sweep */
@keyframes bellShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Hover effects */
.hanging-bell-announcement:hover {
  animation-play-state: paused;
  filter: drop-shadow(0 12px 32px rgba(184, 134, 11, 0.45));
}

.hanging-bell-announcement:hover .bell-body {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Responsive — mobile */
@media (max-width: 768px) {
  .hanging-bell-announcement {
    right: 8px;
  }
  .bell-string {
    height: 7px;
  }
  .bell-body {
    padding: 6px 8px 4px;
    min-width: 70px;
    border-radius: 6px;
  }
  .bell-icon svg {
    width: 14px;
    height: 14px;
  }
  .bell-discount {
    font-size: 0.95rem;
    margin-bottom: 1px;
  }
  .bell-message {
    font-size: 0.45rem;
    line-height: 1.2;
  }
  .bell-clapper {
    width: 6px;
    height: 6px;
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(35, 20, 22, 0.75) 0%, rgba(35, 20, 22, 0.4) 50%, rgba(0, 0, 0, 0.05) 100%); /* Subtle dark rose gradient to make text pop without washing out the image */
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fits full width and height */
  z-index: 1;
  transform: scale(1.06);
  transition: transform 6s ease-out;
}

.hero-slide.active .hero-bg-img {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-left: 24px;
}

.hero-slide-inner {
  max-width: 650px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-white); /* White text for contrast on dark gradient overlay */
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
  transition-delay: 0.4s;
}

.hero-description {
  font-size: 1.15rem;
  color: #fbecee; /* Soft blush text for contrast */
  font-weight: 400;
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
  transition-delay: 0.6s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(15px);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
  transition-delay: 0.8s;
}

.hero-actions .btn-primary {
  background-color: var(--color-rose);
  color: var(--color-white);
  border: 1px solid var(--color-rose);
}

.hero-actions .btn-primary:hover {
  background-color: var(--color-rose-hover);
  border-color: var(--color-rose-hover);
  color: var(--color-white);
  transform: translateY(-2px);
}

.hero-actions .btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.hero-actions .btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.hero-slide.active .hero-title,
.hero-slide.active .hero-description,
.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Navigation Controls */
.hero-controls {
  position: absolute;
  bottom: 30px;
  right: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(35, 20, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-control-btn:hover {
  background-color: var(--color-rose);
  border-color: var(--color-rose);
  color: var(--color-white);
  transform: scale(1.05);
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-indicator.active {
  background-color: var(--color-gold);
  transform: scale(1.25);
}

/* --- FEATURED CATEGORIES --- */
/* Section-specific header styles removed - now inherited from global section rules */

.featured-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.category-card {
  position: relative;
  height: 420px; /* Grand, spacious height */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
  border-radius: 24px; /* Premium modern rounded corners */
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.04);
  transition: var(--transition-smooth);
}

/* Row 1: First 3 cards span 2 columns each (Total 6) */
.featured-categories-grid .category-card:nth-child(1),
.featured-categories-grid .category-card:nth-child(2),
.featured-categories-grid .category-card:nth-child(3) {
  grid-column: span 2;
}

/* Row 2: Next 2 cards span 3 columns each (Total 6, matching row 1 width) */
.featured-categories-grid .category-card:nth-child(4),
.featured-categories-grid .category-card:nth-child(5) {
  grid-column: span 3;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(200, 122, 135, 0.15); /* Elegant rose-tinted shadow */
}

.category-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  z-index: 1;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-card-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
}

.category-card-title {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 600; /* Bold title for high visibility */
  color: var(--color-white) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7); /* Added drop shadow for readability */
  transition: var(--transition-smooth);
}

.category-card:hover .category-card-title {
  color: var(--color-peach-rose) !important;
}

.category-card-count {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  display: block;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-smooth);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.category-card:hover .category-card-img {
  transform: scale(1.08);
}

.category-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.category-card:hover .category-card-count {
  transform: translateY(0);
  opacity: 1;
}

/* --- PRODUCT CARDS & GRID --- */
.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .products-grid-3 {
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
  }
}
@media (max-width: 576px) {
  .products-grid-3 {
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
  }
}


@media (max-width: 1199px) {
  .products-grid-4 {
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
  }
}
@media (max-width: 991px) {
  .products-grid-4 {
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
  }
}
@media (max-width: 576px) {
  .products-grid-4 {
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
  }

}

.product-card {
  background-color: transparent;
  border: none;
  overflow: visible;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
}

.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.85; /* Modern, clean proportions */
  background-color: var(--color-white);
  border-radius: 20px; /* Sophisticated rounded corners instead of arches */
  border: 1px solid var(--color-border-light);
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.02);
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-image-wrap {
  box-shadow: 0 20px 45px rgba(200, 122, 135, 0.12); /* Elegant rose-tinted shadow */
  border-color: var(--color-gold);
  transform: translateY(-4px); /* Modern subtle lift */
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card:hover .product-card-img-hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Product Card Actions Overlay */
.product-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /*background: rgba(255, 255, 255, 0.88);*/ /* Modern white glassmorphism */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 5;
  border-radius: 0 0 20px 20px;
}

.product-card:hover .product-card-actions {
  transform: translateY(0);
}

.product-card-action-btn {
  flex: 1;
  padding: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.product-card-action-btn:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.product-card-action-btn:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Product Wishlist Icon on Image */
.product-card-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(252, 249, 245, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark);
  transition: var(--transition-fast);
  z-index: 5;
}

.product-card-wishlist:hover {
  background-color: var(--color-white);
  color: #dc3545;
  transform: scale(1.1);
}

.product-card-wishlist.active {
  color: #dc3545;
}

/* Product Card Info */
.product-card-info {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-category {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card-title {
  font-size: 1.45rem; /* Larger font size */
  font-weight: 600; /* Bolder font weight */
  margin-bottom: 8px;
  color: var(--color-dark);
}

.product-card-title a:hover {
  color: var(--color-gold);
}

.product-card-price {
  font-size: 1.15rem; /* Larger font size */
  font-weight: 600; /* Bolder price */
  color: var(--color-gold);
  margin-top: auto;
}

.product-card-price .original-price {
  text-decoration: line-through;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-right: 6px;
}

/* --- SIGNATURE EDITORIAL COLLECTIONS --- */
.editorial-section {
  background-color: var(--color-gold-light);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.editorial-left {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.editorial-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}

.editorial-right-item {
  position: relative;
  overflow: hidden;
  height: 285px;
}

.editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.editorial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(35, 20, 22, 0) 0%, rgba(35, 20, 22, 0.45) 50%, rgba(35, 20, 22, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.editorial-left:hover .editorial-img,
.editorial-right-item:hover .editorial-img {
  transform: scale(1.04);
}

.editorial-overlay-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-peach-light);
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.editorial-overlay-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-white) !important;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.editorial-right-item .editorial-overlay {
  padding: 30px;
}

.editorial-right-item .editorial-overlay-title {
  font-size: 1.8rem;
}

/* High-contrast and highly readable buttons inside editorial overlays */
.editorial-overlay .btn {
  border-color: var(--color-white) !important;
  color: var(--color-white) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.editorial-overlay .btn:hover {
  background-color: var(--color-white) !important;
  color: var(--color-dark) !important;
  border-color: var(--color-white) !important;
  text-shadow: none;
}

/* --- VIDEO STORYTELLING SECTION --- */
/* --- VIDEO STORYTELLING SECTION (SPLIT SCREEN LAYOUT) --- */
.video-section-split {
  display: flex;
  height: 480px;
  background-color: var(--color-white);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.02);
}

.video-split-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background-color: var(--color-rose-light);
  border-right: 1px solid var(--color-border-light);
}

.video-split-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.video-split-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.video-split-media {
  width: 60%;
  position: relative;
  height: 100%;
}

.video-split-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(253, 245, 246, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* --- ABOUT LUBACA EDITORIAL SECTION --- */
.about-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-editorial-img-wrap {
  position: relative;
}

.about-editorial-img-wrap::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--color-gold);
  z-index: -1;
}

.about-editorial-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 15px 40px var(--color-shadow);
}

.about-editorial-content {
  padding-left: 20px;
}

.about-editorial-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.about-editorial-title {
  font-size: 3rem;
  margin-bottom: 24px;
}

.about-editorial-text {
  color: var(--color-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* --- WHY CHOOSE LUBACA --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 45px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 25px rgba(45, 41, 38, 0.02);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(200, 122, 135, 0.08);
  border-color: var(--color-gold);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  color: var(--color-rose);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background-color: var(--color-rose);
  color: var(--color-white);
  transform: rotate(5deg) scale(1.05);
}

.why-svg {
  transition: var(--transition-smooth);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.why-divider {
  width: 35px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 16px auto;
  transition: var(--transition-smooth);
}

.why-card:hover .why-divider {
  width: 60px;
  background-color: var(--color-rose);
}

.why-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-muted);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.testimonial-slide {
  display: none;
  padding: 0 40px;
  animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-dark-light);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-dark);
}

.testimonial-author-title {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testimonials-control-btn {
  color: var(--color-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonials-control-btn:hover {
  color: var(--color-gold);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
  background-color: var(--color-peach-light);
  text-align: center;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.newsletter-desc {
  font-size: 0.95rem;
  color: var(--color-dark-light);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  box-shadow: 0 5px 20px rgba(45, 41, 38, 0.05);
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  font-size: 0.9rem;
  color: var(--color-dark);
}

.newsletter-btn {
  padding: 16px 36px;
  background-color: var(--color-dark);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--color-gold);
}

/* --- SHOP PAGE / FILTERS & GRID --- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.shop-sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-list {
  list-style: none;
}

.filter-item {
  margin-bottom: 10px;
}

.filter-link {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-link:hover, .filter-link.active {
  color: var(--color-gold);
}

.filter-count {
  font-size: 0.75rem;
  background-color: var(--color-border-light);
  padding: 2px 6px;
  color: var(--color-muted);
}

/* Price Range Filter */
.price-slider-container {
  padding: 10px 0;
}

.price-values {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.range-slider {
  width: 100%;
  accent-color: var(--color-gold);
}

/* Shop Utilities Bar */
.shop-utilities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border-light);
}

.results-count {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.sort-select {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-dark);
  font-size: 0.85rem;
}

/* --- PRODUCT CATEGORY PAGE BANNER --- */
.category-hero {
  position: relative;
  height: 250px;
  background-color: var(--color-peach-rose);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-dark);
}

.category-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 24px;
}

.category-hero-title {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

.category-hero-desc {
  font-size: 0.95rem;
  color: var(--color-dark-light);
}

/* --- SINGLE PRODUCT DETAIL PAGE --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.product-gallery {
  display: flex;
  gap: 20px;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80px;
}

.gallery-thumbnail {
  aspect-ratio: 1;
  border: 1px solid var(--color-border);
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

.gallery-thumbnail.active, .gallery-thumbnail:hover {
  border-color: var(--color-gold);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main-image {
  flex: 1;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-panel {
  padding-left: 10px;
}

.product-detail-title {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.product-detail-price {
  font-size: 1.8rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.product-detail-meta {
  list-style: none;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
}

.product-detail-meta li {
  margin-bottom: 8px;
}

.product-detail-meta strong {
  color: var(--color-dark);
}

.product-detail-desc {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}

/* Purchase Section */
.purchase-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
}

.quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  user-select: none;
  transition: var(--transition-fast);
}

.quantity-btn:hover {
  background-color: var(--color-border-light);
  color: var(--color-gold);
}

.quantity-input {
  width: 44px;
  text-align: center;
  font-weight: 500;
}

.purchase-row .btn {
  flex-grow: 1;
}

/* Tabs System */
.product-tabs-header {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
  gap: 30px;
}

.tab-btn {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 0;
  cursor: pointer;
  position: relative;
  color: var(--color-muted);
  transition: var(--transition-fast);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active {
  color: var(--color-dark);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-pane.active {
  display: block;
}

/* Product Specifications / Detail Grid */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.spec-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.spec-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
}

.spec-table td.label {
  font-weight: 600;
  color: var(--color-dark);
  width: 30%;
}

.spec-table td.val {
  color: var(--color-muted);
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 20px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.review-rating {
  color: var(--color-gold);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.review-comment {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* --- OUR STORY PAGE / TIMELINE --- */
.timeline-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.timeline-intro-text {
  font-size: 1.15rem;
  color: var(--color-dark-light);
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--color-border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-gold);
  border: 3px solid var(--color-cream);
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-item-left, .timeline-item-right {
  width: 45%;
}

.timeline-content {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--color-shadow);
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 10px;
  display: block;
}

.timeline-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.timeline-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 10px 30px var(--color-shadow);
  margin-top: 0;
  transition: var(--transition-smooth);
}

.timeline-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--color-shadow);
}

/* Alternate Left / Right alignment is handled in HTML structure by placing content in timeline-item-left/right */

/* Mission Section */
.mission-box {
  background-color: var(--color-peach-light);
  padding: 60px;
  text-align: center;
  max-width: 800px;
  margin: 80px auto 0;
  box-shadow: 0 10px 30px var(--color-shadow);
}

.mission-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.mission-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.6;
  font-style: italic;
}

/* --- BLOG LISTING & SINGLE BLOG --- */
.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--color-shadow-hover);
}

.blog-card-image {
  height: 240px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-info {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}

.blog-card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.blog-card-title a:hover {
  color: var(--color-gold);
}

.blog-card-summary {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 20px;
}

/* Single Blog Page */
.blog-single-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.blog-single-title {
  font-size: 3.6rem;
  margin-bottom: 20px;
}

.blog-single-hero-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  margin-bottom: 50px;
}

.blog-single-content {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-dark-light);
  line-height: 1.8;
}

.blog-single-content p {
  margin-bottom: 24px;
}

.blog-single-content blockquote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.5;
  border-left: 2px solid var(--color-gold);
  padding-left: 24px;
  margin: 40px 0;
  color: var(--color-gold);
  font-style: italic;
}

.blog-single-content h2 {
  font-size: 2.2rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--color-dark);
}

/* --- CONTACT US PAGE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
}

.contact-info-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-info-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: var(--transition-fast);
}

.social-circle:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.map-placeholder {
  width: 100%;
  height: 350px;
  background-color: var(--color-sand);
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --- WISHLIST & CART PAGE / TABLE STYLE --- */
.cart-table-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  overflow-x: auto;
  margin-bottom: 40px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.cart-table th {
  background-color: var(--color-gold-light);
  padding: 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-table td {
  padding: 24px 16px;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: middle;
}

.cart-table-product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-table-product-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid var(--color-border-light);
}

.cart-table-product-name {
  font-weight: 500;
  font-size: 1rem;
}

.cart-table-product-name:hover {
  color: var(--color-gold);
}

.cart-table-price {
  font-weight: 500;
  color: var(--color-dark);
}

.cart-table-remove {
  color: var(--color-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-table-remove:hover {
  color: #dc3545;
}

/* Wishlist page specifics */
.wishlist-actions {
  display: flex;
  gap: 12px;
}

/* Empty state message */
.empty-state {
  text-align: center;
  padding: 60px 24px;
}

.empty-state-icon {
  font-size: 3.5rem;
  color: var(--color-peach-rose);
  margin-bottom: 20px;
}

.empty-state-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.empty-state-desc {
  color: var(--color-muted);
  margin-bottom: 24px;
}

/* --- SEARCH RESULTS --- */
.search-header-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.search-query-text {
  font-style: italic;
  color: var(--color-gold);
}

/* --- SIDE-DRAWERS (GLOBAL CART & LOGIN) --- */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 41, 38, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background-color: var(--color-cream);
  z-index: 1001;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .side-drawer {
    width: 100%;
  }
}

.side-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title {
  font-size: 1.6rem;
  font-weight: 500;
}

.drawer-close-btn {
  font-size: 1.4rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  color: var(--color-gold);
}

.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

/* Cart Drawer Specifics */
.cart-drawer-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

.cart-drawer-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--color-border-light);
}

.cart-drawer-item-info {
  flex-grow: 1;
}

.cart-drawer-item-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.cart-drawer-item-price {
  color: var(--color-gold);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.cart-drawer-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  width: fit-content;
}

.cart-drawer-item-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
}

.cart-drawer-item-qty-val {
  width: 30px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}

.cart-drawer-item-remove {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0.95rem;
}

.cart-drawer-item-remove:hover {
  color: #dc3545;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-white);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer-actions .btn {
  width: 100%;
}

/* Account Login Drawer Specifics */
.account-tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.account-tab-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  cursor: pointer;
  position: relative;
}

.account-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.account-tab-btn.active {
  color: var(--color-dark);
}

.account-tab-btn.active::after {
  transform: scaleX(1);
}

.account-form-panel {
  display: none;
}

.account-form-panel.active {
  display: block;
}

.forgot-password-link {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: -12px;
  margin-bottom: 20px;
}

.forgot-password-link:hover {
  color: var(--color-gold);
}

/* --- FOOTER DESIGN --- */
.footer-wrap {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid var(--color-dark-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column-title {
  color: var(--color-peach-light);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b8b3ad;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
  color: #b8b3ad;
  font-size: 0.9rem;
}

.footer-contact-info li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-info-icon {
  color: var(--color-gold);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-dark-light);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #8c8680;
}

.footer-motto {
  font-size: 0.8rem;
  color: #8c8680;
}

/* --- RESPONSIVE LAYOUT BREAKPOINTS --- */
@media (max-width: 1024px) {
  .products-grid-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .featured-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .featured-categories-grid .category-card:nth-child(1),
  .featured-categories-grid .category-card:nth-child(2),
  .featured-categories-grid .category-card:nth-child(3),
  .featured-categories-grid .category-card:nth-child(4) {
    grid-column: span 1 !important;
  }
  .featured-categories-grid .category-card:nth-child(5) {
    grid-column: span 2 !important; /* Stretch last one to full width */
  }
  .category-card {
    height: 340px;
    padding: 30px 24px;
  }
  .category-card-title {
    font-size: 1.8rem;
  }
  .editorial-layout {
    grid-template-columns: 1fr;
  }
  .editorial-left {
    height: 450px;
  }
  .editorial-right {
    flex-direction: row;
    gap: 20px;
  }
  .editorial-right-item {
    flex: 1;
    height: 300px;
  }
  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-editorial-img {
    height: 380px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-container::before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: column !important;
    padding-left: 40px;
  }
  .timeline-item:nth-child(even) {
    flex-direction: column-reverse !important;
  }
  .timeline-item-left, .timeline-item-right {
    width: 100%;
  }
  .timeline-content {
    margin-bottom: 20px;
  }
  .timeline-item::after {
    left: 20px;
  }
}

@media (max-width: 768px) {
  /* Header Row 1 hides, row 2 becomes stacked or toggle menu shows */
  .header-row-1 {
    display: none;
  }
  .header-row-2 {
    padding: 12px 0;
  }
  .logo-image {
    height: 75px; /* scale down logo for mobile viewports */
  }
  .category-nav {
    display: none; /* toggle mobile menu */
  }
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-slide::before {
    background: linear-gradient(
            180deg,
            rgba(35,20,22,0.25) 0%,
            rgba(35,20,22,0.15) 50%,
            rgba(35,20,22,0.25) 100%
        );
  }
  .hero-controls {
    display: none;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-slide {
        align-items: flex-start;
    }
  .hero-content {
    padding-left: 0;
    text-align: center;
	margin-top: 65px;
        
  }
  .hero-slide-inner {
    margin: 0 auto;
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .featured-categories-grid .category-card:nth-child(1),
  .featured-categories-grid .category-card:nth-child(2),
  .featured-categories-grid .category-card:nth-child(3),
  .featured-categories-grid .category-card:nth-child(4),
  .featured-categories-grid .category-card:nth-child(5) {
    grid-column: span 1 !important;
  }
  .category-card {
    height: 260px;
    padding: 30px 20px;
  }
  .category-card-title {
    font-size: 1.6rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    display: none; /* simple toggle or drawer for filters on mobile */
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery {
    flex-direction: column-reverse;
  }
  .gallery-thumbnails {
    flex-direction: row;
    width: 100%;
  }
  .blog-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Split Video Responsive Overrides */
  .video-section-split {
    flex-direction: column-reverse;
    height: auto;
  }
  .video-split-content {
    width: 100%;
    padding: 50px 30px;
    border-right: none;
    border-top: 1px solid var(--color-border-light);
  }
  .video-split-media {
    width: 100%;
    height: 320px;
  }
  .video-split-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 220px;
  }
  .featured-categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .featured-categories-grid .category-card:nth-child(1),
  .featured-categories-grid .category-card:nth-child(2),
  .featured-categories-grid .category-card:nth-child(3),
  .featured-categories-grid .category-card:nth-child(4),
  .featured-categories-grid .category-card:nth-child(5) {
    grid-column: span 1 !important;
  }
  .category-card {
    height: 220px;
    padding: 24px 16px;
  }
  .category-card-title {
    font-size: 1.4rem;
  }
  .products-grid-4, .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .editorial-right {
    flex-direction: column;
  }
  .blog-grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-row-2-right {
    align-items: center;
  }
  .header-icons {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  /* Product Card styling adjustments for 2-column mobile layout, defined at bottom to prevent desktop overrides */
  .product-card-info {
    padding: 10px 4px !important;
  }
  .product-card-title {
    font-size: 0.85rem !important; /* Force override of desktop font size */
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }
  .product-card-price {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
  }
  .product-card-category {
    font-size: 0.6rem !important;
    margin-bottom: 2px !important;
  }
  .product-card-wishlist {
    width: 32px !important;
    height: 32px !important;
    top: 10px !important;
    right: 10px !important;
  }
  .product-card-badge {
    top: 10px !important;
    left: 10px !important;
    padding: 4px 8px !important;
    font-size: 0.65rem !important;
  }
  .product-card-action-btn {
    padding: 8px 4px !important;
    font-size: 0.65rem !important;
  }
}

/* --- QUICK VIEW MODAL --- */
.quickview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 41, 38, 0.45);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.quickview-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.quickview-modal-content {
  background-color: var(--color-cream);
  width: 900px;
  max-width: 90%;
  height: fit-content;
  max-height: 85vh;
  box-shadow: 0 20px 50px rgba(45, 41, 38, 0.15);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-smooth);
  border: 1px solid var(--color-gold-light);
}

.quickview-modal.active .quickview-modal-content {
  transform: translateY(0) scale(1);
}

.quickview-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-dark);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.quickview-close-btn:hover {
  color: var(--color-gold);
}

.quickview-left {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1;
}

.quickview-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .quickview-modal-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }
  .quickview-right {
    padding: 24px;
  }
}

/* --- TWO-COLUMN HEADER STRUCTURE (DESKTOP) --- */
@media (min-width: 769px) {
  .header-wrapper .container {
    position: relative;
    padding-left: 240px; /* Space for logo left column */
  }

  .logo-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 16px 20px; /* generous white space around logo */
  }

  .logo-image {
    height: 105px; /* Centered and elegant height spanning header height */
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
  }

  .logo-image:hover {
    transform: scale(1.03);
  }

  .header-row-2 {
    display: block; /* Disable default flex row so right column spans full width */
    padding: 14px 0;
  }

  .header-row-2-right {
    display: grid;
    grid-template-columns: calc(50% - 400px) 320px 1fr;
    align-items: center;
    width: 100%;
  }



  .icon-btn svg {
    width: 26px; /* Increase icon size slightly */
    height: 26px;
  }

  .header-row-1 .category-nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: #4a3c31;
  }

  .header-row-2-right .search-container {
    grid-column: 2;
    justify-self: center;
    width: 320px;
  }

  .header-row-2-right .header-icons {
    grid-column: 3;
    justify-self: end;
  }

  body.header-sticky .header-row-2-right {
    min-height: 75px; /* Consistent desktop sticky header height */
    grid-template-columns: 1fr auto auto;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 0 14px;
  }

  /* Show sticky hamburger on desktop when sticky — right side before icons */
  body.header-sticky .sticky-menu-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    margin: 0;
  }

  body.header-sticky .header-row-2-right .search-container {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
  }

  body.header-sticky .header-row-2-right .header-icons {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  body.header-sticky .logo-container {
    padding: 10px 20px; /* Adjust padding on desktop sticky logo */
  }

  body.header-sticky .logo-image {
    height: 55px; /* Scale down sticky logo on desktop */
  }
}

/* ==========================================================================
   MOBILE & RESPONSIVE REFINEMENTS (GLOBAL AUDIT FIXES)
   ========================================================================== */

/* 1. Global Responsive Typography & Sizing */
@media (max-width: 991px) {
  html {
    font-size: 16px; /* Scales down all rem-based typography on tablets */
  }
  .section-title {
    font-size: 2.4rem !important;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px; /* Scales down all rem-based typography on small tablets / large phones */
  }
  
  .section-title {
    font-size: 2.0rem !important;
    margin-bottom: 8px !important;
  }
  
  .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 24px !important;
  }
  
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; }
  h3 { font-size: 1.4rem !important; }
  
  /* Blog Hero and Timeline Titles */
  .blog-single-title {
    font-size: 2.2rem !important;
  }
  .blog-single-hero-img {
    height: 320px !important;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px; /* Scales down all typography on mobile screens */
  }
  
  .section-title {
    font-size: 1.7rem !important;
  }
  
  h1 { font-size: 1.8rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.25rem !important; }
  
  .blog-single-title {
    font-size: 1.7rem !important;
  }
  .blog-single-hero-img {
    height: 220px !important;
    margin-bottom: 20px !important;
  }
  
  /* Responsive paddings for section containers */
  .section-padding {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* 2. Responsive Header & Icon Styling */
#mobile-search-toggle-btn {
  display: none !important;
}

@media (max-width: 768px) {
  /* Show search toggle on mobile */
  #mobile-search-toggle-btn {
    display: flex !important;
  }

  .header-icons {
    gap: 16px !important;
    align-items: center;
  }

  .logo-image {
    height: 60px !important; /* Elegant compact height */
  }
  
  .header-row-2 {
    padding: 10px 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
  .header-row-2-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .header-row-2-right .search-container {
    display: none !important; /* Hide desktop search container on mobile, as mobile JS creates its own toggle */
  }
}

/* 3. Mobile Slide-down Search Bar Wrapper */
.mobile-search-wrapper {
  display: none;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 12px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 8px 20px rgba(45, 41, 38, 0.08);
  z-index: 99;
}

.mobile-search-wrapper.active {
  display: block;
}

.mobile-search-wrapper .search-container {
  width: 100% !important;
}

/* 4. Mobile Menu Side Drawer (Right Slide-In by default) */
/* .mobile-menu-drawer.side-drawer uses default .side-drawer right-side positioning */

/* 5. Mobile Shop Filtering Drawer Override */
#mobile-filter-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  #mobile-filter-toggle {
    display: inline-flex !important;
  }

  .shop-sidebar {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: var(--color-cream);
    z-index: 2050;
    box-shadow: 10px 0 40px rgba(45, 41, 38, 0.15);
    padding: 30px 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .shop-sidebar.active {
    transform: translateX(0);
  }

  .sidebar-close-btn {
    display: block !important;
    text-align: right;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-dark);
    margin-bottom: 20px;
    transition: var(--transition-fast);
  }

  .sidebar-close-btn:hover {
    color: var(--color-rose);
  }
}

/* 6. Product Detail Purchase Row Sizing on Mobile */
@media (max-width: 480px) {
  .purchase-row {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  
  .purchase-row .quantity-selector {
    width: 100% !important;
    justify-content: space-between !important;
  }
  
  .purchase-row .quantity-btn {
    flex-grow: 1 !important;
  }
  
  .purchase-row .quantity-input {
    flex-grow: 2 !important;
  }
  
  .purchase-row .add-to-cart-trigger {
    width: calc(100% - 68px) !important;
    padding: 12px 16px !important;
    font-size: 0.8rem !important;
  }
  
  .purchase-row .product-card-wishlist {
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* 7. Contact Us Form Cushion on Mobile */
@media (max-width: 480px) {
  .contact-layout > section {
    padding: 24px !important;
  }
}

/* 8. Compact Wishlist Table Sizing */
@media (max-width: 600px) {
  .cart-table th {
    padding: 10px !important;
    font-size: 0.7rem !important;
  }
  
  .cart-table td {
    padding: 12px 10px !important;
  }
  
  .cart-table-product {
    gap: 8px !important;
  }
  
  .cart-table-product-img {
    width: 50px !important;
    height: 50px !important;
  }
  
  .cart-table-product-name {
    font-size: 0.85rem !important;
  }
  
  .wishlist-actions {
    flex-direction: column !important;
    gap: 8px !important;
  }
}

/* ==========================================================================
   LUBACA BRAND EVOLUTION: INTERNATIONAL GOURMET COLLECTION SYSTEM & UX
   ========================================================================== */

:root {
  /* Collection Color Identities */
  --dutch-blue-primary: #0A192F;
  --dutch-blue-royal: #1E40AF;
  --dutch-blue-accent: #3B82F6;
  --dutch-blue-light: #EFF6FF;

  --scottish-green-primary: #143623;
  --scottish-green-accent: #15803D;
  --scottish-purple: #3B1F47;
  --scottish-green-light: #F0FDF4;

  --italian-burgundy-primary: #58111A;
  --italian-magenta: #881337;
  --italian-rose-accent: #E11D48;
  --italian-rose-light: #FFF1F2;

  --lubaca-gold-accent: #D4AF37;
  --lubaca-gold-warm: #C5A059;

  --bg-warm-white: #FAF9F6;
  --bg-almond-cream: #F9F5EE;
  --bg-cream-soft: #F4EFE6;
  --bg-sand-light: #EFE8DC;
}

/* --- FARMLEY-INSPIRED SPLIT HERO BANNER STYLES --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 580px !important;
  min-height: 520px !important;
  max-height: 80vh !important;
  overflow: hidden;
  box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.08);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background Gradients & Doodle Patterns */
.hero-slide-dutch {
  background: linear-gradient(135deg, #0A192F 0%, #1E3A8A 60%, #1D4ED8 100%);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px), linear-gradient(135deg, #0A192F 0%, #1E3A8A 60%, #1D4ED8 100%);
  background-size: 28px 28px, 100% 100%;
}

.hero-slide-scottish {
  background: linear-gradient(135deg, #143623 0%, #1E4D31 50%, #3B1F47 100%);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px), linear-gradient(135deg, #143623 0%, #1E4D31 50%, #3B1F47 100%);
  background-size: 28px 28px, 100% 100%;
}

.hero-slide-italian {
  background: linear-gradient(135deg, #58111A 0%, #881337 60%, #BE123C 100%);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px), linear-gradient(135deg, #58111A 0%, #881337 60%, #BE123C 100%);
  background-size: 28px 28px, 100% 100%;
}

/* Split Grid Layout */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  padding-right: 20px;
}

.hero-collection-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.hero-collection-tag.tag-dutch {
  background: rgba(59, 130, 246, 0.25);
  color: #BFDBFE;
  border: 1px solid rgba(191, 219, 254, 0.4);
}

.hero-collection-tag.tag-scottish {
  background: rgba(21, 128, 61, 0.3);
  color: #BBF7D0;
  border: 1px solid rgba(187, 247, 208, 0.4);
}

.hero-collection-tag.tag-italian {
  background: rgba(225, 29, 72, 0.3);
  color: #FECDD3;
  border: 1px solid rgba(254, 205, 211, 0.4);
}

.hero-title {
  font-size: 3.5rem !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  margin-bottom: 14px !important;
}

.hero-description {
  font-size: 1.1rem !important;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.55 !important;
  margin-bottom: 22px !important;
  max-width: 560px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

/* Feature Badges Row */
.hero-feature-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-feature-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Right Column Product Visual */
.hero-split-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  height: 100%;
}

.hero-product-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-product-img {
  max-height: 420px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.5));
  animation: floatProduct 5s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.hero-badge-floating {
  position: absolute;
  top: 12%;
  right: 6%;
  background: rgba(255, 255, 255, 0.95);
  color: #0F172A;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  transform: rotate(4deg);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatProduct {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-14px) rotate(1.5deg) scale(1.02);
  }
}

@keyframes floatBadge {
  0% {
    transform: translateY(0) rotate(4deg);
  }
  100% {
    transform: translateY(-8px) rotate(1deg);
  }
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .hero-slider {
    height: auto !important;
    min-height: 520px !important;
    padding: 40px 0;
  }
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hero-split-left {
    align-items: center;
    padding-right: 0;
  }
  .hero-title {
    font-size: 2.5rem !important;
  }
  .hero-description {
    font-size: 0.95rem !important;
  }
  .hero-feature-badges {
    justify-content: center;
  }
  .hero-product-img {
    max-height: 280px;
  }
  .hero-badge-floating {
    top: 0;
    right: 0;
  }
}

  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.hero-collection-tag.tag-dutch {
  background: rgba(59, 130, 246, 0.25);
  color: #93C5FD;
  border: 1px solid rgba(147, 197, 253, 0.4);
}

.hero-collection-tag.tag-scottish {
  background: rgba(21, 128, 61, 0.25);
  color: #86EFAC;
  border: 1px solid rgba(134, 239, 172, 0.4);
}

.hero-collection-tag.tag-italian {
  background: rgba(225, 29, 72, 0.25);
  color: #FDA4AF;
  border: 1px solid rgba(253, 164, 175, 0.4);
}

/* --- FARMLEY-INSPIRED CATEGORY QUICK NAVIGATION STRIP --- */
.category-quick-strip {
  background-color: var(--bg-warm-white);
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 20;
}

.category-quick-header {
  text-align: center;
  margin-bottom: 18px;
}

.category-quick-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.5px;
}

.category-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.category-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 10px;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 40px;
  text-decoration: none;
  color: var(--color-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.category-pill-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.category-pill-thumb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-pill-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Pill specific accents */
.category-pill-item.pill-dutch:hover {
  border-color: var(--dutch-blue-accent);
  background: var(--dutch-blue-light);
  color: var(--dutch-blue-royal);
}

.category-pill-item.pill-scottish:hover {
  border-color: var(--scottish-green-accent);
  background: var(--scottish-green-light);
  color: var(--scottish-green-primary);
}

.category-pill-item.pill-italian:hover {
  border-color: var(--italian-rose-accent);
  background: var(--italian-rose-light);
  color: var(--italian-burgundy-primary);
}

.category-pill-item.pill-hampers:hover {
  border-color: var(--lubaca-gold-accent);
  background: #FFFBEB;
  color: #B45309;
}

.category-pill-item.pill-cakes:hover {
  border-color: var(--color-rose);
  background: var(--color-rose-light);
  color: var(--color-rose-hover);
}

/* --- FEATURED INTERNATIONAL COLLECTIONS SPOTLIGHT --- */
.collections-spotlight-section {
  padding: 60px 0;
  background-color: var(--bg-almond-cream);
}

.collections-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.spotlight-card {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.spotlight-card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.spotlight-card-dutch .spotlight-card-img-wrap {
  background: linear-gradient(135deg, #0A192F 0%, #1E3A8A 100%);
}

.spotlight-card-scottish .spotlight-card-img-wrap {
  background: linear-gradient(135deg, #143623 0%, #3B1F47 100%);
}

.spotlight-card-italian .spotlight-card-img-wrap {
  background: linear-gradient(135deg, #58111A 0%, #881337 100%);
}

.spotlight-card-img {
  max-height: 190px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-card:hover .spotlight-card-img {
  transform: scale(1.08) translateY(-4px);
}

.spotlight-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spotlight-card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: inline-block;
}

.spotlight-card-dutch .spotlight-card-badge { color: #1D4ED8; }
.spotlight-card-scottish .spotlight-card-badge { color: #15803D; }
.spotlight-card-italian .spotlight-card-badge { color: #BE123C; }

.spotlight-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.spotlight-card-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.spotlight-card-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --- PRODUCT CARD ELEVATION & SINGLE ROW GRID --- */
.products-grid-single-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.1);
}

.product-card-image-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #FAF9F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-info {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-category {
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: auto;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .collections-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid-single-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 480px !important;
    max-height: 75vh !important;
  }
  .category-pills-row {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .category-pill-item {
    flex-shrink: 0;
  }
  .collections-spotlight-grid {
    grid-template-columns: 1fr;
  }
  .products-grid-single-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-card-image-wrap {
    height: 170px;
  }
}

@media (max-width: 480px) {
  .products-grid-single-row {
    grid-template-columns: 1fr;
  }
  .product-card-image-wrap {
    height: 220px;
  }
}

/* ==========================================================================
   OFFICIAL LUBACA MOCKUP DESIGN EXTENSION (MATCHING ATTACHMENT MOCKUP)
   ========================================================================== */

/* Top Announcement Bar */
.top-announcement-bar {
  background-color: var(--color-plum);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-announcement-items {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-sep {
  opacity: 0.4;
}

.top-currency-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}
.top-currency-selector:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Header Tweaks for Mockup */
.header-mockup-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.header-mockup-nav a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-dark);
  position: relative;
  padding: 6px 0;
}

.header-mockup-nav a.active::after,
.header-mockup-nav a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-plum);
  border-radius: 2px;
}

/* =========================================
   FULL WIDTH HERO
========================================= */

.hero-mockup-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    background: #f8f2ed;
    display: flex;
    align-items: center;
}

/* Full-width background image */
.hero-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

/* Very subtle overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(255, 250, 246, 0.08) 0%,
        rgba(255, 250, 246, 0.02) 45%,
        rgba(255, 250, 246, 0) 70%
    );
}

/* HTML content positioned over image */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Left text area */
.hero-mockup-content {
    width: 48%;
    max-width: 560px;
}

/* Subtitle */
.hero-mockup-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-plum);
    margin-bottom: 14px;
}

/* Main heading */
.hero-mockup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-mockup-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-plum);
}

/* Description */
.hero-mockup-desc {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 480px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* CTA */
.hero-mockup-cta {
    margin-bottom: 10px;
}

.btn-primary-mockup {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: var(--color-plum);
    color: #ffffff;

    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    padding: 14px 34px;
    border-radius: 4px;

    box-shadow: 0 8px 20px rgba(140, 43, 84, 0.25);

    transition: all 0.3s ease;
}

.btn-primary-mockup:hover {
    background-color: #732043;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Feature items */
.hero-mockup-features {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
    padding-top: 25px;
    border-top: 1px solid rgba(140, 43, 84, 0.12);
}

.hero-mockup-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature-icon {
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(140, 43, 84, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
}

@media (max-width: 768px) {

    .hero-mockup-section {
        min-height: auto;
        display: block;
        background: #f8f2ed;
    }

    .hero-background-image {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        padding: 50px 25px;

        display: flex;
        align-items: flex-start;
    }

    .hero-mockup-content {
        width: 52%;
        max-width: 300px;
    }

    .hero-mockup-title {
        font-size: 2.5rem;
    }

    .hero-mockup-desc {
        font-size: 0.9rem;
    }

    .hero-mockup-features {
        display: none;
    }

    .btn-primary-mockup {
        padding: 12px 24px;
        font-size: 0.75rem;
    }
}
/* Collection Section */
.collection-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-plum);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.section-divider-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card-mockup {
  background-color: #ffffff;
  border: 1px solid #F2E4E9;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(140, 43, 84, 0.04);
  transition: all 0.35s ease;
  position: relative;
}

.product-card-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(140, 43, 84, 0.12);
  border-color: var(--color-border);
}

.product-card-image-box {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAF5F7;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}

.product-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card-mockup:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.product-card-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.product-card-title a:hover {
  color: var(--color-plum);
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-plum);
  margin-bottom: 16px;
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}

.btn-card-add {
  flex-grow: 1;
  background-color: var(--color-plum);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.btn-card-add:hover {
  background-color: #732043;
  transform: translateY(-1px);
}

.btn-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-plum);
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.btn-card-icon:hover {
  background-color: var(--color-plum-light);
  color: var(--color-plum);
  border-color: var(--color-plum);
}

.view-all-container {
  text-align: center;
  margin-top: 90px;
}

.btn-outline-mockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-plum);
  color: var(--color-plum);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-mockup:hover {
  background-color: var(--color-plum);
  color: #ffffff;
}

/* Our Story Section */
.story-mockup-section {
  background-color: #FAF0F3;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.story-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.story-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-plum);
  display: block;
  margin-bottom: 12px;
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.story-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-plum);
}

.story-text {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.story-art-container {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-windmill-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.story-emblem-large {
  position: relative;
  z-index: 2;
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Trust Features Section */
.trust-features-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-top: 1px solid #F4E2E9;
  border-bottom: 1px solid #F4E2E9;
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: #FAF0F3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.trust-feature-card:hover .trust-icon-circle {
  transform: scale(1.1);
  background-color: var(--color-plum);
}

.trust-feature-card:hover .trust-icon-circle svg {
  stroke: #ffffff;
}

.trust-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.trust-desc {
  font-size: 0.825rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* Checkout Page Styles */
.checkout-section {
  padding: 60px 0 90px 0;
  background-color: #FAF6F8;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.checkout-box {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(140, 43, 84, 0.04);
  margin-bottom: 30px;
}

.checkout-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-light);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DCE0E5;
  border-radius: 6px;
  font-size: 0.925rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
}

.form-control:focus {
  border-color: var(--color-plum);
  box-shadow: 0 0 0 3px rgba(140, 43, 84, 0.12);
  outline: none;
}

.payment-method-card {
  border: 1px solid #E2E6EA;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s ease;
}

.payment-method-card:hover,
.payment-method-card.active {
  border-color: var(--color-plum);
  background-color: #FAF0F3;
}

.payment-radio {
  accent-color: var(--color-plum);
}

.order-summary-box {
  position: sticky;
  top: 100px;
}

.order-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.order-item-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #FAF0F3;
  border-radius: 6px;
  padding: 4px;
}

.order-item-info {
  flex-grow: 1;
}

.order-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

.order-item-qty {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.order-item-price {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--color-plum);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-plum);
  border-top: 2px stroke var(--color-border);
  padding-top: 16px;
  margin-top: 8px;
}

/* Modal Confirmation */
.order-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.order-success-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.order-success-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive Styles for Mockup Layout */
@media (max-width: 992px) {
  .hero-mockup-grid,
  .story-mockup-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-mockup-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .products-grid-3 {
    grid-template-columns: 1fr;
  }
  .trust-features-grid {
    grid-template-columns: 1fr;
  }
  .hero-mockup-title {
    font-size: 2.2rem;
  }
  .top-announcement-items {
    font-size: 0.65rem;
    gap: 8px;
  }
}
