/* 
  Soriya Plastic - SOLID Brand
  Premium UI Redesign — Matching reference design
*/

/* ===========================
   CSS VARIABLES / DESIGN SYSTEM
   =========================== */
:root {
  /* Brand Colors */
  --brand-red: #C8102E;
  --brand-red-hover: #a30d25;
  --brand-red-deep: #8B0A1F;
  --brand-dark: #1a1a1a;
  --brand-charcoal: #2d2d2d;
  --text-dark: #1a1a1a;
  --text-body: #444444;
  --text-muted: #777777;
  --text-light: #999999;
  --bg-white: #ffffff;
  --bg-gray: #F5F5F5;
  --bg-light: #FAFAFA;
  --border-color: #E8E8E8;
  --border-light: #F0F0F0;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 80px;
  --container-max: 1200px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 40px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-nav: 0 2px 20px rgba(0,0,0,0.08);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { 
  scrollbar-width: thin;
  scrollbar-color: var(--brand-red) var(--bg-gray);
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-red);
  border-radius: 5px;
  border: 2px solid var(--bg-gray);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-red-hover);
}

/* Lenis Smooth Scroll Setup */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 400;
}

b, strong {
  font-weight: 500;
}

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

a:hover { color: var(--brand-red-hover); }

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

ul { list-style: none; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: var(--section-py) 0; }
.section-gray { background-color: var(--bg-gray); }
.section-white { background-color: var(--bg-white); }

/* Section Header Row — title left + button right */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
}

.section-title.red { color: var(--brand-red); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .btn {
    white-space: normal;
    word-break: break-word;
  }
}

.btn-primary {
  background-color: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.btn-primary:hover {
  background-color: var(--brand-red-hover);
  border-color: var(--brand-red-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,16,46,0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-red);
  border-color: var(--brand-red);
}
.btn-outline:hover {
  background-color: var(--brand-red);
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: var(--brand-red);
  border-color: #fff;
}
.btn-white:hover {
  background-color: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.site-header {
  background-color: #fff;
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 20px;
}

.logo-wrap img {
  max-height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-red);
}

.nav-cta {
  background-color: var(--brand-red);
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: 9px 22px !important;
}

.nav-cta:hover {
  background-color: var(--brand-red-hover) !important;
  color: #fff !important;
}

.mobile-menu-btn {
  display: none;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  transition: var(--transition);
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
  border-color: var(--brand-red);
  color: var(--brand-red);
  outline: none;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 12px 16px;
  }
  .logo-wrap img {
    max-height: 38px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid var(--border-light);
  }
  .main-nav.active { display: flex; }
  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .main-nav a { 
    padding: 12px 14px; 
    display: block; 
    width: 100%;
    border-radius: 6px;
    font-size: 0.95rem;
  }
  .mobile-menu-btn { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .header-inner {
    padding: 10px 16px;
  }
  .logo-wrap img {
    max-height: 34px;
  }
  .mobile-menu-btn {
    padding: 6px 10px;
    font-size: 1.3rem;
  }
}

/* ===========================
   HERO SLIDER SECTION
   =========================== */
.hero-section {
  position: relative;
  width: 100%;
  height: clamp(480px, 75vh, 720px);
  background-color: #0d0d0d;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 60px 0 50px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.1) 100%
  ), url('../images/slider/01%201920X830%20PX%20STOOL%20copy%20Large.jpg') center/cover no-repeat;
}

.hero-bg-2 {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.1) 100%
  ), url('../images/slider/02%201920X830%20PX%20STOOL%20copy%20Large.jpg') center/cover no-repeat;
}

.hero-bg-3 {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.1) 100%
  ), url('../images/slider/03%201920X830%20PX%20STOOL%20copy%20Large.jpg') center/cover no-repeat;
}

/* Decorative grid overlay for depth */
.hero-bg::after,
.hero-bg-2::after,
.hero-bg-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  max-width: 620px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--brand-red);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-content h1,
.hero-section h1,
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-content h1 span,
.hero-section h1 span,
.hero h1 span {
  color: var(--brand-red) !important;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-content p,
.hero-section p,
.hero p {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.95rem;
  font-weight: 400;
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider Controls */
.hero-arrow {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  cursor: pointer;
}

.hero-arrow::after {
  display: none !important;
}

.hero-arrow:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #ffffff;
}

.hero-arrow-prev { left: 30px; }
.hero-arrow-next { right: 30px; }

.hero-pagination {
  bottom: 25px !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  opacity: 1;
  transition: var(--transition);
  margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 44px;
  background: var(--brand-red);
}

@media (max-width: 768px) {
  .hero-section { min-height: 560px; }
  .hero-slide { min-height: 560px; padding: 70px 0 70px; display: flex; align-items: center; }
  .hero-content { padding: 10px 0 15px; }
  .hero-tag { font-size: 0.65rem; letter-spacing: 2px; padding: 3px 10px; margin-bottom: 10px; }
  .hero h1 { font-size: 1.45rem; line-height: 1.25; margin-bottom: 10px; }
  .hero p { font-size: 0.82rem; line-height: 1.5; margin-bottom: 18px; }
  .hero-btns { display: flex; gap: 8px; flex-wrap: wrap; }
  .hero-btns .btn { padding: 8px 16px; font-size: 0.78rem; }
  .hero-arrow { display: none; }
  .hero-pagination { bottom: 20px !important; }
}

@media (max-width: 576px) {
  .hero-section { min-height: 500px; }
  .hero-slide { min-height: 500px; padding: 60px 0 60px; display: flex; align-items: center; }
  .hero-content { padding: 0 0 10px; }
  .hero-tag { font-size: 0.6rem; letter-spacing: 1.2px; padding: 3px 8px; margin-bottom: 8px; }
  .hero h1 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 8px; }
  .hero p { font-size: 0.78rem; line-height: 1.45; margin-bottom: 14px; }
  .hero-btns { display: flex; gap: 8px; flex-wrap: wrap; }
  .hero-btns .btn { padding: 7px 12px; font-size: 0.75rem; flex: 0 1 auto; justify-content: center; text-align: center; }
}

/* ===========================
   ABOUT INTRO SECTION
   =========================== */
.about-intro {
  background-color: var(--bg-white);
}

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

.about-intro-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-gray);
}

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

.about-intro-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border: 3px solid var(--brand-red);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-intro-text .section-label { margin-bottom: 12px; }

.about-intro-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--brand-red);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-intro-text p {
  color: var(--text-body);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-intro-text .btn { margin-top: 10px; }

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

/* ===========================
   BRAND STRENGTHS / FEATURES
   =========================== */
.brand-strengths {
  background-color: var(--bg-white);
  text-align: center;
}

.brand-strengths .section-label { text-align: center; }
.brand-strengths .section-title { text-align: center; margin-bottom: 16px; }

.brand-strengths-intro {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 24px 28px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-red);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,16,46,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 1.6rem;
  color: var(--brand-red);
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-link {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.feature-link:hover {
  color: var(--brand-red-hover);
  border-bottom-color: var(--brand-red-hover);
  gap: 8px;
}

@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }

/* ===========================
   CTA BANNER (Red Full Width)
   =========================== */
.cta-banner {
  background-color: var(--brand-red);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 320px; height: 320px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.8;
}

.cta-banner .btn { background: #fff; color: var(--brand-red); border-color: #fff; }
.cta-banner .btn:hover { background: var(--brand-red-hover); color: #fff; border-color: var(--brand-red-hover); }

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products-section { background-color: var(--bg-gray); }

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

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 16, 46, 0.25);
}

.product-card-img {
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, #fbfbf9 0%, #f4f3ee 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.06));
}

.product-card:hover .product-card-img img {
  transform: scale(1.08) translateY(-4px);
}

.product-card-img .no-image {
  font-size: 3.5rem;
  color: #ccc;
}

.product-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  z-index: 2;
}

.product-hover-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13,13,13,0.75) 100%);
  padding: 20px 14px 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 2;
}

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

.product-card-info {
  padding: 18px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.product-card-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  margin-bottom: 6px;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.product-card:hover .product-card-name {
  color: var(--brand-red);
}

.product-card-features-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-card-features-bar span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card-features-bar i {
  color: #ea580c;
  font-size: 0.85rem;
}

@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ===========================
   SKELETON LOADER
   =========================== */
.skeleton-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.skeleton-img {
  aspect-ratio: 1/1;
  background: linear-gradient(90deg, #f3f2ee 25%, #e8e6df 50%, #f3f2ee 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, #f3f2ee 25%, #e8e6df 50%, #f3f2ee 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 6px;
}

.skeleton-line.tag { width: 30%; height: 10px; }
.skeleton-line.title { width: 80%; height: 16px; }
.skeleton-line.sub { width: 55%; height: 10px; }

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-us { background: var(--bg-white); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.why-card {
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  align-items: flex-start;
}

.why-card:hover {
  border-color: rgba(200,16,46,0.3);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(200,16,46,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon i { font-size: 1.4rem; color: var(--brand-red); }

.why-card-text h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-card-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .why-us-grid { grid-template-columns: 1fr; } }

/* ===========================
   PROMO BOX (COMPACT SLEEK HEIGHT)
   =========================== */
.promo-box-section { background: var(--bg-gray); }

.promo-box {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  align-items: center;
  height: 290px;
}

.promo-box-image {
  position: relative;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.promo-box-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: auto;
}

.promo-box-content {
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-box-content .section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.promo-box-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.promo-box-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 12px;
  font-weight: 300;
}

.promo-box-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.promo-box-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 400;
}

.promo-box-features li i {
  color: var(--brand-red);
  font-size: 1rem;
}

.promo-box-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@media (max-width: 992px) {
  .promo-box {
    grid-template-columns: 1fr;
    height: auto;
  }
  .promo-box-image {
    height: 280px;
    padding: 20px;
    background: #ffffff;
  }
  .promo-box-content {
    padding: 24px 20px;
  }
}

@media (max-width: 576px) {
  .promo-box-image {
    height: 240px;
    padding: 16px;
    background: #ffffff;
  }
  .promo-box-content {
    padding: 20px 16px;
  }
  .promo-box-content h2 {
    font-size: 1.1rem;
  }
  .promo-box-features {
    flex-direction: column;
    gap: 6px;
  }
  .promo-box-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background-color: #141414;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo { margin-bottom: 20px; }
.footer-logo img { max-height: 40px; }

.footer-about {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--brand-red);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--brand-red);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.site-footer a,
.footer-grid a,
.footer-col ul li a {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-col ul li a i {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.25s ease;
}

.site-footer a:hover,
.footer-grid a:hover,
.footer-col ul li a:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}

.footer-col ul li a:hover i {
  color: var(--brand-red);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.footer-contact-item i {
  font-size: 1.1rem;
  color: var(--brand-red);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75) !important;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #ffffff !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================
   PAGE HERO (Inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(200,16,46,0.75) 100%), url('../images/gallery/g2.jpg') center/cover no-repeat;
  padding: 85px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-hero .breadcrumbs a:hover {
  color: #ffffff;
}

.page-hero .breadcrumbs .current {
  color: #ffffff;
  font-weight: 500;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-top: 8px;
  margin-bottom: 0;
  max-width: 650px;
}

/* ===========================
   PRODUCTS PAGE
   =========================== */
/* ===========================
   PRODUCTS PAGE (UNIFIED LAYOUT)
   =========================== */
.products-unified-toolbar {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.category-filter-tabs-row {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  scrollbar-width: none;
}
.category-filter-tabs-row::-webkit-scrollbar { display: none; }

.cat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.cat-pill i {
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.cat-pill .pill-count {
  font-size: 0.75rem;
  background: var(--bg-gray);
  color: var(--text-muted);
  border-radius: 12px;
  padding: 3px 9px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cat-pill:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.12);
}

.cat-pill:hover i {
  color: var(--brand-red);
}

.cat-pill.active {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-red) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.25);
}

.cat-pill.active i {
  color: #ffffff;
}

.cat-pill.active .pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.filter-action-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.active-category-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.active-category-title-wrap h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.items-count-badge {
  font-size: 0.78rem;
  background: rgba(200, 16, 46, 0.1);
  color: var(--brand-red);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.filter-right-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.grade-filter-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.collection-pill-group {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f0ec;
  padding: 5px;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.06);
}

.col-pill-btn {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}

.col-pill-btn:hover {
  color: var(--text-dark);
}

.col-pill-btn.active {
  background: #ffffff;
  color: var(--brand-red);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.reset-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.reset-filter-btn:hover {
  background: #dc2626;
  color: #ffffff;
}

.filter-group {
  padding: 22px;
  border-bottom: 1px solid var(--border-light);
}

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

.filter-group-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.filter-link:last-child { margin-bottom: 0; }
.filter-link:hover { background: #fbfbf9; color: var(--brand-red); }
.filter-link.active { background: rgba(200, 16, 46, 0.08); color: var(--brand-red); font-weight: 600; }

.filter-count {
  font-size: 0.75rem;
  background: var(--bg-gray);
  color: var(--text-muted);
  border-radius: 10px;
  padding: 2px 8px;
  font-weight: 600;
}

.filter-link.active .filter-count {
  background: var(--brand-red);
  color: #ffffff;
}

@media (max-width: 900px) {
  .products-page-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
}

/* ===========================
   PRODUCT DETAIL
   =========================== */
.product-gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-gray);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.product-gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.product-gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--brand-red);
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 8px;
  margin-bottom: 16px;
}

.badge-category { background: var(--bg-gray); color: var(--text-dark); }
.badge-collection { background: rgba(200,16,46,0.1); color: var(--brand-red); }

.product-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-sku {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: monospace;
  margin-bottom: 20px;
}

.product-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.specs-table {
  background: var(--bg-gray);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.specs-table h5 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-muted); }
.spec-value { font-weight: 600; color: var(--text-dark); }

.colour-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.colour-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 0 1px #ddd;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.colour-swatch:hover { box-shadow: 0 0 0 2px var(--brand-red); transform: scale(1.1); }
.colour-swatch[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.72rem;
  white-space: nowrap;
}

/* ===========================
   CATALOGUE PAGE & SHOWCASE
   =========================== */
.catalogue-showcase-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 44px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 50px;
}

.catalogue-showcase-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.catalogue-showcase-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalogue-3d-book {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.catalogue-3d-book:hover {
  transform: translateY(-6px) scale(1.02);
}

.catalogue-3d-book img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.catalogue-badge-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(191, 34, 46, 0.95);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.catalogue-tag-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #bf222e;
  text-transform: uppercase;
  background: rgba(191, 34, 46, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.catalogue-showcase-title {
  font-size: 2.1rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 14px;
}

.catalogue-showcase-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
}

.catalogue-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.catalogue-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #334155;
  font-weight: 400;
}

.catalogue-highlights li i {
  color: #bf222e;
  font-size: 1.15rem;
}

.catalogue-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ===========================
   HOME PAGE CATALOGUE SECTION
   =========================== */
.home-catalogue-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 44px;
  display: flex;
  flex-direction: row;
  gap: 44px;
  align-items: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.home-catalogue-cover {
  width: 250px;
  flex-shrink: 0;
}

.home-catalogue-frame {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.home-catalogue-frame img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home-catalogue-badge {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #bf222e;
  background: rgba(191, 34, 46, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
}

.home-catalogue-info {
  flex: 1;
}

.home-catalogue-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #bf222e;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-catalogue-title {
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 14px;
}

.home-catalogue-desc {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.home-catalogue-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-catalogue-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #334155;
}

.home-catalogue-features li i {
  color: #bf222e;
  font-size: 1.15rem;
}

.home-catalogue-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .home-catalogue-box {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  .home-catalogue-cover {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.catalogue-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.catalogue-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.catalogue-cover {
  aspect-ratio: 3/4;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.catalogue-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.catalogue-cover-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ccc;
}

.catalogue-cover-placeholder i { font-size: 4rem; color: var(--brand-red); opacity: 0.4; }

.catalogue-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.catalogue-collection {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 6px;
}

.catalogue-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.catalogue-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.catalogue-actions .btn { flex: 1; justify-content: center; }

@media (max-width: 900px) { .catalogue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .catalogue-grid { grid-template-columns: 1fr; } }

/* ===========================
   CONTACT & EXPORT FORMS
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.export-enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-md);
  padding: 40px;
  height: 100%;
  box-sizing: border-box;
}

.contact-info-card h3 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(200,16,46,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i { font-size: 1.2rem; color: var(--brand-red); }
.contact-detail-text label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  word-break: break-word;
}

.contact-detail-text a:hover { color: #fff; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
}

.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  box-sizing: border-box;
}

.export-form-card {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
  min-width: 0;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 8px;
  word-break: break-word;
}

.form-control {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}

.form-control::placeholder { color: var(--text-light); }

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .export-enquiry-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-info-card {
    height: auto;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .form-card, .export-form-card {
    padding: 24px 18px;
  }
  .contact-info-card {
    padding: 24px 18px;
  }
  .location-floating-card {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    max-width: calc(100% - 32px) !important;
    margin: 16px !important;
    box-sizing: border-box;
  }
}

/* ===========================
   ALERTS
   =========================== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ===========================
   ABOUT PAGE SPECIFIC
   =========================== */
.stat-box {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--brand-red);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quality-card {
  background: var(--bg-white);
  border-left: 4px solid var(--brand-red);
  padding: 28px 28px 28px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-card);
}

.quality-card h4 { margin-bottom: 12px; font-size: 1rem; }
.quality-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===========================
   EXPORT PAGE SPECIFIC
   =========================== */
.export-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.export-feature:hover { border-color: var(--brand-red); box-shadow: var(--shadow-card); }
.export-feature-icon {
  width: 52px; height: 52px;
  background: rgba(200,16,46,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.export-feature-icon i { font-size: 1.5rem; color: var(--brand-red); }
.export-feature h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 6px; }
.export-feature p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   UTILITIES
   =========================== */
.text-center { text-align: center; }
.text-red { color: var(--brand-red); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }

.divider {
  width: 50px;
  height: 3px;
  background: var(--brand-red);
  border-radius: 2px;
  margin: 16px 0;
}

.divider.center { margin: 16px auto; }

/* Scroll animations */
[data-aos] { transition-duration: 700ms; }

/* ===========================
   REDESIGNED PRODUCT DETAIL LAYOUT (MATCHING REFERENCE)
   =========================== */
.product-detail-section {
  padding-top: 40px;
  padding-bottom: 70px;
}

.product-detail-cat-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.product-detail-cat-header .header-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--brand-red);
}

.product-detail-cat-header .header-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--brand-red);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

/* Image Showcase Card & Floating Tag */
.product-detail-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.product-img-floating-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(227, 30, 36, 0.15);
}

.product-detail-img-box {
  background: #ffffff;
  padding: 40px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

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

.product-gallery-slider {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.product-gallery-thumb {
  width: 72px;
  height: 72px;
  padding: 6px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  object-fit: contain;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
  border-color: var(--brand-red);
  box-shadow: 0 6px 18px rgba(227, 30, 36, 0.2);
  transform: translateY(-3px);
}

.product-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.product-gallery-dots .gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: var(--transition);
}

.product-gallery-dots .gallery-dot.active,
.product-gallery-dots .gallery-dot:hover {
  background-color: var(--brand-red);
  transform: scale(1.3);
}

/* Product Info Column */
.product-detail-info-col {
  display: flex;
  flex-direction: column;
}

.product-detail-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  background: rgba(227, 30, 36, 0.07);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.product-detail-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 14px;
}

.product-detail-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 24px;
}

/* Quick Spec Cards Grid */
.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.spec-card:hover {
  background: #ffffff;
  border-color: rgba(227, 30, 36, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.spec-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(227, 30, 36, 0.08);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.spec-card-info {
  display: flex;
  flex-direction: column;
}

.spec-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1f2937;
}

.spec-card-sub {
  font-size: 0.72rem;
  color: #6b7280;
}

/* Dimensions Box */
.product-dimensions-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.dim-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.dim-card-header i {
  color: var(--brand-red);
  font-size: 1.1rem;
}

.dim-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dim-box {
  background: #f9fafb;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.dim-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-red);
}

.dim-val small {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
}

.dim-lbl {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Colors & Virgin Block */
.color-quality-container {
  margin-bottom: 28px;
}

.color-quality-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.color-quality-heading i {
  color: var(--brand-red);
}

.color-quality-flex {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.color-list-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.color-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: #374151;
  font-weight: 500;
  cursor: default;
  padding: 4px 0;
}

.color-square-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.quality-card-block {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.quality-card-logo img {
  max-height: 24px;
  margin: 0 auto;
  object-fit: contain;
}

.quality-card-line {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0;
}

.quality-card-percent {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.quality-card-sub {
  font-size: 0.7rem;
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Action Buttons */
.product-detail-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.btn-product-inquiry {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(227, 30, 36, 0.3);
}

.btn-product-inquiry:hover {
  background: var(--brand-red-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}

.btn-product-catalogue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #ffffff;
  color: #374151;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-product-catalogue:hover {
  border-color: #111827;
  color: #111827;
  background: #f9fafb;
  transform: translateY(-2px);
}

.product-full-details {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.product-full-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-full-details h3 i {
  color: var(--brand-red);
}

/* Related Products Section */
.related-products-section {
  padding-top: 60px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border-light);
}

.related-products-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.related-products-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--brand-red);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.related-header-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related-header-lines span {
  display: block;
  width: 45px;
  height: 2px;
  background-color: var(--brand-red);
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===========================
   OUR GALLERY SECTION (MATCHING REFERENCE)
   =========================== */
.home-gallery-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.home-gallery-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.home-gallery-header .gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.home-gallery-header .gallery-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: 1.1fr 2.1fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-gray);
  flex: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.middle-col .wide-card {
  height: 240px;
  flex: none;
}

.right-col .tall-card {
  height: 100%;
  min-height: 480px;
}

@media (max-width: 992px) {
  .gallery-masonry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .right-col {
    grid-column: span 2;
  }
  .right-col .tall-card {
    height: 350px;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }
  .right-col {
    grid-column: span 1;
  }
  .gallery-row-split {
    grid-template-columns: 1fr;
  }
  .middle-col .wide-card {
    height: 180px;
  }
}

/* ===========================
   MOULDED FURNITURE COLLECTIONS
   =========================== */
.moulded-collections-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.moulded-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
}

.moulded-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.moulded-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.moulded-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.moulded-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 30px;
  border-radius: 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.moulded-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Soft Pastel Backgrounds */
.card-pink   { background-color: #fde8ed; }
.card-blue   { background-color: #e0f2fe; }
.card-indigo { background-color: #e0e7ff; }
.card-yellow { background-color: #fef9c3; }
.card-peach  { background-color: #ffedd5; }
.card-mint   { background-color: #d1fae5; }

.moulded-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
  flex-shrink: 0;
}

.moulded-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.moulded-card-info p {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 28px;
  font-weight: 400;
}

.moulded-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #0d0d0d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.moulded-card:hover .moulded-arrow-btn {
  background-color: var(--brand-red);
  transform: scale(1.1);
}

.moulded-card-img {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.moulded-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.moulded-view-all {
  text-align: center;
  margin-top: 40px;
}

.btn-pill-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
}

.btn-pill-view-all:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* ===========================
   TRENDING NOW SECTION
   =========================== */
.trending-now-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.trending-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.trending-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.trending-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.trending-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.trending-tabs {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trending-tab {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #666666;
  cursor: pointer;
  padding-bottom: 6px;
  position: relative;
  transition: color 0.3s ease;
}

.trending-tab:hover,
.trending-tab.active {
  color: #ea580c;
}

.trending-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ea580c;
  border-radius: 1px;
}

.trending-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #f97316;
  background-color: #ffedd5;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.trending-arrow:hover {
  background-color: #ea580c;
  color: #ffffff;
}

.trending-product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.trending-product-card:hover {
  border-color: #ea580c;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.12);
  transform: translateY(-4px);
}

.trending-discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #ef4444;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 5;
}

.trending-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
}

.trending-wishlist-btn:hover {
  color: #ef4444;
  border-color: #ef4444;
}

.trending-img-wrap {
  aspect-ratio: 1/1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}

.trending-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.trending-card-body {
  padding: 16px;
  text-align: center;
}

.trending-product-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.trending-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.old-price {
  font-size: 0.8rem;
  color: #999999;
  text-decoration: line-through;
}

.new-price {
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a1a1a;
}

.btn-select-variant {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px 14px;
  background-color: #ea580c;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-select-variant:hover {
  background-color: #c2410c;
  color: #ffffff;
}

.trending-view-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: #ea580c;
  transition: gap 0.3s ease;
}

.trending-view-more:hover {
  color: #c2410c;
  gap: 8px;
}

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

@media (max-width: 576px) {
  .moulded-grid {
    grid-template-columns: 1fr;
  }
  .trending-tabs {
    gap: 14px;
  }
  .trending-tab {
    font-size: 0.75rem;
  }
}

/* ===========================
   REDESIGNED ABOUT PAGE (MATCHING REFERENCE UI)
   =========================== */
.about-page-hero {
  background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(200,16,46,0.75) 100%), url('../images/gallery/g2.jpg') center/cover no-repeat;
  padding: 85px 0;
  text-align: center;
  color: #ffffff;
}

.about-page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-page-hero .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.about-page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-page-hero .breadcrumbs a:hover {
  color: #ffffff;
}

.about-page-hero .breadcrumbs .current {
  color: #ffffff;
  font-weight: 500;
}

.about-page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-intro-header-section {
  padding: 80px 0;
}

.about-main-heading {
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-header-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.about-icon-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.icon-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 12px;
  background: #fafafa;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  gap: 8px;
  transition: var(--transition);
}

.icon-badge-item:hover {
  border-color: #ea580c;
  transform: translateY(-2px);
}

.icon-badge-item i {
  font-size: 1.6rem;
  color: #ea580c;
}

.icon-badge-item span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.about-brand-logo-card img {
  max-height: 50px;
  object-fit: contain;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vision-card {
  padding: 24px;
  border-radius: 12px;
  background: #fff8f5;
  border: 1px solid #ffedd5;
}

.vision-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #ea580c;
}

.vision-card-header i {
  font-size: 1.3rem;
}

.vision-card-header h4 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}

.vision-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Pillars of Success */
.pillars-section {
  padding: 80px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pillar-card {
  padding: 20px 16px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.pillar-card h4 {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar-card p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Story Cream Section */
.about-story-cream-section {
  background-color: #fffbeb;
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.story-img-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 540px;
  width: 100%;
}

.story-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.story-img-card:hover img {
  transform: scale(1.03);
}

.story-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.story-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.story-highlights-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.story-highlights-list ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.story-highlights-list ul li i {
  color: #ea580c;
}

.story-bottom-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.story-bottom-text p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 12px;
}

.story-bottom-img {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 500px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.story-bottom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.story-bottom-img:hover img {
  transform: scale(1.03);
}

/* Journey Timeline */
.journey-section {
  padding: 80px 0;
}

.journey-timeline-wrap {
  position: relative;
  padding: 60px 0;
  margin-top: 20px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #f97316;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.top-node .node-content {
  margin-bottom: 24px;
}

.bottom-node .node-content {
  margin-top: 24px;
}

.node-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: 4px solid #ffffff;
  flex-shrink: 0;
}

.circle-blue   { background-color: #3b82f6; }
.circle-red    { background-color: #ef4444; }
.circle-purple { background-color: #a855f7; }
.circle-green  { background-color: #10b981; }

.node-content h5 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.node-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About Hero Banner & Stats */
.about-hero-stats-banner {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/gallery/g3.jpg') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.about-banner-overlay h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.4;
}

.stats-counter-strip {
  background: #fff8f5;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.count-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: #ea580c;
  display: block;
  margin-bottom: 4px;
}

.count-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Anatomy Diagram Section */
.close-to-you-section {
  padding: 80px 0;
  background-color: #fffdfa;
}

.anatomy-diagram-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-chair-graphic {
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.center-chair-graphic img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.callout-box {
  position: absolute;
  width: 220px;
  background: #ffffff;
  border: 1px solid #fed7aa;
  padding: 14px 18px;
  border-radius: 10px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.08);
}

.callout-box h5 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ea580c;
  margin-bottom: 4px;
}

.callout-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.callout-top-left     { top: 20px; left: 40px; }
.callout-top-right    { top: 20px; right: 40px; }
.callout-bottom-left  { bottom: 20px; left: 40px; }
.callout-bottom-right { bottom: 20px; right: 40px; }

/* Why SOLID Chairs */
.why-solid-section {
  padding: 80px 0;
}

.why-solid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-solid-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.why-solid-card:hover {
  border-color: #ea580c;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffedd5;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.why-solid-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-solid-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Expertise Progress Rings */
.expertise-section {
  padding: 80px 0;
}

.progress-rings-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

.ring-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.progress-ring-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 5px solid #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-dark);
  background: #ffffff;
}

.progress-ring-circle.color-green {
  border-color: #10b981;
}

.ring-item h5 {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Commitment Section */
.commitment-section {
  padding: 80px 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.commitment-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 28px 28px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  margin-top: 25px;
}

.commitment-arch-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffedd5;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.commitment-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.commitment-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Newsletter Banner */
.about-newsletter-banner {
  background: #1e293b;
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.newsletter-wrap h3 {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 20px;
}

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

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 0.9rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.btn-subscribe {
  padding: 12px 28px;
  background: #ea580c;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
  background: #c2410c;
}

@media (max-width: 992px) {
  .about-header-top-grid,
  .about-story-grid,
  .story-bottom-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .timeline-line {
    display: none;
  }
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .callout-box {
    position: static;
    width: 100%;
    margin-bottom: 12px;
  }
  .anatomy-diagram-container {
    flex-direction: column;
  }
  .why-solid-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-icon-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-vision-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-form {
    flex-direction: column;
  }
}

/* ===========================
   EXPORT PAGE NEW SECTIONS (MAP, FLAGS & PORT LOADING)
   =========================== */
.export-map-section {
  padding: 80px 0;
}

.export-map-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.export-map-img-wrap {
  aspect-ratio: 16/9;
  max-height: 480px;
  overflow: hidden;
  background: #09131e;
}

.export-map-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.export-map-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 24px;
  background: #fafafa;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.map-stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brand-red);
  display: block;
  margin-bottom: 4px;
}

.map-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Country Flags Grid */
.export-flags-section {
  padding: 80px 0;
}

.country-flags-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.flag-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: var(--transition);
}

.flag-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.08);
}

.flag-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.flag-info h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2px;
  line-height: 1.25;
}

.flag-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Port Loading Section */
.port-loading-section {
  padding: 80px 0;
}

.port-loading-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.port-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  aspect-ratio: 4/3;
}

.port-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.port-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

.port-img-badge i {
  color: var(--brand-red);
  font-size: 1.2rem;
}

.port-details-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.port-info-box {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
}

.port-info-box:hover {
  border-color: var(--brand-red);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.box-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200,16,46,0.08);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.port-info-box h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.port-info-box p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .country-flags-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .export-map-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .port-loading-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .country-flags-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .export-map-stats-strip {
    grid-template-columns: 1fr;
  }
}

/* ==============================================================================
   GUARANTEED VISIBILITY FOR ALL SECTIONS & ELEMENTS
   ============================================================================== */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  animation: none !important;
}

/* ==============================================================================
   RIGHT SIDE SLIDE-OVER QUOTE DRAWER POPUP
   ============================================================================== */
.quote-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.quote-drawer.active {
  transform: translateX(0);
}

.quote-drawer-header {
  padding: 20px 24px;
  background: var(--brand-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--brand-red);
  flex-shrink: 0;
}

.quote-drawer-header h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.quote-drawer-header p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.quote-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.quote-drawer-close:hover {
  background: var(--brand-red);
  color: #ffffff;
  transform: rotate(90deg);
}

.quote-drawer-body {
  padding: 24px;
  padding-bottom: 48px;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-contact-card {
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
}

.drawer-contact-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.drawer-contact-item i {
  font-size: 1.1rem;
  color: var(--brand-red);
  margin-top: 2px;
}

.drawer-contact-item .label {
  display: block;
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.drawer-contact-item a {
  color: var(--brand-red);
  font-weight: 500;
}

.drawer-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.drawer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.drawer-btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
}

.drawer-btn-whatsapp:hover {
  background: #1da851;
}

.drawer-btn-call {
  background: var(--brand-dark);
  color: #ffffff !important;
}

.drawer-btn-call:hover {
  background: var(--brand-red);
}

.drawer-form-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

.drawer-form-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .quote-drawer {
    max-width: 100%;
  }
}

/* ==============================================================================
   CRISP LOGO DRAWING PRELOADER (HOME PAGE ONLY)
   ============================================================================== */
/* ==============================================================================
   LUXURY BRAND SVG LOGO DRAWING PRELOADER
   ============================================================================== */
/* ==============================================================================
   LUXURY BRAND SVG LOGO DRAWING PRELOADER
   ============================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: #0a0a0c;
  overflow: hidden;
}

.logo-wrap,
.logo-preloader-wrap {
  width: min(60vw, 320px);
}

.logo-wrap svg,
.logo-preloader-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* every path starts as an outline only */
.logo-wrap path,
.logo-preloader-wrap path {
  fill-opacity: 0;
  stroke: #ffffff;
  stroke-width: 1.2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation:
    draw 1.1s cubic-bezier(.65,0,.35,1) forwards,
    fillIn .5s ease-out forwards;
  animation-delay: calc(var(--d) * 70ms), calc(1.0s + var(--d) * 70ms);
}

/* the two red paths keep their brand color when filled */
.logo-wrap path[data-accent="1"],
.logo-preloader-wrap path[data-accent="1"] {
  stroke: #bf222e;
}
.logo-wrap path[data-accent="1"].fill-target,
.logo-preloader-wrap path[data-accent="1"].fill-target {
  fill: #bf222e;
}
.logo-wrap path:not([data-accent="1"]).fill-target,
.logo-preloader-wrap path:not([data-accent="1"]).fill-target {
  fill: #ffffff;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}
@keyframes fillIn {
  to { fill-opacity: 1; }
}

/* soft breathing glow once fully drawn */
.logo-wrap.settled svg,
.logo-preloader-wrap.settled svg {
  animation: glow 1.8s ease-in-out 0.2s 1;
}
@keyframes glow {
  0% { filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  40% { filter: drop-shadow(0 0 18px rgba(255,255,255,0.35)); }
  100% { filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
}

/* progress readout */
.preloader-status,
.status {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "SF Mono", "Consolas", monospace;
  color: #55565c;
  font-size: 12px;
  letter-spacing: .08em;
  opacity: 0;
  animation: rise .5s ease-out .3s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.preloader-bar,
.bar {
  width: 140px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.preloader-bar span,
.bar span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: #ffffff;
  transition: width .1s linear;
}

.preloader-pct,
.pct {
  min-width: 32px;
  color: #ffffff;
}

/* wipe-away transition */
#preloader.done {
  animation: wipe .85s cubic-bezier(.76,0,.24,1) forwards;
}
@keyframes wipe {
  to {
    clip-path: circle(0% at 50% 50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-wrap path,
  .logo-preloader-wrap path { animation: none; fill-opacity: 1; stroke-dashoffset: 0; }
  .logo-wrap.settled svg,
  .logo-preloader-wrap.settled svg { animation: none; }
  #preloader.done { animation: none; opacity: 0; transition: opacity .4s ease; }
}

/* ============================================================
   CREATIVE B2B EXPORT PAGE REDESIGN STYLES
   ============================================================ */

/* Creative Export Hero */
.export-hero-section {
  position: relative;
  background: linear-gradient(135deg, #09090b 0%, #18181b 50%, #27090e 100%);
  color: #ffffff;
  padding: 100px 0 80px;
  overflow: hidden;
}

.export-hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.export-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.4);
  color: #ff4d6d;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.export-hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.export-hero-title span {
  color: var(--brand-red);
}

.export-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.export-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Interactive Container Capacity Calculator */
.export-calc-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.calc-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  padding: 40px;
}

.calc-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.calc-type-btn {
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  text-align: left;
}

.calc-type-btn.active, .calc-type-btn:hover {
  border-color: var(--brand-red);
  background: rgba(200,16,46,0.04);
}

.calc-type-btn i {
  font-size: 1.8rem;
  color: var(--brand-red);
}

.calc-type-btn .title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.calc-type-btn .subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc-controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.calc-control-item label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-slider {
  width: 100%;
  accent-color: var(--brand-red);
  cursor: pointer;
}

.calc-result-box {
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
}

.calc-stat-block .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.calc-stat-block .value {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}

.calc-stat-block .value span {
  color: var(--brand-red);
  font-size: 0.9rem;
}

/* Shipping Timeline 4-Steps */
.export-process-section {
  padding: 80px 0;
  background: var(--bg-gray);
}

.export-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.export-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

.export-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: rgba(200, 16, 46, 0.2);
  position: absolute;
  top: 18px;
  right: 20px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--brand-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.export-step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.export-step-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Region Filter Tabs for Countries */
.region-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.region-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.region-tab-btn.active, .region-tab-btn:hover {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

/* Accordion FAQ */
.export-faq-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--brand-red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.faq-header i {
  font-size: 1.1rem;
  color: var(--brand-red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
  margin-top: 4px;
  padding-top: 16px;
}

@media (max-width: 992px) {
  .calc-type-selector { grid-template-columns: 1fr; }
  .calc-controls-grid { grid-template-columns: 1fr; }
  .calc-result-box { grid-template-columns: 1fr 1fr; }
  .export-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .country-flags-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .calc-card { padding: 24px 16px; }
  .calc-result-box { grid-template-columns: 1fr; padding: 20px 16px; text-align: center; }
  .export-steps-grid { grid-template-columns: 1fr; }
  .country-flags-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .country-flags-grid { grid-template-columns: 1fr; }
  .flag-card { padding: 14px 12px; }
  .region-tabs-nav { gap: 6px; }
  .region-tab-btn { padding: 6px 12px; font-size: 0.78rem; }
}

/* ===========================
   RESPONSIVE ENHANCEMENTS FOR PRODUCTS PAGE
   =========================== */
@media (max-width: 768px) {
  .products-unified-toolbar {
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .category-filter-tabs-row {
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }

  .cat-pill {
    padding: 8px 14px;
    font-size: 0.8rem;
    gap: 6px;
    border-radius: 30px;
  }

  .cat-pill i {
    font-size: 0.95rem;
  }

  .cat-pill .pill-count {
    padding: 2px 7px;
    font-size: 0.7rem;
  }

  .filter-action-bar-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .active-category-title-wrap {
    justify-content: space-between;
    width: 100%;
  }

  .active-category-title-wrap h2 {
    font-size: 1.1rem;
  }

  .items-count-badge {
    font-size: 0.72rem;
    padding: 3px 10px;
  }

  .filter-right-controls {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .grade-filter-label {
    font-size: 0.78rem;
    width: 100%;
    margin-bottom: 2px;
  }

  .collection-pill-group {
    width: 100%;
    justify-content: space-between;
    padding: 3px;
    border-radius: 24px;
  }

  .col-pill-btn {
    flex: 1;
    text-align: center;
    padding: 6px 8px;
    font-size: 0.75rem;
  }

  .reset-filter-btn {
    font-size: 0.75rem;
    padding: 6px 12px;
    align-self: flex-start;
  }

  /* Grid & Cards on Mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .product-card {
    border-radius: 14px;
    display: flex;
    flex-direction: column;
  }

  .product-card-img {
    padding: 14px;
    aspect-ratio: 1 / 1;
  }

  .product-card-img img {
    max-width: 95%;
    max-height: 95%;
  }

  .product-badge-tag {
    top: 8px;
    left: 8px;
    font-size: 0.58rem;
    padding: 2px 7px;
    letter-spacing: 0.5px;
  }

  .product-card-info {
    padding: 10px 12px 14px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .product-card-cat {
    font-size: 0.65rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .product-card-name {
    font-size: 0.88rem;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-features-bar {
    font-size: 0.68rem;
    gap: 6px;
    margin-top: 6px;
    padding-top: 6px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .product-card-img {
    padding: 10px;
  }

  .product-card-info {
    padding: 8px 10px 12px 10px;
  }

  .product-card-name {
    font-size: 0.82rem;
  }
}