/* ============================================
   LE VIEUX MARIN - Vintage Maritime E-Commerce
   Design System & Core Styles
   "Experience the Old Maritime Tradition"
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Vintage Maritime Colors */
  --navy-dark: #1a2640;
  --navy: #2c3e5c;
  --navy-light: #3d5273;
  --teal: #3a7d7b;
  --teal-light: #5b9e9c;
  --teal-dark: #2a5d5b;
  --white: #fefdfb;

  /* Vintage Parchment & Sepia Tones */
  --sand: #f0e6d3;
  --sand-light: #f7f3eb;
  --sand-dark: #dfd2be;
  --parchment: #ede4d4;
  --sepia: #d4c4a8;
  --cream: #faf7f0;

  /* Aged Gold & Brass */
  --gold: #b89b4a;
  --gold-light: #d4b96a;
  --gold-dark: #8f7a3a;
  --brass: #a68b3d;

  /* Vintage Text */
  --text-dark: #2d2520;
  --text-muted: #6b5e52;
  --text-aged: #5c5047;

  --overlay: rgba(26, 38, 64, 0.75);

  --bs-nav-link-hover-color: var(--gold);
  --bs-navbar-active-color: var(--gold);

  /* Typography - Classic Serif for "Old Man Wisdom" */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Georgia', 'Times New Roman', serif;
  /* Changed from Inter to Serif */
  --font-script: 'Playfair Display', cursive, serif;

  /* Spacing */
  --section-py: 100px;
  --container-px: 15px;

  /* Vintage Effects */
  --shadow-sm: 1px 1px 2px rgba(45, 37, 32, 0.2);
  --shadow-md: 2px 2px 6px rgba(45, 37, 32, 0.25);
  --shadow-lg: 4px 4px 12px rgba(45, 37, 32, 0.3);
  --shadow-gold: 2px 2px 0px rgba(184, 155, 74, 0.5);
  /* Hard shadow */
  --shadow-vintage: 3px 3px 0px rgba(93, 80, 71, 0.3);
  /* Hard shadow */

  /* Vintage Borders */
  --border-vintage: 2px solid var(--sepia);
  --border-ornate: 4px double var(--gold);
  /* Thicker double border */

  /* Remove Roundness - Pure Vintage */
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --transition: all 0.3s ease;
}

/* ---------- E-commerce Top Bar ---------- */
.top-bar {
  background: var(--navy-dark);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar-left {
  display: flex;
  gap: 25px;
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar i {
  margin-right: 6px;
  color: var(--gold);
}

.promo-text {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- E-commerce Header ---------- */
.header-main {
  background: var(--navy);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.header-logo img {
  height: 55px;
  height: 60px;
  border: 2px solid var(--gold);
  padding: 2px;
  background: var(--navy-dark);
  filter: none;
  /* Show original logo colors if possible, or keep invert if needed. User provided logo.jpg so probably no invert needed */
}

.header-logo span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
  margin-left: 12px;
}

.header-logo span span {
  color: var(--gold);
}

.header-search {
  flex: 1;
  max-width: 500px;
  margin: 0 40px;
}

.header-search .input-group {
  display: flex;
  background: white;
  border-radius: 0;
  border: 2px solid var(--sepia);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.header-search select {
  border: none;
  background: var(--sand);
  padding: 14px 15px;
  font-size: 0.9rem;
  min-width: 150px;
  cursor: pointer;
  border-right: 1px solid var(--sand-dark);
}

.header-search select:focus {
  outline: none;
}

.header-search input {
  border: none;
  padding: 14px 20px;
  font-size: 0.95rem;
  flex: 1;
  min-width: 0;
}

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

.header-search button {
  background: var(--teal);
  border: none;
  padding: 14px 20px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search button:hover {
  background: var(--teal-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
  position: relative;
}

.header-action i {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.header-action:hover {
  color: var(--gold);
}

.header-action .badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  /* Badges can remain round */
  border: 1px solid var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.header-action .badge.cart-badge {
  background: #e74c3c;
  color: white;
}

/* ---------- Categories Nav Bar ---------- */
.categories-nav {
  background: var(--navy-light);
  padding: 0;
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  z-index: 999;
}

.categories-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-wrap: wrap;
}

.categories-nav .nav-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 22px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.categories-nav .nav-item a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.categories-nav .nav-item a.active {
  background: var(--teal);
  color: white;
  border-bottom-color: var(--gold);
}

.categories-nav .nav-item i {
  font-size: 1rem;
  opacity: 0.9;
}

.all-categories-btn {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 600 !important;
  border-bottom-color: var(--gold-light) !important;
}

.all-categories-btn:hover {
  background: var(--gold-light) !important;
  color: var(--navy-dark) !important;
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .header-main {
    padding: 12px 0;
  }

  .header-logo img {
    height: 45px;
  }

  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-toggle.active {
    color: var(--gold);
  }

  /* Categories Nav - Hidden by default on mobile */
  .categories-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    top: 69px;
    /* Adjusted for mobile header height */
  }

  .categories-nav.open {
    max-height: 500px;
  }

  .hero-section {
    margin-top: 69px;
    /* Only header height on mobile since nav is hidden */
  }

  .categories-nav .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .categories-nav .nav-item a {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid transparent;
  }

  .categories-nav .nav-item a:hover,
  .categories-nav .nav-item a.active {
    border-left-color: var(--gold);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .categories-nav .nav-item:last-child a {
    border-bottom: none;
  }

  /* Mobile Search */
  .mobile-search {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-search .input-group {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
  }

  .mobile-search input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 0.95rem;
  }

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

  .mobile-search button {
    background: var(--teal);
    border: none;
    padding: 12px 18px;
    color: white;
    cursor: pointer;
  }

  .header-actions {
    gap: 15px;
  }

  .header-action {
    font-size: 0.75rem;
  }

  .header-action i {
    font-size: 1.2rem;
  }
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }

  .mobile-search {
    display: none !important;
  }
}

/* ---------- Base Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--teal-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: var(--section-py) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

.bg-sand {
  background: var(--sand);
}

.bg-navy {
  background: var(--navy-dark);
  color: var(--white);
}

.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

.text-gold {
  color: var(--gold);
}

.text-teal {
  color: var(--teal);
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 138, 154, 0.4);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 169, 98, 0.5);
}

/* ---------- Navigation ---------- */
.navbar-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar-main.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
}

.navbar-main .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}

.navbar-main .navbar-brand span {
  color: var(--gold);
}

.navbar-main .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 10px 20px;
  position: relative;
  font-size: 0.95rem;
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  width: calc(100% - 40px);
}

.navbar-main .nav-link:hover {
  color: var(--white);
}

.nav-icons a {
  color: var(--white);
  font-size: 1.2rem;
  margin-left: 20px;
  position: relative;
}

.nav-icons .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  margin-top: 135px;
  /* Space for fixed header + categories nav */
}

.hero-slider {
  height: 100%;
}

.hero-slide {
  height: 100vh;
  min-height: 700px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.8), rgba(26, 45, 74, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content .badge-premium {
  display: inline-block;
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 25px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-scroll a {
  color: var(--white);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-15px);
  }

  60% {
    transform: translateY(-8px);
  }
}

/* Slick Hero Dots */
.hero-slider .slick-dots {
  bottom: 100px;
}

.hero-slider .slick-dots li button:before {
  font-size: 12px;
  color: var(--white);
  opacity: 0.5;
}

.hero-slider .slick-dots li.slick-active button:before {
  color: var(--gold);
  opacity: 1;
}

/* ---------- News & Articles Section ---------- */
.news-section {
  background: var(--sand-light);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 12px 28px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-tab:hover,
.category-tab.active {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 30px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.article-card .card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.article-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-card:hover .card-image img {
  transform: scale(1.08);
}

.article-card .category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--teal);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-card .card-body {
  padding: 25px;
}

.article-card .card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-card .card-meta i {
  color: var(--gold);
}

.article-card h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.article-card h4 a {
  color: var(--navy-dark);
}

.article-card h4 a:hover {
  color: var(--teal);
}

.article-card .excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .read-more {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-card .read-more i {
  transition: var(--transition);
}

.article-card:hover .read-more i {
  transform: translateX(5px);
}

/* ---------- Products Carousel ---------- */
.products-section {
  background: var(--white);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin: 15px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card .product-thumbnail {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  background: var(--sand-light);
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-thumbnail img {
  transform: scale(1.1);
}

.product-card .product-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .icon-btn {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.product-card:hover .product-overlay .icon-btn {
  transform: translateY(0);
  opacity: 1;
}

.product-overlay .icon-btn:nth-child(1) {
  transition-delay: 0s;
}

.product-overlay .icon-btn:nth-child(2) {
  transition-delay: 0.1s;
}

.product-overlay .icon-btn:nth-child(3) {
  transition-delay: 0.2s;
}

.product-overlay .icon-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.product-card .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-new {
  background: var(--teal);
  color: var(--white);
}

.badge-sale {
  background: #e74c3c;
  color: var(--white);
}

.badge-bestseller {
  background: var(--gold);
  color: var(--navy-dark);
}

.product-card .product-body {
  padding: 20px;
  text-align: center;
}

.product-card .product-category {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-card h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.product-card h5 a {
  color: var(--navy-dark);
}

.product-card h5 a:hover {
  color: var(--teal);
}

.product-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
}

.product-card .price .old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1rem;
  margin-right: 10px;
  font-weight: 400;
}

.product-card .rating {
  display: none;
}

/* Slick Product Carousel */
.products-carousel .slick-prev,
.products-carousel .slick-next {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.products-carousel .slick-prev:before,
.products-carousel .slick-next:before {
  color: var(--navy-dark);
  font-size: 20px;
}

.products-carousel .slick-prev {
  left: -25px;
}

.products-carousel .slick-next {
  right: -25px;
}

/* ---------- Categories Section ---------- */
.categories-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 138, 154, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

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

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

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.category-card:hover .overlay {
  background: linear-gradient(to top, rgba(30, 138, 154, 0.9), rgba(10, 22, 40, 0.5) 60%);
}

.category-card h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.category-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.category-card .explore-link {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.category-card:hover .explore-link {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Best Sellers Grid ---------- */
.bestsellers-section {
  background: var(--sand-light);
}

/* ---------- Promo Banner ---------- */
.promo-banner {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(30, 138, 154, 0.8));
}

.promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.promo-content .promo-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.promo-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: var(--white);
  border-top: 1px solid var(--sand-dark);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content .icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid var(--sand-dark);
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition);
}

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

/* ---------- Footer ---------- */
.footer-main {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
}

.footer-brand {
  margin-bottom: 25px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.8rem;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  margin-top: 20px;
  line-height: 1.8;
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* Header Contact Links (Background Overlay Style) */
.header-contact-info .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  /* Pure White */
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.header-contact-info .contact-link i {
  color: var(--gold);
  /* Gold Icons */
  transition: color 0.3s ease;
}

.header-contact-info .contact-link:hover {
  background-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.header-contact-info .contact-link:hover i {
  color: var(--navy-dark);
  /* Icon turns dark on hover */
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.payment-methods img {
  height: 30px;
  margin-left: 10px;
  opacity: 0.7;
  transition: var(--transition);
}

.payment-methods img:hover {
  opacity: 1;
}

/* ---------- Quick View Modal ---------- */
.quick-view-modal .modal-content {
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
}

.quick-view-modal .modal-header {
  border: none;
  padding: 20px 25px;
}

.quick-view-modal .btn-close {
  background-size: 50%;
}

.quick-view-modal .product-gallery img {
  border-radius: var(--radius-md);
}

.quick-view-modal .product-info h3 {
  margin-bottom: 15px;
}

.quick-view-modal .product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
}

.quick-view-modal .product-description {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.quantity-selector label {
  font-weight: 600;
}

.quantity-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.quantity-input button {
  width: 45px;
  height: 45px;
  border: none;
  background: var(--sand);
  cursor: pointer;
  transition: var(--transition);
}

.quantity-input button:hover {
  background: var(--teal);
  color: var(--white);
}

.quantity-input input {
  width: 60px;
  height: 45px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ---------- Products Page ---------- */
.page-header {
  background: url(/images/breadcrumb.png) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 150px 0 80px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 15px;
}

  display: inline-flex;
  flex-wrap: wrap; /* Allow wrapping */
  max-width: 100%; /* Prevent overflowing parent */
  justify-content: center;
  gap: 10px; /* Reduced gap slightly */
  list-style: none;
  padding: 10px 20px;
  /* Added padding */
  margin: 0;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.4);
  /* Semi-transparent black */
  backdrop-filter: blur(5px);
  /* Optional blur effect */
  border-radius: 30px;
  /* Rounded corners */
}

@media (max-width: 768px) {
  .breadcrumb-custom {
    padding: 8px 15px;
    font-size: 0.9rem; /* Smaller font on mobile */
    gap: 8px;
    border-radius: 20px;
  }
}

.breadcrumb-custom li {
  color: rgba(255, 255, 255, 0.9);
  /* Whiter */
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.breadcrumb-custom a {
  color: var(--white);
  /* Pure white */
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-custom a:hover {
  color: var(--gold);
}

.filters-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--sand-dark);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group h5 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.filter-group .form-check {
  margin-bottom: 12px;
}

.filter-group .form-check-input:checked {
  background-color: var(--teal);
  border-color: var(--teal);
}

.price-range {
  padding: 0 10px;
}

/* ---------- Product Detail Page ---------- */
.product-detail-section {
  padding: 50px 0 100px;
}

.product-gallery-main img {
  border-radius: var(--radius-md);
  width: 100%;
}

.product-thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.product-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
  border-color: var(--teal);
}

.product-info-detail h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.product-info-detail .price-large {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 25px;
}

.product-features {
  background: var(--sand-light);
  border-radius: var(--radius-md);
  padding: 25px;
  margin: 30px 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-features li:last-child {
  margin-bottom: 0;
}


/* Recursive Dropdown Styles */
/* Nested Dropdowns */
.nav-menu .dropdown-menu {
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 15px;
  background-color: var(--navy);
  /* Match header color */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  min-width: 220px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  /* Gold border hint */
}

.dropdown-menu .dropdown-submenu {
  position: relative;
}

.dropdown-menu .dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -5px;
  margin-left: 0;
}

/* Desktop only: hover to show submenus */
@media (min-width: 992px) {
  .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }

  .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Mobile: only show via .show class (controlled by JS) */
@media (max-width: 991.98px) {
  .dropdown-menu .dropdown-submenu>.dropdown-menu {
    display: none !important;
  }

  .dropdown-menu .dropdown-submenu.show>.dropdown-menu {
    display: block !important;
  }

  .nav-menu .dropdown>.dropdown-menu {
    display: none !important;
  }

  .nav-menu .dropdown.show>.dropdown-menu {
    display: block !important;
  }
}

.dropdown-menu .dropdown-item {
  font-size: 0.95rem;
  padding: 8px 20px;
  color: var(--white);
  transition: all 0.3s;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: rgba(201, 169, 98, 0.1);
  /* Subtle gold background */
  color: var(--gold);
  padding-left: 25px;
  /* Slide effect */
}

/* Non-clickable parent/sub-parent menu items */
.dropdown-menu .dropdown-toggle-custom {
  font-size: 0.95rem;
  padding: 8px 20px;
  color: var(--white);
  transition: all 0.3s;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
}

.dropdown-menu .dropdown-toggle-custom:hover {
  background-color: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

/* Chasse Section Improvements */
.lighthouse-bg-container {
  background-image: linear-gradient(to bottom, rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.9)), url('https://images.unsplash.com/photo-1510265119258-db115b0e8172?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  /* Lighthouse/Sea Image */
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Vintage Product Card Redesign */
.vintage-product-card {
  border: 1px solid #e0dcd3;
  background-color: #fffaf0;
  /* Cream/Paper background */
  padding: 8px;
  /* Reduced from 15px */
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vintage-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.vintage-product-card .product-thumbnail {
  border: 0;
  /* Removed thick white border */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  /* Reduced from 15px */
  position: relative;
  overflow: hidden;
}

.vintage-product-card .product-body {
  text-align: center;
}

.vintage-product-card .product-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  display: block;
}

.vintage-product-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.vintage-product-card h5 a {
  color: var(--navy);
  text-decoration: none;
}

.vintage-product-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy-dark);
}

.vintage-product-card .current-price {
  font-weight: 700;
  color: var(--navy);
}

.vintage-product-card .old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

/* Vintage View Button */
.vintage-btn-view {
  background-color: var(--navy);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
}

.vintage-btn-view:hover {
  background-color: var(--gold);
  color: var(--navy);
  text-decoration: none;
}

.vintage-product-card .product-overlay {
  background-color: rgba(10, 25, 47, 0.6);
  /* Navy with opacity */
  display: flex;
  justify-content: center;
  align-items: center;
}



.lighthouse-bg-container .category-title {
  color: var(--white);
  border-bottom-color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Playfair Display', serif;
}

.lighthouse-bg-container .category-title i {
  color: var(--gold);
}

.paper-card {
  background-color: #fdfbf7;
  /* Cream Paper Color */
  padding: 20px;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.15);
  transform: rotate(-2deg);
  /* Vintage "pinned" look */
  transition: transform 0.3s ease;
  border: 1px solid #e0dcd3;
  position: relative;
}

.paper-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.2);
}

/* Add a "pin" effect maybe? */
.paper-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.paper-card .vintage-list li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.paper-card .vintage-list li:last-child {
  border-bottom: none;
}

.paper-card .vintage-list a {
  color: var(--navy-dark);
  font-weight: 600;
  font-family: 'Caveat', cursive;
  /* Handwritten font style if available, else fallback */
  font-size: 1.1rem;
}

.paper-card .vintage-list a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

.text-navy {
  color: var(--navy-dark) !important;
}

.hover-bg-sand:hover {
  background-color: #f4f0e6;
  color: var(--navy-dark);
}

.btn-outline-navy {
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

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



/* ---------- Animations ---------- */
[data-aos] {
  transition-property: opacity, transform;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .navbar-main .navbar-collapse {
    background: var(--navy-dark);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .category-card {
    height: 280px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-py: 60px;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-slide {
    min-height: 600px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

/* ---------- WhatsApp Float Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ---------- Utility Classes ---------- */
.letter-spacing-2 {
  letter-spacing: 2px;
}

.text-gold {
  color: var(--gold) !important;
}

/* ---------- Category Cards Enhancement ---------- */
.category-card h4 i {
  opacity: 0.8;
}

.category-card:hover h4 i {
  opacity: 1;
}

/* ============================================
   BOUTIQUE SECTION - Vintage Maritime Style
   "Experience the Old Maritime Tradition"
   ============================================ */

.boutique-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 50%, var(--sepia) 100%);
  position: relative;
  overflow: hidden;
}

/* Vintage Paper Texture Overlay */
.boutique-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920') center/cover no-repeat fixed,
    repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(139, 119, 101, 0.03) 2px,
      rgba(139, 119, 101, 0.03) 4px);
  opacity: 0.15;
  z-index: 0;
}

/* Decorative Rope Border Effect */
.boutique-section::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 3px double var(--gold);
  border-radius: 0;
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
}

.boutique-section .container {
  position: relative;
  z-index: 2;
}

/* ---------- Vintage Boutique Card ---------- */
.boutique-card {
  background: linear-gradient(145deg, rgba(250, 247, 240, 0.95) 0%, rgba(237, 228, 212, 0.9) 100%);
  border-radius: 0;
  padding: 35px 30px;
  box-shadow:
    0 20px 60px rgba(93, 80, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid var(--sepia);
  position: relative;
}

/* Decorative Corner Ornaments */
.boutique-card::before,
.boutique-card::after {
  content: '⚓';
  position: absolute;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
}

.boutique-card::before {
  top: 12px;
  left: 15px;
}

.boutique-card::after {
  bottom: 12px;
  right: 15px;
}

.boutique-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px double var(--gold);
  position: relative;
}

/* Classic Script Title */
.boutique-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--navy-dark);
  margin: 0;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ---------- Boutique Grid 3x3 ---------- */
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ---------- Vintage Category Icon Card ---------- */
.category-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--cream) 0%, var(--sand) 100%);
  border-radius: 0;
  padding: 18px 10px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--sepia);
  position: relative;
  overflow: hidden;
  min-height: 105px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 4px 15px rgba(93, 80, 71, 0.12);
}

/* Vintage Paper Texture Effect */
.category-icon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--gold) 0%, var(--brass) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover - Aged Brass Effect */
.category-icon-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 35px rgba(184, 155, 74, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.category-icon-card:hover::before {
  opacity: 1;
}

/* Vintage Compass-Style Icon Wrapper */
.category-icon-card .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.4s ease;
  border: 2px solid var(--gold);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    0 3px 8px rgba(26, 38, 64, 0.3);
}

.category-icon-card:hover .icon-wrapper {
  background: linear-gradient(145deg, var(--gold) 0%, var(--brass) 100%);
  transform: scale(1.08) rotate(5deg);
  border-color: var(--navy);
}

.category-icon-card .icon-wrapper i {
  font-size: 1.2rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.category-icon-card:hover .icon-wrapper i {
  color: var(--navy-dark);
}

/* Vintage Label Typography */
.category-icon-card span {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-dark);
  text-align: center;
  line-height: 1.25;
  transition: color 0.4s ease;
  letter-spacing: 0.3px;
}

.category-icon-card:hover span {
  color: var(--text-dark);
  font-weight: 700;
}

/* Vintage Promotion Card Style */
.category-icon-card.promotion-card {
  background: linear-gradient(145deg, #fef9e8 0%, #f0e2b8 100%);
  border-color: var(--gold);
}

.promo-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brass) 100%);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-size: 0.5rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  border: 1px solid var(--gold-dark);
  box-shadow: 0 2px 6px rgba(184, 155, 74, 0.4);
}

/* Vintage Boutique Footer */
.boutique-footer {
  margin-top: 30px;
  text-align: center;
  padding-top: 25px;
  border-top: 2px dashed var(--sepia);
}

/* Classic Maritime Button */
.btn-boutique {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--gold);
  padding: 14px 35px;
  border-radius: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  font-style: italic;
  transition: all 0.4s ease;
  border: 2px solid var(--gold);
  box-shadow:
    0 4px 15px rgba(26, 38, 64, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-boutique:hover {
  background: var(--navy-dark);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 45, 74, 0.3);
}

/* ---------- Vintage Contact Card ---------- */
.contact-card {
  background: linear-gradient(145deg, rgba(250, 247, 240, 0.95) 0%, rgba(237, 228, 212, 0.9) 100%);
  border-radius: 0;
  padding: 28px 25px;
  box-shadow:
    0 15px 45px rgba(93, 80, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid var(--sepia);
  position: relative;
}

/* Decorative Wave Border */
.contact-card::before {
  content: '~';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 10px;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 22px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
  padding-top: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Vintage Style Icons */
.contact-item i {
  width: 28px;
  height: 28px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--gold);
  box-shadow: 0 2px 6px rgba(26, 38, 64, 0.25);
}

.contact-item i.fa-whatsapp {
  background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
  border-color: #1FAF6A;
}

.contact-item span,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-aged);
  line-height: 1.5;
  font-family: var(--font-body);
}

.contact-item a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-item a:hover {
  color: var(--gold);
}

/* ---------- Vintage Blog Card ---------- */
.blog-card {
  background: linear-gradient(145deg, rgba(250, 247, 240, 0.95) 0%, rgba(237, 228, 212, 0.9) 100%);
  border-radius: 0;
  padding: 30px;
  box-shadow:
    0 20px 60px rgba(93, 80, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid var(--sepia);
  height: 100%;
  position: relative;
}

/* Decorative Lighthouse Corners */
.blog-card::before {
  content: '🏠';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.2rem;
  opacity: 0.3;
}

.blog-header {
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 3px double var(--gold);
  text-align: center;
}

.blog-header h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--navy-dark);
  margin: 0;
  font-weight: 600;
}

.blog-header h3 span {
  color: var(--teal);
  font-style: italic;
}

/* Vintage Blog Category Box */
.blog-category-box {
  background: var(--cream);
  border-radius: 0;
  padding: 18px;
  border: 1px solid var(--sepia);
  height: 100%;
}

.blog-category-box h5 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.blog-category-box h5 i {
  color: var(--gold);
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list li {
  margin-bottom: 10px;
}

.blog-list li:last-child {
  margin-bottom: 0;
}

.blog-list a {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-list a:hover {
  background: var(--sand);
  color: var(--navy-dark);
  transform: translateX(5px);
}

.blog-list a i {
  color: var(--gold);
  font-size: 0.8rem;
  min-width: 20px;
}

/* Events Section */
.events-section {
  background: var(--sand-light);
  border-radius: 16px;
  padding: 20px;
}

.events-section h5 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.events-section h5 i {
  color: var(--gold);
}

.event-card {
  display: flex;
  gap: 15px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.event-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.event-info h6 {
  font-size: 0.9rem;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.event-author {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Blog Footer */
.blog-footer {
  text-align: center;
}

.btn-blog {
  background: transparent;
  color: var(--navy);
  padding: 10px 25px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s ease;
}

.btn-blog:hover {
  background: var(--navy);
  color: white;
}

/* Latest Post */
.latest-post {
  background: var(--sand-light);
  border-radius: 16px;
  padding: 20px;
}

.latest-post h5 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.latest-post h5 span {
  color: var(--teal);
  font-style: italic;
}

.post-card {
  display: flex;
  gap: 15px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.post-card img {
  width: 150px;
  height: 120px;
  object-fit: cover;
}

.post-content {
  padding: 15px 15px 15px 0;
  flex: 1;
}

.post-meta .date {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--sand);
  padding: 3px 10px;
  border-radius: 10px;
}

.post-content h6 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  margin: 10px 0 5px;
}

.post-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ---------- Boutique Section Responsive ---------- */
@media (max-width: 1199px) {
  .boutique-grid {
    gap: 12px;
  }

  .category-icon-card {
    padding: 15px 10px;
    min-height: 100px;
  }

  .category-icon-card .icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .category-icon-card .icon-wrapper i {
    font-size: 1.1rem;
  }

  .category-icon-card span {
    font-size: 0.75rem;
  }
}

@media (max-width: 991px) {
  .boutique-section {
    padding: 60px 0;
  }

  .boutique-card,
  .blog-card {
    margin-bottom: 30px;
  }

  .blog-card {
    height: auto;
  }

  .post-card {
    flex-direction: column;
  }

  .post-card img {
    width: 100%;
    height: 180px;
  }

  .post-content {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .boutique-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .category-icon-card {
    padding: 12px 8px;
    min-height: 90px;
  }

  .category-icon-card .icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .category-icon-card .icon-wrapper i {
    font-size: 1rem;
  }

  .category-icon-card span {
    font-size: 0.65rem;
  }

  .promo-badge {
    font-size: 0.5rem;
    padding: 2px 6px;
  }

  .boutique-header h3 {
    font-size: 1.4rem;
  }

  .blog-header h3 {
    font-size: 1.3rem;
  }

  .event-card {
    flex-direction: column;
  }

  .event-card img {
    width: 100%;
    height: 120px;
  }
}

@media (max-width: 479px) {
  .boutique-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .category-icon-card {
    padding: 10px 6px;
    min-height: 80px;
  }

  .category-icon-card .icon-wrapper {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .category-icon-card .icon-wrapper i {
    font-size: 0.9rem;
  }

  .category-icon-card span {
    font-size: 0.6rem;
  }

  .boutique-card,
  .blog-card,
  .contact-card {
    padding: 20px;
    border-radius: 16px;
  }
}

/* ---------- Sidebar & Filters ---------- */
.sidebar-filters {
  padding-right: 30px;
}

.filter-widget {
  background: var(--white);
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid var(--sepia);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.filter-widget::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed var(--sepia);
  pointer-events: none;
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sand-dark);
  color: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

/* Search Widget */
.search-group {
  display: flex;
  position: relative;
  z-index: 1;
}

.search-group input {
  flex: 1;
  border: 1px solid var(--sepia);
  padding: 10px 15px;
  font-size: 0.95rem;
  background: var(--sand-light);
  color: var(--text-dark);
}

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

.search-group button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0 15px;
  cursor: pointer;
  transition: var(--transition);
}

.search-group button:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* Category List */
.category-list,
.sub-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list .form-check {
  margin-bottom: 0;
}

.category-list .form-check-label {
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.category-list .form-check-input:checked+.form-check-label {
  color: var(--gold-dark);
  font-weight: 600;
}

.category-list small {
  color: var(--text-muted);
}

.sub-category-list {
  margin-top: 10px;
  border-left: 2px solid var(--sand-dark);
}

.sub-category-list li {
  margin-bottom: 8px;
}

/* Price Range */
.price-range-slider {
  position: relative;
  z-index: 1;
}

.form-range::-webkit-slider-thumb {
  background: var(--gold);
}

.form-range::-moz-range-thumb {
  background: var(--gold);
}

.form-range::-ms-thumb {
  background: var(--gold);
}

/* Products Grid Toolbar */
.shop-toolbar {
  background: var(--sand-light);
  padding: 15px 20px;
  border: 1px solid var(--sepia);
  margin-bottom: 30px;
}

.sort-wrapper select {
  border: 1px solid var(--sepia);
  padding: 8px 15px;
  background: var(--white);
  cursor: pointer;
}

.sort-wrapper select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Product Card (Ensure styles exist) */
.product-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  overflow: hidden;
  padding-top: 133%;
  /* Aspect ratio */
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 15px;
  background: rgba(44, 62, 92, 0.9);
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  bottom: 0;
}

.icon-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.product-body {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.product-body h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-body h5 a {
  color: var(--navy-dark);
}

.product-body h5 a:hover {
  color: var(--gold);
}

.product-body .price {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 8px;
  font-weight: 400;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 1px;
}

.badge-new {
  background: var(--navy);
  color: var(--white);
}

.badge-sale {
  background: #e74c3c;
  color: var(--white);
}


/* Product Page Slider Styles */
.product-gallery-vintage .slider-for {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.product-gallery-vintage .main-slide-item a {
  display: block;
  outline: none;
  cursor: zoom-in;
}

.product-gallery-vintage .main-slide-item img {
  width: 100%;
  height: auto;
  display: block;
}

.product-gallery-vintage .slider-nav {
  margin: 0 -5px;
  /* Negative margin to offset padding of items */
}

.product-gallery-vintage .nav-slide-item {
  padding: 0 5px;
  outline: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.product-gallery-vintage .nav-slide-item.slick-current {
  opacity: 1;
}

.product-gallery-vintage .nav-slide-item img {
  width: 100%;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.product-gallery-vintage .nav-slide-item.slick-current img {
  border-color: var(--navy);
}

/* Slider Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  background-color: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 1;
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}

.product-nav-slider .slick-prev,
.product-nav-slider .slick-next {
  width: 25px;
  height: 25px;
  font-size: 12px;
}

/* Boutique Spotlight Slider */
.boutique-spotlight-slider {
  padding: 0 10px;
}

.spotlight-product-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.spotlight-product-card:hover {
  transform: translateY(-3px);
}

.spotlight-image-frame {
  overflow: hidden;
  border-radius: 6px;
}

.spotlight-image-frame img {
  transition: transform 0.5s ease;
}

.spotlight-product-card:hover .spotlight-image-frame img {
  transform: scale(1.05);
}

.boutique-spotlight-slider .slick-prev,
.boutique-spotlight-slider .slick-next {
  width: 35px;
  height: 35px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  z-index: 10;
  opacity: 0.8;
  transition: all 0.3s;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
}

.boutique-spotlight-slider .slick-prev:hover,
.boutique-spotlight-slider .slick-next:hover {
  background: var(--gold);
  color: var(--navy);
  opacity: 1;
}

.boutique-spotlight-slider .slick-prev {
  left: -10px;
}

.boutique-spotlight-slider .slick-next {
  right: -10px;
}

.boutique-spotlight-slider .slick-dots {
  bottom: -30px;
}

.boutique-spotlight-slider .slick-dots li button:before {
  font-size: 10px;
  color: var(--navy);
}

.boutique-spotlight-slider .slick-dots li.slick-active button:before {
  color: var(--gold);
}

/* ============================================
   MOBILE: Always show product overlay buttons
   (hover doesn't work on touch devices)
   ============================================ */
@media (max-width: 767.98px) {
  /* Generic product-card overlay: make always visible */
  .product-card .product-overlay {
    opacity: 1;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(10, 25, 47, 0.7) 40%);
    padding: 10px;
    gap: 10px;
    align-items: flex-end;
    justify-content: center;
  }

  .product-card .product-overlay .icon-btn {
    opacity: 1;
    transform: translateY(0);
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  /* Vintage product card overlay: always visible */
  .vintage-product-card .product-overlay {
    opacity: 1;
    background: linear-gradient(transparent 0%, rgba(10, 25, 47, 0.65) 50%);
    flex-direction: row;
    gap: 8px;
    padding: 8px;
    align-items: flex-end;
    justify-content: center;
  }

  /* Make vintage overlay buttons smaller on mobile */
  .vintage-product-card .product-overlay .vintage-btn-view {
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }
}