/* ============================================================
   HAWION – Luxury Dark European Bathware Brand
   Bootstrap + Custom Luxury Styling
   Design Guidelines: Dark Luxury, Premium, Minimal
   ============================================================ */

:root {
  --luxury-black: #0F0F0F;
  --luxury-charcoal: #1E1E1E;
  --luxury-white: #FFFFFF;
  --luxury-red: #C8102E;
  --luxury-gold: #C8A96B;
  --text-dark: #2C2C2C;
  --text-light: #666666;
}

/* ============================================================
   GLOBAL STYLES
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--luxury-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--luxury-black);
}

p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   NAVIGATION / HEADER
   ============================================================ */
.navbar {
  background: var(--luxury-white) !important;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  padding: 0.75rem 0;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  padding: 0;
  margin-right: 2rem;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark) !important;
  margin: 0 8px;
  position: relative;
  padding: 8px 4px !important;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Red underline — uses ::before to avoid conflict with dropdown caret (::after) */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--luxury-red);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--luxury-red) !important;
}

.nav-link:hover::before {
  width: 60%;
}

.nav-link.active {
  color: var(--luxury-red) !important;
}

.nav-link.active::before {
  width: 60%;
}

/* Keep dropdown caret aligned and avoid underline overlap */
.nav-link.dropdown-toggle::before {
  left: calc(50% - 8px);
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  margin-top: 4px;
}

.dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: all 0.3s;
}

.dropdown-item:hover {
  background: #f8f8f8;
  color: var(--luxury-red);
}

.dropdown-item.active {
  background: var(--luxury-red);
  color: var(--luxury-white);
}

/* Dealer Enquiry Button - Red Outline */
.btn-outline-red {
  border: 1.5px solid var(--luxury-red) !important;
  color: var(--luxury-red) !important;
  background: transparent !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 0.5rem 1rem !important;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-red:hover {
  background: var(--luxury-red) !important;
  color: var(--luxury-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

/* Larger red outline CTA (section buttons) */
.btn-cta {
  padding: 0.75rem 2rem !important;
  font-size: 0.8rem;
}

/* Navbar Toggler */
.navbar-toggler {
  padding: 0;
  border: none !important;
  outline: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232C2C2C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M6 9h24M6 15h24M6 21h24'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
  }

  .nav-link {
    padding: 12px 0 !important;
  }

  .btn-outline-red {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-danger,
.btn-primary {
  background: var(--luxury-red);
  color: var(--luxury-white);
  border: 1.5px solid var(--luxury-red);
}

.btn-danger:hover,
.btn-primary:hover {
  background: #a00824;
  border-color: #a00824;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.25);
}

.btn-outline-light,
.btn-outline-dark {
  border: 1.5px solid currentColor;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-outline-light {
  color: var(--luxury-white);
  border-color: var(--luxury-white);
}

.btn-outline-light:hover {
  background: var(--luxury-white);
  color: var(--luxury-red);
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--luxury-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
}

/* ============================================================
   HERO SECTION - Full Background Image
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--luxury-white);
  overflow: hidden;
  padding: 80px 0;
}

/* Dark gradient overlay — heavier on left so text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.58) 45%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

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

.hero-section .h-100 {
  min-height: 460px;
}

.hero-content {
  position: relative;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--luxury-red);
  display: block;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--luxury-white);
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--luxury-red);
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 440px;
  margin-top: 36px;
  margin-bottom: 36px;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 50px 0;
  background: var(--luxury-white);
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

/* Vertical dividers between stat items (design reference) */
.stats-col {
  position: relative;
}

.stats-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: #e5e5e5;
}

.stat-card {
  text-align: center;
  padding: 20px;
  transition: all 0.3s;
}

.stat-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 18px;
  color: var(--luxury-red);
}

.stat-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--luxury-black);
  line-height: 1.4;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Hide dividers when columns stack on smaller screens */
@media (max-width: 991px) {
  .stats-col:not(:last-child)::after {
    display: none;
  }
}

/* ============================================================
   COLLECTIONS SECTION
   ============================================================ */
.collections-section {
  padding: 80px 0;
  background: var(--luxury-white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--luxury-red);
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--luxury-black);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.collection-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  background: var(--luxury-black);
  min-height: 300px;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all 0.3s;
}

.collection-card:hover {
  transform: translateY(-4px);
}

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

.collection-overlay h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--luxury-white);
  margin: 0;
}

.collection-arrow {
  color: var(--luxury-white);
  font-size: 1.5rem;
  margin-top: 8px;
  opacity: 0.8;
  transition: all 0.3s;
}

.collection-card:hover .collection-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 0;
  background: var(--luxury-white);
  border-top: 1px solid #f0f0f0;
}

/* Text side padding — generous internal spacing */
.about-content {
  padding: 80px 60px 80px 80px;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

/* Image side: full bleed, no radius, matches section height */
.about-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  border-radius: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section:hover .about-image img {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .about-content {
    padding: 60px 40px;
  }

  .about-image {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .about-content {
    padding: 50px 24px;
  }

  .about-image {
    min-height: 300px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  color: var(--text-dark);
}

/* Main footer area */
.footer-main {
  padding: 60px 0 50px;
  border-top: 1px solid #eee;
}

/* Logo */
.footer-logo img {
  height: 55px;
  width: auto;
}

/* Tagline */
.footer-tagline {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Column headings */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--luxury-red);
  margin-bottom: 20px;
}

/* Link lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--luxury-red);
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social-icon:hover {
  color: var(--luxury-red);
  transform: translateY(-2px);
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
}

.footer-contact-list a {
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--luxury-red);
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--luxury-red);
  flex-shrink: 0;
}

/* WhatsApp CTA button */
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.25rem;
  border-radius: 3px;
}

/* Footer bottom bar */
.footer-bottom {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.825rem;
  color: #666;
  margin: 0;
}

.footer-bottom-links {
  font-size: 0.825rem;
  color: #666;
}

.footer-bottom-links a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--luxury-red);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero */
.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.about-hero .h-100 { min-height: 500px; }

/* Dark-golden luxury overlay */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.60) 45%,
    rgba(0, 0, 0, 0.20) 100%
  );
}

.about-hero__overlay::before { display: none; }

.about-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.20) 0%,
    transparent 40%,
    rgba(0,0,0,0.40) 100%
  );
  pointer-events: none;
}

.about-hero .container-fluid { position: relative; z-index: 2; }

.about-hero__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--luxury-red);
  margin-bottom: 14px;
}

.about-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0;
}

.about-hero__rule {
  width: 50px;
  height: 3px;
  background: var(--luxury-red);
  margin: 20px 0;
}

.about-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 420px;
  margin: 0;
}

/* Breadcrumb */
.about-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

.about-breadcrumb .breadcrumb { margin: 0; padding: 0; font-size: 0.85rem; }
.about-breadcrumb .breadcrumb-item a { color: #555; text-decoration: none; transition: color 0.2s; }
.about-breadcrumb .breadcrumb-item a:hover { color: var(--luxury-red); }
.about-breadcrumb .breadcrumb-item.active { color: #999; }
.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #bbb; }

/* Our Story */
.about-story { padding: 90px 0; background: #fff; }

.about-story__img {
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.about-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--luxury-black);
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 0;
}

.about-story__rule {
  width: 50px;
  height: 3px;
  background: var(--luxury-red);
  margin: 18px 0;
}

.about-story__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Story mini feature cards */
.story-feat {
  padding: 20px 14px;
  border: 1px solid #eee;
  border-radius: 4px;
  text-align: center;
  height: 100%;
  background: #fff;
  transition: all 0.3s;
}

.story-feat:hover {
  transform: translateY(-4px);
  border-color: var(--luxury-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.story-feat svg {
  width: 32px;
  height: 32px;
  stroke: var(--luxury-red);
  margin-bottom: 10px;
}

.story-feat h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--luxury-black);
  margin-bottom: 6px;
}

.story-feat p {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.4;
  margin: 0;
}

/* Our Values */
.about-values {
  padding: 90px 0;
  background: #f8f8f8;
}

.about-values__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--luxury-black);
  margin-top: 8px;
  margin-bottom: 0;
}

.about-values__rule {
  width: 50px;
  height: 3px;
  background: var(--luxury-red);
  margin: 16px auto 0;
}

.value-card {
  padding: 32px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  height: 100%;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--luxury-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.value-card svg {
  width: 40px;
  height: 40px;
  stroke: var(--luxury-red);
  margin-bottom: 16px;
}

.value-card h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--luxury-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.value-card p {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.55;
  margin: 0;
}

/* Stats Strip — stays dark as it looked great */
.about-stats-strip {
  background: var(--luxury-black);
  padding: 50px 0;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.about-stat:last-child { border-right: none; }

.about-stat svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  stroke: var(--luxury-gold);
}

.about-stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat__label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* Why Choose */
.about-why { padding: 0; background: #fff; }

.about-why__content {
  padding: 80px 60px 80px 80px;
}

.about-why__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--luxury-black);
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 0;
}

.about-why__rule {
  width: 50px;
  height: 3px;
  background: var(--luxury-red);
  margin: 18px 0;
}

.about-why__text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  max-width: 440px;
}

.about-why__image {
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.about-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .about-story { padding: 60px 0; }
  .about-story__img { height: 360px; }
  .about-values { padding: 60px 0; }
  .about-stat { padding: 24px 20px; }
  .about-stat__num { font-size: 1.75rem; }
  .about-why__content { padding: 60px 40px; }
  .about-why__image { min-height: 380px; }
}

@media (max-width: 767px) {
  .about-hero { min-height: 380px; }
  .about-hero__title { font-size: 2rem; }
  .about-story__img { height: 280px; }
  .about-stats-strip .col-lg-3 { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-stat { padding: 20px 16px; }
  .about-why__content { padding: 50px 24px; }
  .about-why__image { min-height: 300px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Hero */
.contact-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.contact-hero .h-100 { min-height: 480px; }

/* Dark-golden luxury overlay — deep black on left,
   warm amber/gold tones bleeding in from the right */
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.60) 45%,
    rgba(0, 0, 0, 0.20) 100%
  );
}

.contact-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.20) 0%,
    transparent 40%,
    rgba(0,0,0,0.40) 100%
  );
  pointer-events: none;
}

.contact-hero .container-fluid { position: relative; z-index: 2; }

.contact-hero__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--luxury-red);
  margin-bottom: 14px;
}

.contact-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0;
}

.contact-hero__rule {
  width: 50px;
  height: 3px;
  background: var(--luxury-red);
  margin: 20px 0;
}

.contact-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}

/* Contact Info Strip */
.contact-strip {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.contact-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid #eee;
  height: 100%;
}

.contact-strip .col-lg-3:last-child .contact-strip__item { border-right: none; }

.contact-strip__item svg {
  width: 36px;
  height: 36px;
  stroke: var(--luxury-red);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.contact-strip__item h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--luxury-black);
  margin-bottom: 8px;
}

.contact-strip__item p {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.4;
}

.contact-strip__item span {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}

.contact-strip__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--luxury-red);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-strip__link:hover { opacity: 0.75; }

/* Contact Form + Location */
.contact-main { background: #fff; }

.contact-form__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--luxury-black);
  margin-top: 8px;
  margin-bottom: 0;
}

.contact-form__rule {
  width: 50px;
  height: 3px;
  background: var(--luxury-red);
  margin: 16px 0;
}

.contact-form__sub {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Form inputs */
.contact-input {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fafafa;
  transition: border-color 0.25s, background 0.25s;
}

.contact-input:focus {
  border-color: var(--luxury-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
  outline: none;
}

.contact-input::placeholder { color: #aaa; }

.contact-input.form-select { appearance: auto; }

/* Checkbox */
.contact-check {
  border: 1.5px solid #ccc;
  border-radius: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact-check:checked {
  background-color: var(--luxury-red);
  border-color: var(--luxury-red);
}

.contact-check-label {
  font-size: 0.85rem;
  color: #555;
  cursor: pointer;
}

.contact-privacy-link {
  color: var(--luxury-red);
  text-decoration: none;
  font-weight: 600;
}

/* Submit button */
.contact-submit-btn {
  padding: 0.875rem 2.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 3px;
}

/* Location info */
.contact-location { display: flex; flex-direction: column; gap: 20px; }

.contact-location__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}

.contact-location__item svg {
  width: 20px;
  height: 20px;
  stroke: var(--luxury-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-location__item strong {
  display: block;
  font-weight: 600;
  color: var(--luxury-black);
  margin-bottom: 2px;
}

/* Map */
.contact-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
}

.contact-map iframe { display: block; }

/* Dealer CTA Strip */
.dealer-cta-strip {
  background: var(--luxury-black);
  padding: 36px 0;
}

.dealer-cta-strip__icon {
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dealer-cta-strip__icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

.dealer-cta-strip__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.dealer-cta-strip__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.dealer-cta-strip__btn {
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  white-space: nowrap;
  transition: all 0.3s;
}

.dealer-cta-strip__btn:hover {
  background: var(--luxury-red);
  border-color: var(--luxury-red);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .contact-strip__item { border-right: none; border-bottom: 1px solid #eee; }
  .contact-strip .col-lg-3:last-child .contact-strip__item { border-bottom: none; }
  .contact-hero { min-height: 360px; }
}

@media (max-width: 767px) {
  .contact-hero__title { font-size: 2rem; }
  .dealer-cta-strip .col-auto:last-child { width: 100%; }
  .dealer-cta-strip__btn { width: 100%; text-align: center; }
}

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */

/* Hero */
.collections-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 0;
}

.collections-hero .h-100 { min-height: 420px; }

.collections-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.58) 45%,
    rgba(0,0,0,0.18) 100%
  );
}

.collections-hero .container-fluid {
  position: relative;
  z-index: 2;
}

.collections-hero__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--luxury-red);
  margin-bottom: 12px;
}

.collections-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0;
}

.collections-hero__rule {
  width: 50px;
  height: 3px;
  background: var(--luxury-red);
  margin: 20px 0;
}

.collections-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 420px;
  margin: 0;
}

/* Category Icon Tabs */
.cat-tabs-section {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.cat-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  text-decoration: none;
  color: #555;
  border-right: 1px solid #eee;
  border-bottom: 3px solid transparent;
  transition: all 0.25s;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cat-tab:last-child { border-right: none; }

.cat-tab__icon {
  width: 32px;
  height: 32px;
  transition: stroke 0.25s;
}

.cat-tab:hover {
  color: var(--luxury-red);
  border-bottom-color: var(--luxury-red);
}

.cat-tab:hover .cat-tab__icon { stroke: var(--luxury-red); }

.cat-tab.active {
  color: var(--luxury-red);
  border-bottom-color: var(--luxury-red);
}

.cat-tab.active .cat-tab__icon { stroke: var(--luxury-red); }

/* Collections Grid Section */
.collections-grid-section {
  padding: 80px 0;
  background: #fff;
}

.collections-grid-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--luxury-black);
  margin-top: 8px;
  margin-bottom: 0;
}

.collections-grid-rule {
  width: 50px;
  height: 3px;
  background: var(--luxury-red);
  margin: 16px auto 0;
}

/* Dark collection cards */
.coll-card-dark {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  aspect-ratio: 4/3;
  background: var(--luxury-black);
}

.coll-card-dark__img {
  position: absolute;
  inset: 0;
}

.coll-card-dark__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.75;
}

.coll-card-dark:hover .coll-card-dark__img img {
  transform: scale(1.06);
  opacity: 0.65;
}

.coll-card-dark__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background 0.3s;
}

.coll-card-dark__text { width: 100%; }

.coll-card-dark__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.1;
}

.coll-card-dark__sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin: 2px 0 10px;
  text-transform: uppercase;
}

.coll-card-dark__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0 0 14px;
}

.coll-card-dark__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.coll-card-dark:hover .coll-card-dark__link {
  color: var(--luxury-red);
  border-color: var(--luxury-red);
}

/* Product cards (when category is selected) */
.product-card-new {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.product-card-new__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-new__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.product-card-new__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--luxury-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-card-new__body { padding: 20px; }

.product-card-new__name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--luxury-black);
  margin-bottom: 8px;
}

.product-card-new__desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Features Strip */
.features-strip {
  background: var(--luxury-black);
  padding: 50px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,0.08);
  height: 100%;
}

.feature-item:last-child { border-right: none; }

.feature-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--luxury-gold);
}

.feature-item__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.feature-item__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0;
}

/* Enquiry Modal */
.enquiry-modal-new {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-modal-new.open { display: flex; }

.enquiry-modal-new__box {
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
}

.enquiry-modal-new__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.enquiry-modal-new__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.enquiry-modal-new__product {
  font-size: 0.9rem;
  color: var(--luxury-red);
  margin-bottom: 24px;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 500px;
    padding: 40px 0;
  }

  .collections-section {
    padding: 60px 0;
  }

  .about-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 480px;
    padding: 60px 0;
    background-position: center right;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .hero-title::after {
    bottom: -12px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .collection-card {
    min-height: 250px;
  }

}

@media (max-width: 480px) {
  .hero-section {
    min-height: 420px;
    padding: 50px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .collection-card {
    min-height: 200px;
  }

  .footer-main {
    padding: 40px 0 30px;
  }
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

/* Hero */
.products-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.products-hero .h-100 { min-height: 420px; }
.products-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.60) 45%, rgba(0,0,0,0.18) 100%);
}
.products-hero .container-fluid { position: relative; z-index: 2; }
.products-hero__label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--luxury-red); margin-bottom: 14px; }
.products-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 0; }
.products-hero__rule { width: 50px; height: 3px; background: var(--luxury-red); margin: 18px 0; }
.products-hero__sub { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.65; max-width: 480px; margin: 0; }

/* Toolbar */
.products-toolbar {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.products-toolbar .breadcrumb { font-size: 0.85rem; }
.products-toolbar .breadcrumb-item a { color: #555; text-decoration: none; }
.products-toolbar .breadcrumb-item a:hover { color: var(--luxury-red); }
.products-toolbar .breadcrumb-item.active { color: #999; }
.products-count-text { font-size: 0.82rem; color: #666; white-space: nowrap; }
.products-sort { font-size: 0.82rem; min-width: 160px; border-color: #ddd; border-radius: 3px; }

/* Main layout */
.products-main { padding: 40px 0 60px; background: #fff; }

/* Sidebar filter blocks */
.filter-block { padding-bottom: 28px; border-bottom: 1px solid #eee; margin-bottom: 28px; }
.filter-block:last-child { border-bottom: none; }
.filter-block__title { font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--luxury-black); margin-bottom: 16px; }

/* Category list */
.filter-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.filter-cat-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 0.875rem; color: #444; text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.2s; }
.filter-cat-item span { font-size: 0.8rem; color: #aaa; }
.filter-cat-item:hover { color: var(--luxury-red); }
.filter-cat-item.active { color: var(--luxury-red); font-weight: 600; }
.filter-cat-item.active span { color: var(--luxury-red); }

/* Filter group */
.filter-group__label { font-size: 0.8rem; font-weight: 600; color: #333; margin-bottom: 10px; }

/* Checkboxes */
.filter-check { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-size: 0.85rem; color: #444; }
.filter-check input[type="checkbox"] { display: none; }
.filter-check__box { width: 16px; height: 16px; border: 1.5px solid #ccc; border-radius: 3px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.filter-check input:checked + .filter-check__box { background: var(--luxury-red); border-color: var(--luxury-red); }
.filter-check input:checked + .filter-check__box::after { content: '✓'; font-size: 10px; color: #fff; font-weight: 700; }
.filter-check__count { margin-left: auto; font-size: 0.75rem; color: #aaa; }

/* Price slider */
.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: #eee; border-radius: 2px; outline: none; }
.price-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--luxury-red); cursor: pointer; }
.price-range__labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: #666; }
.filter-apply-btn { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; border-radius: 3px; }
.filter-clear-btn { font-size: 0.78rem; border-radius: 3px; }

/* Product card */
.pcard { background: #fff; border: 1px solid #eee; border-radius: 6px; overflow: hidden; transition: all 0.3s; height: 100%; }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.10); border-color: #ddd; }
.pcard__img { position: relative; aspect-ratio: 1; overflow: hidden; background: #f9f9f9; }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pcard:hover .pcard__img img { transform: scale(1.05); }
.pcard__img a { display: block; width: 100%; height: 100%; }
.pcard__wish { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.pcard__wish svg { width: 14px; height: 14px; stroke: #aaa; transition: stroke 0.2s; }
.pcard__wish:hover svg { stroke: var(--luxury-red); }
.pcard__body { padding: 16px; }
.pcard__name { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--luxury-black); margin-bottom: 4px; line-height: 1.3; }
.pcard__meta { font-size: 0.78rem; color: #999; margin-bottom: 6px; }
.pcard__price { font-size: 1rem; font-weight: 700; color: var(--luxury-black); margin-bottom: 8px; }
.pcard__link { font-size: 0.78rem; font-weight: 700; color: var(--luxury-red); text-decoration: none; letter-spacing: 0.04em; transition: opacity 0.2s; }
.pcard__link:hover { opacity: 0.75; }

/* Pagination */
.pagination-list { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; justify-content: center; }
.page-item .page-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid #ddd; border-radius: 4px; font-size: 0.85rem; font-weight: 600; color: #444; text-decoration: none; transition: all 0.2s; background: #fff; }
.page-item .page-link:hover { border-color: var(--luxury-red); color: var(--luxury-red); }
.page-item.active .page-link { background: var(--luxury-red); border-color: var(--luxury-red); color: #fff; }
.page-item.disabled .page-link { color: #ccc; cursor: not-allowed; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail { padding: 60px 0; background: #fff; }
.pd-image { border-radius: 8px; overflow: hidden; background: #f8f8f8; }
.pd-image img { width: 100%; height: auto; object-fit: cover; max-height: 520px; }
.pd-category { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--luxury-red); margin-bottom: 12px; }
.pd-title { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--luxury-black); margin-bottom: 12px; line-height: 1.2; }
.pd-meta-row { display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-sku, .pd-finish { font-size: 0.85rem; color: #666; }
.pd-price-block { margin: 16px 0; display: flex; align-items: baseline; gap: 14px; }
.pd-price { font-size: 1.75rem; font-weight: 700; color: var(--luxury-black); }
.pd-price-old { font-size: 1.1rem; color: #aaa; text-decoration: line-through; }
.pd-rule { width: 100%; height: 1px; background: #eee; margin: 20px 0; }
.pd-short-desc { font-size: 0.95rem; color: #555; line-height: 1.75; margin-bottom: 16px; }
.pd-desc { font-size: 0.9rem; color: #666; line-height: 1.75; }
.pd-features { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.pd-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #444; }
.pd-features svg { width: 16px; height: 16px; stroke: var(--luxury-red); flex-shrink: 0; margin-top: 2px; }
.pd-specs { margin-top: 24px; padding-top: 20px; border-top: 1px solid #eee; }
.pd-specs__title { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; color: var(--luxury-black); }
.pd-specs__table { width: 100%; border-collapse: collapse; }
.pd-specs__table td { padding: 8px 12px; font-size: 0.85rem; border-bottom: 1px solid #f0f0f0; }
.pd-specs__table td:first-child { color: #666; width: 40%; font-weight: 500; }
.pd-specs__table td:last-child { color: var(--luxury-black); }
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pd-enquire-btn { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; border-radius: 3px; }
.pd-share { font-size: 0.82rem; color: #888; display: flex; align-items: center; gap: 12px; }
.pd-share a { color: var(--luxury-red); text-decoration: none; font-weight: 600; }
.pd-share a:hover { opacity: 0.75; }

/* Related Products */
.related-products { padding: 60px 0; background: #f8f8f8; }
.related-title { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--luxury-black); margin-bottom: 32px; }

/* Responsive */
@media (max-width: 991px) {
  .products-hero { min-height: 360px; }
  .products-hero__title { font-size: 2rem; }
  .products-main { padding: 30px 0 40px; }
}
@media (max-width: 767px) {
  .products-hero { min-height: 300px; }
  .products-hero__title { font-size: 1.5rem; }
  .products-count-text { display: none; }
  .pd-actions { flex-direction: column; }
  .pd-actions .btn { width: 100%; }
}
