/* ==========================================================================
   SARA & SONS ENTERPRISES - NAVBAR & MEGA MENU STYLES
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
  --color-primary: #102747;
  /* Deep Corporate Navy */
  --color-primary-dark: #0a1b32;
  /* Dark Navy Container */
  --color-gold: #C88A0A;
  /* Brand Accent Gold */
  --color-gold-hover: #b37905;
  --color-gold-subtle: rgba(200, 138, 10, 0.08);
  --color-gold-border: rgba(200, 138, 10, 0.3);
  --color-bg-white: #FFFFFF;
  --color-text-main: #172033;
  --color-text-muted: #64748b;
  --color-border-light: #E5E5E5;
  --color-border-subtle: #f0f3f6;

  /* Typography */
  --font-nav: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing & Transitions */
  --navbar-height-desktop: 92px;
  --navbar-height-scrolled: 76px;
  --mega-menu-width: 1180px;
  --mega-menu-height: 400px;
  --transition-smooth: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-scroll: 0 4px 20px rgba(16, 39, 71, 0.08);
  --shadow-mega: 0 18px 45px rgba(16, 39, 71, 0.12);
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: #fafbfc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Header & Sticky Navbar --- */
.site-header {
  width: 100%;
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition-smooth);
  z-index: 1050;
}

.site-header.scrolled {
  box-shadow: var(--shadow-scroll);
  border-bottom-color: rgba(16, 39, 71, 0.08);
}

.navbar {
  min-height: var(--navbar-height-desktop);
  padding: 0.75rem 0;
  background-color: transparent !important;
  transition: var(--transition-smooth);
}

.site-header.scrolled .navbar {
  min-height: var(--navbar-height-scrolled);
  padding: 0.4rem 0;
}

/* --- Logo Styling --- */
.header-logo {
  display: block;
  width: 205px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: width 0.3s ease;
}

.site-header.scrolled .header-logo {
  width: 180px;
}

/* --- Desktop Navigation Typography & Spacing --- */
.navbar-nav {
  gap: 0.5rem;
}

.navbar-nav .nav-link {
  font-family: var(--font-nav);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.35px;
  color: var(--color-text-main) !important;
  padding: 0.65rem 0.95rem !important;
  position: relative;
  transition: color 0.22s ease;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

/* Desktop Hover and Active Indicator */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-item.show>.nav-link {
  color: var(--color-gold) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-item.show>.nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-nav .nav-link.active {
  color: var(--color-primary) !important;
}

/* Dropdown Arrow Indicator */
.nav-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.dropdown-toggle::after {
  display: none !important;
  /* Hide default Bootstrap triangle */
}

.nav-item.show .nav-arrow,
.mega-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  color: var(--color-gold);
}

/* --- Action Area: CTA Button & Phone Contact --- */
.header-actions {
  gap: 1.25rem;
  margin-left: 1.25rem;
}

/* Enquire Now CTA */
.btn-enquire {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  background: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: 6px;
  padding: 0.65rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(16, 39, 71, 0.12);
}

.btn-enquire:hover,
.btn-enquire:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200, 138, 10, 0.32);
}

/* Contact & Social Actions */
.header-contact-group {
  padding-left: 1.15rem;
  border-left: 1px solid var(--color-border-light);
  gap: 0.85rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
}

.whatsapp-icon-box {
  background-color: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.whatsapp-btn:hover .whatsapp-icon-box {
  background-color: #25D366;
  color: #FFFFFF;
  transform: scale(1.06);
}

.header-contact {
  gap: 0.65rem;
}

.contact-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-gold-subtle);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.header-contact:hover .contact-icon-box {
  background-color: var(--color-gold);
  color: #FFFFFF;
  transform: scale(1.05);
}

.contact-details {
  line-height: 1.2;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-text-muted);
  display: block;
}

.contact-number {
  font-family: var(--font-nav);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.2px;
  display: block;
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   DESKTOP MEGA MENU (PRODUCTS & COLLECTION)
   ========================================================================== */
@media (min-width: 992px) {

  /* Position Mega Menu centered relative to the container */
  .mega-dropdown {
    position: static;
  }

  .mega-menu {
    position: absolute !important;
    top: calc(100% + 2px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(12px) !important;
    width: min(var(--mega-menu-width), 94vw);
    background-color: var(--color-bg-white) !important;
    border-radius: 12px !important;
    border: 1px solid var(--color-border-light) !important;
    box-shadow: var(--shadow-mega) !important;
    margin: 0 !important;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
  }

  /* Active & Hover Open States */
  .mega-dropdown.show .mega-menu,
  .mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) !important;
  }

  /* Inner Flex Container */
  .mega-menu-inner {
    display: flex;
    height: var(--mega-menu-height);
    background-color: var(--color-bg-white);
  }

  /* --- Left Side: Category List (38% width) --- */
  .mega-categories-panel {
    flex: 0 0 38%;
    max-width: 38%;
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--color-border-subtle);
    background-color: #FFFFFF;
    overflow-y: auto;
  }

  .mega-panel-header {
    margin-bottom: 0.65rem;
    padding-left: 0.75rem;
  }

  .mega-panel-title {
    font-family: var(--font-nav);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-text-muted);
  }

  .mega-cat-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mega-cat-link {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--color-text-main);
    text-decoration: none;
    padding: 0.6rem 0.85rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
  }

  .cat-arrow {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
  }

  /* Hover & Active Category Item */
  .mega-cat-link:hover,
  .mega-cat-link.active {
    background-color: var(--color-gold-subtle);
    color: var(--color-gold);
    border-left-color: var(--color-gold);
    padding-left: 1.05rem;
  }

  .mega-cat-link:hover .cat-arrow,
  .mega-cat-link.active .cat-arrow {
    opacity: 1;
    color: var(--color-gold);
    transform: translateX(0);
  }

  .mega-cat-highlight {
    color: var(--color-gold) !important;
    font-weight: 600;
  }

  .mega-item-divider {
    border-color: var(--color-border-subtle);
    margin: 0.4rem 0.75rem;
    opacity: 0.8;
  }

  /* --- Right Side: Dynamic Image Preview Panel (62% width) --- */
  .mega-preview-panel {
    flex: 0 0 62%;
    max-width: 62%;
    background-color: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
  }

  .mega-image-stage {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Individual Image Cards stacked */
  .mega-img-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 0.35s ease-in-out, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  }

  .mega-img-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .mega-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Dark Gradient Overlay & Captions */
  .mega-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10, 27, 50, 0.92) 0%,
        rgba(10, 27, 50, 0.45) 45%,
        rgba(10, 27, 50, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 2.25rem;
    color: #FFFFFF;
  }

  .overlay-title {
    font-family: var(--font-nav);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 0.35rem 0;
    color: #FFFFFF;
  }

  .overlay-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 480px;
  }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================================================== */

/* Mobile Hamburger Toggler */
.custom-toggler {
  border: 1px solid var(--color-border-light) !important;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: transparent;
  outline: none !important;
  box-shadow: none !important;
  transition: var(--transition-smooth);
}

.custom-toggler:hover,
.custom-toggler:focus {
  background-color: var(--color-gold-subtle);
  border-color: var(--color-gold) !important;
}

.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Animated Hamburger to X */
.custom-toggler[aria-expanded="true"] .bar-top {
  transform: translateY(6px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .bar-mid {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .bar-bot {
  transform: translateY(-6px) rotate(-45deg);
}

/* Under 992px (Tablets & Mobile) */
@media (max-width: 991.98px) {
  .site-header {
    border-bottom: 1px solid var(--color-border-light);
  }

  .header-logo {
    width: 170px;
  }

  .navbar {
    min-height: 78px;
  }

  .navbar-collapse {
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border-light);
    padding: 1.25rem 0.75rem 1.5rem 0.75rem;
    margin-top: 0.6rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar-nav {
    gap: 0.3rem;
    width: 100%;
  }

  .navbar-nav .nav-link {
    font-size: 14.5px;
    padding: 0.75rem 1rem !important;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link.active {
    background-color: var(--color-gold-subtle);
    color: var(--color-gold) !important;
  }

  .dropdown-toggle .nav-arrow {
    font-size: 0.85rem;
    color: var(--color-gold);
  }

  .dropdown-toggle[aria-expanded="true"] .nav-arrow {
    transform: rotate(180deg);
  }

  /* Mobile Submenu Accordion */
  .mobile-submenu {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin: 0.4rem 0.5rem 0.75rem 0.5rem;
    border-left: 3px solid var(--color-gold);
  }

  .mobile-sublink {
    display: block;
    font-family: var(--font-nav);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
  }

  .mobile-sublink:hover,
  .mobile-sublink:focus {
    background-color: var(--color-gold-subtle);
    color: var(--color-gold);
    padding-left: 1.45rem;
  }

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

  /* Mobile Actions (CTA Button & Contact) */
  .header-actions {
    margin-left: 0;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border-light);
    gap: 1rem;
  }

  .btn-enquire {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 15px;
  }

  .header-contact-group {
    border-left: none;
    padding-left: 0;
    justify-content: center;
    padding-top: 0.25rem;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   HERO BANNER SECTION (FULL-WIDTH RESPONSIVE IMAGE)
   ========================================================================== */
.hero-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: var(--navbar-height-desktop);
  overflow: hidden;
  background-color: #FFFFFF;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .hero-banner {
    padding-top: 78px;
  }
}

/* ==========================================================================
   OUR PRODUCTS QUICK NAVIGATION SECTION
   ========================================================================== */
.our-products-section {
  width: 100%;
  background-color: #FFFFFF;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.products-nav-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
}

.product-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
  border-right: 1px solid #E5E5E5;
}

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

.product-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 28px 10px;
  text-decoration: none;
  color: #172033;
  background-color: transparent;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.product-icon {
  font-size: 28px;
  line-height: 1;
  color: #172033;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.product-icon i {
  display: inline-block;
  line-height: 1;
}

.product-nav-title {
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #172033;
  text-align: center;
  line-height: 1.3;
  transition: color 0.25s ease;
  word-break: normal;
}

/* Hover & Focus States */
.product-nav-link:hover {
  transform: translateY(-3px);
  background-color: rgba(200, 138, 10, 0.03);
}

.product-nav-link:hover .product-icon,
.product-nav-link:hover .product-icon i {
  color: #C88A0A;
}

.product-nav-link:hover .product-nav-title {
  color: #C88A0A;
}

.product-nav-link:focus-visible {
  outline: 2px solid #C88A0A;
  outline-offset: -2px;
  background-color: rgba(200, 138, 10, 0.04);
}

/* Responsive Breakpoints */
@media (max-width: 1199.98px) {
  .product-nav-link {
    padding: 24px 8px;
  }

  .product-icon {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .product-nav-title {
    font-size: 13px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 991.98px) {
  .products-nav-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-nav-item:nth-child(4) {
    border-right: none;
  }

  .product-nav-item:nth-child(-n+4) {
    border-bottom: 1px solid #E5E5E5;
  }

  .product-nav-item:nth-child(7) {
    border-right: none;
  }

  .product-nav-link {
    padding: 22px 10px;
  }
}

@media (max-width: 767.98px) {
  .products-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-nav-item:nth-child(4) {
    border-right: 1px solid #E5E5E5;
  }

  .product-nav-item:nth-child(3),
  .product-nav-item:nth-child(6) {
    border-right: none;
  }

  .product-nav-item:nth-child(-n+6) {
    border-bottom: 1px solid #E5E5E5;
  }

  .product-nav-item:nth-child(7) {
    grid-column: span 3;
    border-right: none;
    border-bottom: none;
  }
}

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

  .product-nav-item {
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
  }

  .product-nav-item:nth-child(2n) {
    border-right: none;
  }

  .product-nav-item:nth-child(7) {
    grid-column: span 2;
    border-right: none;
    border-bottom: none;
  }

  .product-nav-link {
    padding: 20px 8px;
  }

  .product-icon {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .product-nav-title {
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

/* ==========================================================================
   OUR COLLECTION SECTION STYLES
   ========================================================================== */
.our-collection-section {
  background-color: #F7F5F0;
  position: relative;
}

/* Section Header */
.collection-top-tag {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.collection-main-heading {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.collection-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 620px;
  line-height: 1.6;
}

/* Collection Tabs / Pills Navigation */
.collection-tabs-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.collection-tabs {
  display: flex;
  width: 100%;
  gap: 0.4rem;
  background: #FFFFFF;
  padding: 0.45rem;
  border-radius: 40px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 4px 18px rgba(16, 39, 71, 0.05);
}

.collection-tab-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.35px;
  padding: 0.75rem 0.5rem;
  border-radius: 30px;
  border: 1px solid transparent;
  background-color: transparent;
  color: var(--color-primary);
  cursor: pointer;
  white-space: nowrap;
  outline: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-tab-btn:hover {
  color: var(--color-gold);
  background-color: var(--color-gold-subtle);
}

.collection-tab-btn.active {
  background-color: var(--color-primary);
  color: #FFFFFF !important;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(16, 39, 71, 0.22);
}

/* Showcase Card Container */
.collection-showcase-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E5E5E5;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(16, 39, 71, 0.08);
  min-height: 480px;
  display: flex;
}

.collection-showcase-card>.row {
  width: 100%;
}

/* Left Content Column */
.collection-col-left {
  padding: 3.5rem 3rem;
  background-color: #FFFFFF;
}

.collection-text-panel {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.collection-space-label {
  font-family: var(--font-nav);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.collection-item-title {
  font-family: var(--font-nav);
  font-size: clamp(1.85rem, 2.5vw, 2.35rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.15rem;
  line-height: 1.2;
}

.collection-item-desc {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text-main);
  margin-bottom: 2.25rem;
  max-width: 440px;
}

/* Explore CTA Button */
.btn-collection-explore {
  font-family: var(--font-nav);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: var(--color-primary);
  color: #FFFFFF !important;
  border: 1.5px solid var(--color-primary);
  border-radius: 6px;
  padding: 0.8rem 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(16, 39, 71, 0.15);
  text-decoration: none;
}

.btn-collection-explore:hover,
.btn-collection-explore:focus-visible {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200, 138, 10, 0.35);
}

/* Right Image Stage */
.collection-col-right {
  background-color: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
}

.collection-image-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.collection-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fade Transition States */
.fade-out {
  opacity: 0 !important;
  transform: translateY(6px) !important;
}

.img-fade-out {
  opacity: 0 !important;
  transform: scale(0.98) !important;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .collection-tab-btn {
    font-size: 11.5px;
    padding: 0.65rem 0.25rem;
    letter-spacing: 0.2px;
  }
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 991.98px) {
  .collection-tabs-container {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.35rem 0.5rem 0.75rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .collection-tabs-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
  }

  .collection-tabs {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    border-radius: 30px;
  }

  .collection-tab-btn {
    flex: 0 0 auto;
    font-size: 12.5px;
    padding: 0.55rem 1.15rem;
  }

  .collection-showcase-card {
    border-radius: 16px;
    min-height: auto;
  }

  /* Mobile Stack Order: Image -> Content */
  .collection-showcase-card .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .collection-col-left {
    padding: 2.25rem 1.75rem;
  }

  .collection-image-stage {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .collection-item-title {
    font-size: 1.75rem;
  }

  .collection-item-desc {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .btn-collection-explore {
    width: 100%;
    padding: 0.85rem 1.5rem;
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION STYLES
   ========================================================================== */
.why-choose-section {
  background-color: #FFFFFF;
  padding: 85px 0;
  position: relative;
}

/* Section Header */
.why-choose-header {
  max-width: 720px;
}

.why-eyebrow {
  font-family: var(--font-nav);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.45rem;
}

.why-main-heading {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.2px;
  line-height: 1.25;
  margin: 0;
}

/* Feature Cards */
.why-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 2.35rem 1.85rem;
  box-shadow: 0 4px 20px rgba(16, 39, 71, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.why-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-gold-subtle);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.35rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.why-card-title {
  font-family: var(--font-nav);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.why-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* Hover State */
.why-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 138, 10, 0.45);
  box-shadow: 0 14px 32px rgba(16, 39, 71, 0.09);
}

.why-feature-card:hover .why-icon-box {
  background-color: var(--color-gold);
  color: #FFFFFF;
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .why-choose-section {
    padding: 65px 0;
  }

  .why-feature-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   TRUSTED BRANDS SECTION STYLES
   ========================================================================== */
.trusted-brands-section {
  background-color: #F7F5F0;
  padding: 85px 0;
  position: relative;
}

/* Section Header */
.brands-section-header {
  max-width: 720px;
}

.brands-eyebrow {
  font-family: var(--font-nav);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.45rem;
}

.brands-main-heading {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.2px;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.brands-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Brand Logo Card */
.brand-logo-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 15px rgba(16, 39, 71, 0.03);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.brand-logo-img {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.92;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

/* Hover Effect */
.brand-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 138, 10, 0.45);
  box-shadow: 0 10px 25px rgba(16, 39, 71, 0.08);
}

.brand-logo-card:hover .brand-logo-img {
  transform: scale(1.04);
  filter: grayscale(0%);
  opacity: 1;
}

/* Bottom CTA Link */
.brands-bottom-link {
  margin-top: 0.5rem;
}

.brands-explore-link {
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.brands-explore-link:hover,
.brands-explore-link:focus-visible {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .trusted-brands-section {
    padding: 65px 0;
  }

  .brand-logo-card {
    height: 95px;
    padding: 1rem;
  }

  .brand-logo-img {
    max-width: 125px;
    max-height: 48px;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION (SPOTLIGHT EDITORIAL DESIGN)
   ========================================================================== */
.testimonials-section {
  background-color: #FFFFFF;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-bg-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(200, 138, 10, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header */
.testimonials-header {
  max-width: 720px;
}

.testimonials-eyebrow {
  font-family: var(--font-nav);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.45rem;
}

.testimonials-main-heading {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.2px;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.testimonials-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Spotlight Wrapper */
.testimonial-spotlight-wrapper {
  position: relative;
  z-index: 2;
}

/* Featured Center Card */
.featured-testimonial-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid rgba(200, 138, 10, 0.22);
  padding: 3.5rem 3rem 2.85rem 3rem;
  box-shadow: 0 18px 45px rgba(16, 39, 71, 0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.featured-watermark-quote {
  position: absolute;
  top: -15px;
  right: 25px;
  font-family: Georgia, serif;
  font-size: 9.5rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.featured-card-inner {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.featured-quote {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-text-main);
  margin: 0 0 2rem 0;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Author Profile */
.customer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(200, 138, 10, 0.35);
  box-shadow: 0 4px 12px rgba(16, 39, 71, 0.12);
  flex-shrink: 0;
}

.customer-name {
  font-family: var(--font-nav);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}

.customer-role {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Counter & Controls */
.testimonial-counter {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.current-num {
  color: var(--color-primary);
  font-size: 1.08rem;
}

.divider-slash {
  margin: 0 2px;
  color: var(--color-gold);
}

.btn-testimonial-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  outline: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-testimonial-nav:hover,
.btn-testimonial-nav:focus-visible {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #FFFFFF;
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(200, 138, 10, 0.35);
}

/* Side Preview Cards */
.testimonial-preview-card {
  background-color: #FAF8F5;
  border: 1px solid #EAE6DF;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  opacity: 0.78;
  transform: scale(0.96);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
  outline: none !important;
}

.testimonial-preview-card:hover,
.testimonial-preview-card:focus-visible {
  opacity: 1;
  transform: scale(1);
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(16, 39, 71, 0.08);
}

.preview-quote-icon {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.5;
  margin-bottom: 0.2rem;
}

.preview-quote-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-main);
  font-style: italic;
  margin-bottom: 1.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.preview-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-gold);
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preview-name {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.preview-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Fade animation state for carousel update */
.testim-transitioning {
  opacity: 0 !important;
  transform: translateY(8px) scale(0.99) !important;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .featured-card-inner,
  .testimonial-preview-card,
  .btn-testimonial-nav {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 65px 0;
  }

  .featured-testimonial-card {
    padding: 2.35rem 1.65rem 2rem 1.65rem;
    border-radius: 16px;
  }

  .featured-quote {
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 1.65rem;
  }

  .featured-watermark-quote {
    font-size: 7rem;
    top: -10px;
    right: 15px;
  }

  .featured-footer {
    border-top: 1px solid #F0F2F5;
  }
}

/* ==========================================================================
   CALL TO ACTION (CTA) SECTION STYLES
   ========================================================================== */
.cta-section {
  background-color: #FFFFFF;
  padding: 95px 0;
  position: relative;
}

.cta-wrapper {
  background: linear-gradient(135deg, #0b1a2e 0%, #102747 55%, #163156 100%);
  border-radius: 24px;
  padding: 4.75rem 4.25rem;
  border: 1.5px solid rgba(200, 138, 10, 0.35);
  box-shadow: 0 24px 60px rgba(16, 39, 71, 0.18), 0 0 40px rgba(200, 138, 10, 0.08);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

/* CSS-Only Ambient Glow & Geometric Accents */
.cta-ambient-glow {
  position: absolute;
  top: -30%;
  right: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(200, 138, 10, 0.18) 0%, transparent 65%);
  filter: blur(55px);
  pointer-events: none;
}

.cta-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 138, 10, 0.16);
  pointer-events: none;
}

.circle-top-right {
  width: 340px;
  height: 340px;
  top: -140px;
  right: -90px;
}

.circle-bottom-left {
  width: 240px;
  height: 240px;
  bottom: -90px;
  left: -70px;
}

/* Eyebrow & Headline */
.cta-accent-line {
  width: 28px;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
  display: inline-block;
}

.cta-eyebrow {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-heading {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 1.15rem;
}

.cta-description {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 580px;
}

/* Action Buttons */
.btn-cta-primary {
  font-family: var(--font-nav);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: var(--color-gold);
  color: #102747 !important;
  padding: 0.95rem 2.2rem;
  border-radius: 6px;
  border: 1.5px solid var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(200, 138, 10, 0.35);
  text-decoration: none;
}

.btn-cta-primary:hover,
.btn-cta-primary:focus-visible {
  background-color: #102747;
  color: #FFFFFF !important;
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 138, 10, 0.45);
}

.btn-cta-secondary {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: transparent;
  color: #FFFFFF !important;
  padding: 0.9rem 2.1rem;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-cta-secondary:hover,
.btn-cta-secondary:focus-visible {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #102747 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(200, 138, 10, 0.25);
}

.cta-support-note {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.25rem;
  display: block;
  font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .cta-section {
    padding: 65px 0;
  }

  .cta-wrapper {
    padding: 3.25rem 2rem;
    border-radius: 18px;
  }

  .cta-heading {
    font-size: clamp(1.85rem, 5vw, 2.25rem);
  }

  .cta-description {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
  }

  .cta-support-note {
    text-align: center;
  }
}

/* ==========================================================================
   SITE FOOTER SECTION (PREMIUM HYBRID GLASS DESIGN)
   ========================================================================== */
.site-footer {
  background:
    radial-gradient(circle at 75% 35%, rgba(200, 138, 10, 0.14) 0%, transparent 48%),
    radial-gradient(circle at 90% 70%, rgba(16, 75, 135, 0.30) 0%, transparent 50%),
    radial-gradient(circle at 20% 40%, rgba(16, 50, 95, 0.25) 0%, transparent 40%),
    linear-gradient(180deg, #09182d 0%, #102747 50%, #0c1c33 100%);
  color: #D9DEE7;
  padding: 80px 0 35px;
  position: relative;
  overflow: hidden;
}

/* Ambient CSS Glow Spheres */
.footer-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  z-index: 1;
}

.glow-1 {
  top: -10%;
  right: 10%;
  width: 480px;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 138, 10, 0.16) 0%, transparent 70%);
}

.glow-2 {
  bottom: 0%;
  right: 25%;
  width: 520px;
  height: 420px;
  background: radial-gradient(circle, rgba(16, 65, 120, 0.35) 0%, transparent 70%);
}

.glow-3 {
  top: 30%;
  right: 50%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 138, 10, 0.08) 0%, transparent 70%);
}

/* ==========================================
   LEFT BRAND AREA (NO GLASS / TRANSPARENT)
   ========================================== */
.footer-brand-side {
  /* Sits directly on the dark background - NO glass, NO border, NO blur */
  background: transparent;
  padding: 0.5rem 0;
}

.footer-logo-link {
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-logo-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer-logo-img {
  max-height: 74px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: #D9DEE7;
  max-width: 380px;
  margin-bottom: 1.65rem;
}

.footer-social-heading {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Social Media Circular Buttons (Clean direct icons) */
.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
}

.social-icon-btn:hover,
.social-icon-btn:focus-visible {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #102747;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200, 138, 10, 0.35);
}

/* ==========================================
   RIGHT AREA: GLASSMORPHISM CONTAINER ONLY
   ========================================== */
.footer-links-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-radius: 28px;
  padding: 42px 38px;
  position: relative;
}

/* Subtle Column Dividers */
@media (min-width: 768px) {
  .footer-glass-col-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.10);
  }
}

/* Column Headings & Links */
.footer-col-title {
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-link-list li {
  margin-bottom: 0.35rem;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #D9DEE7;
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0;
  transition: all 0.25s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--color-gold);
  transform: translateX(4px);
}

/* Contact Column */
.contact-icon {
  color: var(--color-gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-sub-label {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #AAB3C2;
  letter-spacing: 0.5px;
}

.contact-val,
.contact-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #D9DEE7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--color-gold);
}

/* ==========================================
   BOTTOM AREA: COPYRIGHT GLASS CONTAINER
   ========================================== */
.footer-bottom-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 18px 28px;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #D9DEE7;
}

.copyright {
  letter-spacing: 0.2px;
}

.legal-link {
  color: #D9DEE7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-link:hover,
.legal-link:focus-visible {
  color: var(--color-gold);
}

.legal-separator {
  color: rgba(255, 255, 255, 0.25);
}

/* Back to Top Floating Button */
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: #102747;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-back-to-top:hover,
.btn-back-to-top:focus-visible {
  background-color: #102747;
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 138, 10, 0.45);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .site-footer {
    padding: 55px 0 25px;
  }

  .footer-brand-side {
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .footer-links-glass {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .footer-glass-col-divider {
    border-right: none;
  }

  .footer-col-title {
    margin-bottom: 0.85rem;
  }

  .footer-bottom-glass {
    padding: 18px 20px;
    border-radius: 18px;
    text-align: center;
  }

  .btn-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   ABOUT US PAGE - BANNER STYLES
   ========================================================================== */

.about-page-banner {
  position: relative;
  width: 100%;
  height: 400px;
  min-height: 400px;
  margin-top: var(--navbar-height-desktop);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.about-banner-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.about-banner-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}

.about-banner-title {
  font-family: var(--font-nav);
  font-size: 56px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  line-height: 1.2;
}

.about-banner-gold-line {
  width: 50px;
  height: 2.5px;
  background-color: var(--color-gold);
  border-radius: 2px;
  margin: 14px auto 16px auto;
}

.about-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.about-breadcrumb .breadcrumb-item {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
}

.about-breadcrumb .breadcrumb-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: rgba(255, 255, 255, 0.5);
  padding: 0 10px;
}

.about-breadcrumb .breadcrumb-item.active {
  color: var(--color-gold);
  font-weight: 500;
}

/* Tablet adjustments */
@media (max-width: 991.98px) {
  .about-page-banner {
    height: 320px;
    min-height: 320px;
  }

  .about-banner-title {
    font-size: 44px;
  }

  .about-banner-gold-line {
    width: 44px;
    margin: 12px auto 14px auto;
  }

  .about-breadcrumb {
    font-size: 14px;
  }
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .about-page-banner {
    height: 260px;
    min-height: 260px;
  }

  .about-banner-title {
    font-size: 34px;
  }

  .about-banner-gold-line {
    width: 38px;
    height: 2px;
    margin: 10px auto 12px auto;
  }

  .about-breadcrumb {
    font-size: 13.5px;
  }
}

/* ==========================================================================
   ABOUT US PAGE - WHO WE ARE (ASYMMETRICAL INTRO SECTION)
   ========================================================================== */

.about-intro-section {
  background-color: #FFFFFF;
  color: var(--color-text-main);
  padding: 110px 0;
  position: relative;
}

.about-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.about-intro-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background-color: var(--color-gold);
}

.about-intro-heading {
  font-family: var(--font-nav);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  margin-bottom: 1.5rem;
}

.about-intro-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about-intro-lead:last-of-type {
  margin-bottom: 2.5rem;
}

/* Architectural Image Frame */
.about-intro-img-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 16px 40px rgba(16, 39, 71, 0.08);
  background-color: #f8fafc;
}

.about-intro-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-intro-img-frame:hover .about-intro-img {
  transform: scale(1.025);
}

/* Right Column Content */
.about-craft-heading {
  font-family: var(--font-nav);
  font-size: 21px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-craft-heading::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-gold);
}

.about-craft-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}

/* 3 Horizontal Feature Rows */
.about-feature-rows {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border-light);
}

.about-feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-feature-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 4px;
  background: var(--color-gold-subtle);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.about-feature-title {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.about-feature-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-intro-section {
    padding: 80px 0;
  }

  .about-intro-img {
    height: 320px;
  }

  .about-intro-lead:last-of-type {
    margin-bottom: 2rem;
  }

  .about-intro-right-img-wrap {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .about-intro-section {
    padding: 60px 0;
  }

  .about-intro-heading {
    font-size: 28px;
  }

  .about-intro-img {
    height: 240px;
  }

  .about-craft-heading {
    font-size: 19px;
  }
}

/* ==========================================================================
   ABOUT US PAGE - SECTION 3: MISSION & VISION
   ========================================================================== */

.about-mv-section {
  background-color: #0D1828;
  color: #FFFFFF;
  padding: 105px 0;
  position: relative;
  overflow: hidden;
}

.about-mv-header {
  margin-bottom: 3.5rem;
}

.about-mv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.about-mv-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background-color: var(--color-gold);
}

.about-mv-title {
  font-family: var(--font-nav);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  margin-bottom: 1.25rem;
}

.about-mv-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: #C7CDD6;
  max-width: 680px;
  margin-bottom: 0;
}

/* Editorial Solid Dark Panels (No Glassmorphism) */
.about-mv-panel {
  background-color: #102747;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 48px 42px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.about-mv-panel-content {
  position: relative;
  z-index: 2;
}

.about-mv-panel-label {
  font-family: var(--font-nav);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: block;
}

.about-mv-panel-heading {
  font-family: var(--font-nav);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.about-mv-panel-line {
  width: 36px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 14px 0 20px 0;
  border-radius: 2px;
  transition: width 0.35s ease;
}

.about-mv-panel-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.8;
  color: #C7CDD6;
  margin-bottom: 0;
}

/* Large Decorative Watermark Letter (M / V) */
.about-mv-watermark {
  position: absolute;
  bottom: -25px;
  right: 15px;
  font-family: var(--font-nav);
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  transition: color 0.4s ease, transform 0.4s ease;
}

/* Hover Interaction on Mission & Vision */
.about-mv-panel:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.about-mv-panel:hover .about-mv-watermark {
  color: rgba(200, 138, 10, 0.12);
  transform: translateY(-4px);
}

.about-mv-panel:hover .about-mv-panel-line {
  width: 55px;
}

/* ==========================================================================
   ABOUT US PAGE - SECTION 4: ASYMMETRIC COUNTER & KEY HIGHLIGHTS
   ========================================================================== */

.about-counter-section {
  background-color: #FFFFFF;
  color: var(--color-text-main);
  padding: 105px 0;
  position: relative;
  border-top: 1px solid var(--color-border-light);
}

.about-counter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-counter-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background-color: var(--color-gold);
}

.about-counter-heading {
  font-family: var(--font-nav);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.16;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  margin-bottom: 1.25rem;
}

.about-counter-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}

/* Explore CTA Button */
.btn-about-explore {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  background-color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: 6px;
  padding: 0.75rem 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-about-explore:hover,
.btn-about-explore:focus-visible {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 138, 10, 0.32);
}

.about-explore-support {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-gold-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: inline-block;
}

/* Center Product Image */
.about-counter-img-wrap {
  padding: 10px;
  text-align: center;
}

.about-counter-product-img {
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 15px 35px rgba(16, 39, 71, 0.08));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-counter-img-wrap:hover .about-counter-product-img {
  transform: scale(1.03);
}

/* Right Stacked Counters */
.about-stacked-counters {
  display: flex;
  flex-direction: column;
}

.about-stacked-item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border-light);
  transition: transform 0.3s ease;
}

.about-stacked-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-stacked-num {
  font-family: var(--font-nav);
  font-size: clamp(42px, 3.8vw, 54px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-stacked-title {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.about-stacked-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Counter Hover Interaction */
.about-stacked-item:hover {
  transform: translateX(4px);
}

.about-stacked-item:hover .about-stacked-num {
  color: var(--color-gold);
}

.about-stacked-item:hover .about-stacked-title {
  color: var(--color-gold);
}

/* Stagger Animation for Counter Items */
.about-stacked-counters .about-stacked-item:nth-child(1) { transition-delay: 0.05s; }
.about-stacked-counters .about-stacked-item:nth-child(2) { transition-delay: 0.15s; }
.about-stacked-counters .about-stacked-item:nth-child(3) { transition-delay: 0.25s; }

/* Responsive Media Queries */
@media (max-width: 991.98px) {
  .about-counter-section {
    padding: 80px 0;
  }

  .about-counter-img-wrap {
    margin: 2rem 0;
  }

  .about-counter-product-img {
    max-height: 320px;
  }

  .about-stacked-item:hover {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .about-counter-section {
    padding: 60px 0;
  }

  .about-counter-heading {
    font-size: 28px;
  }

  .about-counter-product-img {
    max-height: 250px;
  }

  .about-stacked-num {
    font-size: 42px;
  }
}

/* ==========================================================================
   PRODUCT PAGE - SECTION 1: PRODUCT PAGE BANNER
   ========================================================================== */

.product-page-banner {
  position: relative;
  width: 100%;
  height: 400px;
  min-height: 400px;
  margin-top: var(--navbar-height-desktop);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.product-banner-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 27, 50, 0.72) 0%, rgba(10, 27, 50, 0.82) 100%);
  z-index: 2;
}

.product-banner-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}

.product-banner-title {
  font-family: var(--font-nav);
  font-size: 56px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  line-height: 1.2;
}

.product-banner-gold-line {
  width: 50px;
  height: 2.5px;
  background-color: var(--color-gold);
  border-radius: 2px;
  margin: 14px auto 16px auto;
}

.product-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.product-breadcrumb .breadcrumb-item {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
}

.product-breadcrumb .breadcrumb-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: rgba(255, 255, 255, 0.5);
  padding: 0 10px;
}

.product-breadcrumb .breadcrumb-item.active {
  color: var(--color-gold);
  font-weight: 500;
}

/* Banner Responsive */
@media (max-width: 991.98px) {
  .product-page-banner {
    height: 320px;
    min-height: 320px;
  }

  .product-banner-title {
    font-size: 44px;
  }

  .product-banner-gold-line {
    width: 44px;
    margin: 12px auto 14px auto;
  }

  .product-breadcrumb {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .product-page-banner {
    height: 260px;
    min-height: 260px;
  }

  .product-banner-title {
    font-size: 34px;
  }

  .product-banner-gold-line {
    width: 38px;
    height: 2px;
    margin: 10px auto 12px auto;
  }

  .product-breadcrumb {
    font-size: 13.5px;
  }
}

/* ==========================================================================
   PRODUCT PAGE - SECTION 2: ALL PRODUCTS SHOWCASE
   ========================================================================== */

.product-showcase-section {
  background-color: #F7F5F0;
  color: var(--color-text-main);
  padding: 100px 0;
  position: relative;
}

.product-showcase-header {
  margin-bottom: 55px;
}

.product-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-nav);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.product-showcase-eyebrow::before,
.product-showcase-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-gold);
}

.product-showcase-title {
  font-family: var(--font-nav);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  margin-bottom: 1rem;
}

.product-showcase-subtitle {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Product Card Grid & Card Styling */
.product-showcase-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(16, 39, 71, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.product-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(16, 39, 71, 0.12);
  border-color: rgba(200, 138, 10, 0.4);
}

/* Card Image Wrapper */
.product-card-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #edf2f7;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Card Body */
.product-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-family: var(--font-nav);
  font-size: 21px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.product-showcase-card:hover .product-card-title {
  color: var(--color-gold);
}

.product-card-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* View Details Button */
.btn-product-details {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-primary);
  border-radius: 6px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
  width: 100%;
}

.btn-product-details .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase-card:hover .btn-product-details {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
}

.product-showcase-card:hover .btn-product-details .btn-icon {
  transform: translateX(4px);
}

.btn-product-details:hover {
  background-color: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  color: #FFFFFF !important;
}

/* Responsive Showcase */
@media (max-width: 991.98px) {
  .product-showcase-section {
    padding: 75px 0;
  }

  .product-showcase-header {
    margin-bottom: 40px;
  }

  .product-card-img-wrap {
    height: 230px;
  }

  .product-card-body {
    padding: 22px 20px;
  }
}

@media (max-width: 575.98px) {
  .product-showcase-section {
    padding: 55px 0;
  }

  .product-card-img-wrap {
    height: 210px;
  }
}

/* ==========================================================================
   PRODUCT PAGE - SECTION 3: CALL TO ACTION (CTA)
   ========================================================================== */

.product-cta-section {
  position: relative;
  background: linear-gradient(135deg, #0a1b32 0%, #102747 50%, #0d223f 100%);
  color: #FFFFFF;
  padding: 85px 0;
  overflow: hidden;
}

/* Pure CSS decorative patterns and subtle glow */
.product-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 138, 10, 0.12) 0%, rgba(200, 138, 10, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.product-cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 138, 10, 0.08) 0%, rgba(200, 138, 10, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.product-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(200, 138, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 138, 10, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.product-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.product-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-cta-eyebrow::before,
.product-cta-eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background-color: var(--color-gold);
}

.product-cta-heading {
  font-family: var(--font-nav);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.22;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  margin-bottom: 1rem;
}

.product-cta-text {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 2.25rem auto;
}

/* Primary CTA Button */
.btn-product-cta {
  font-family: var(--font-nav);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  background-color: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: 6px;
  padding: 0.85rem 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(200, 138, 10, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-product-cta i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-product-cta:hover,
.btn-product-cta:focus-visible {
  background-color: transparent;
  border-color: var(--color-gold);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200, 138, 10, 0.45);
}

.btn-product-cta:hover i {
  transform: translateX(4px);
}

/* Responsive CTA */
@media (max-width: 991.98px) {
  .product-cta-section {
    padding: 70px 0;
  }
}

@media (max-width: 575.98px) {
  .product-cta-section {
    padding: 55px 0;
  }

  .btn-product-cta {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.5rem;
    font-size: 13.5px;
  }
}

/* ==========================================================================
   PLYWOOD & BOARDS & PVC BOARDS PAGE - BANNER STYLES
   ========================================================================== */

.plywood-page-banner,
.pvc-page-banner {
  position: relative;
  width: 100%;
  height: 400px;
  min-height: 400px;
  margin-top: var(--navbar-height-desktop, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary-dark, #071326);
}

.plywood-banner-img-container,
.pvc-banner-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.plywood-banner-img,
.pvc-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.plywood-banner-overlay,
.pvc-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(16, 39, 71, 0.6) 0%,
    rgba(7, 19, 38, 0.72) 100%
  );
  z-index: 2;
}

.plywood-banner-content,
.pvc-banner-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}

.plywood-banner-title,
.pvc-banner-title {
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: 54px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  line-height: 1.2;
  animation: bannerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pvc-banner-subtitle {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 10px auto 0 auto;
  line-height: 1.55;
  animation: bannerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.plywood-banner-gold-line,
.pvc-banner-gold-line {
  width: 50px;
  height: 2.5px;
  background-color: var(--color-gold, #C88A0A);
  border-radius: 2px;
  margin: 14px auto 16px auto;
  animation: bannerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.plywood-breadcrumb,
.pvc-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  animation: bannerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.plywood-breadcrumb .breadcrumb-item,
.pvc-breadcrumb .breadcrumb-item {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
}

.plywood-breadcrumb .breadcrumb-item a,
.pvc-breadcrumb .breadcrumb-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.25s ease;
}

.plywood-breadcrumb .breadcrumb-item a:hover,
.pvc-breadcrumb .breadcrumb-item a:hover {
  color: var(--color-gold, #C88A0A);
}

.plywood-breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.pvc-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: rgba(255, 255, 255, 0.55);
  padding: 0 10px;
}

.plywood-breadcrumb .breadcrumb-item.active,
.pvc-breadcrumb .breadcrumb-item.active {
  color: var(--color-gold, #C88A0A);
  font-weight: 500;
}

@keyframes bannerFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .plywood-page-banner,
  .pvc-page-banner {
    height: 330px;
    min-height: 330px;
    margin-top: var(--navbar-height-mobile, 70px);
  }

  .plywood-banner-title,
  .pvc-banner-title {
    font-size: 42px;
  }

  .pvc-banner-subtitle {
    font-size: 14.5px;
    max-width: 520px;
  }

  .plywood-banner-gold-line,
  .pvc-banner-gold-line {
    width: 44px;
    margin: 12px auto 14px auto;
  }

  .plywood-breadcrumb,
  .pvc-breadcrumb {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .plywood-page-banner,
  .pvc-page-banner {
    height: 270px;
    min-height: 270px;
  }

  .plywood-banner-title,
  .pvc-banner-title {
    font-size: 30px;
  }

  .pvc-banner-subtitle {
    font-size: 13px;
    margin: 8px auto 0 auto;
    padding: 0 10px;
  }

  .plywood-banner-gold-line,
  .pvc-banner-gold-line {
    width: 36px;
    height: 2px;
    margin: 10px auto 12px auto;
  }

  .plywood-breadcrumb,
  .pvc-breadcrumb {
    font-size: 13px;
  }

  .plywood-breadcrumb .breadcrumb-item + .breadcrumb-item::before,
  .pvc-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 6px;
  }
}

/* ==========================================================================
   PLYWOOD & BOARDS & PVC BOARDS - PRODUCT SHOWCASE STYLES
   ========================================================================== */

.plywood-showcase-section,
.pvc-showcase-section {
  background-color: #F7F5F0;
  position: relative;
}

.plywood-section-eyebrow {
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold, #C88A0A);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.plywood-section-title {
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary, #102747);
  letter-spacing: -0.3px;
  margin-bottom: 0;
}

.plywood-title-gold-line {
  width: 50px;
  height: 2.5px;
  background-color: var(--color-gold, #C88A0A);
  border-radius: 2px;
  margin: 12px auto 16px auto;
}

.plywood-section-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 1.65;
  color: #5A6B82;
  max-width: 680px;
}

/* --- Brand Selector Cards --- */
.brand-selector-wrapper {
  position: relative;
}

.brand-select-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 39, 71, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-select-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 138, 10, 0.4);
  box-shadow: 0 10px 25px rgba(16, 39, 71, 0.08);
}

.brand-select-card .brand-img-wrap {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background-color 0.3s ease;
}

.brand-select-card .brand-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-select-card .brand-name {
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary, #102747);
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

/* Active Brand Card State: Deep Navy + Gold Accent */
.brand-select-card.active {
  background: #0A192F;
  border-color: var(--color-gold, #C88A0A);
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.22), 0 0 0 1px var(--color-gold, #C88A0A);
  transform: translateY(-2px);
}

.brand-select-card.active .brand-img-wrap {
  background: #FFFFFF;
}

.brand-select-card.active .brand-img {
  filter: grayscale(0%);
}

.brand-select-card.active .brand-name {
  color: #FFFFFF;
  font-weight: 700;
}

.brand-select-card.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--color-gold, #C88A0A);
  border-radius: 3px 3px 0 0;
}

/* --- Vertical Stacked Selected-Brand Products Showcase --- */
.brand-products-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-product-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 39, 71, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 138, 10, 0.4);
  box-shadow: 0 18px 45px rgba(16, 39, 71, 0.1);
}

/* Alternating Layout on Desktop: Even items flip image and content */
@media (min-width: 992px) {
  .brand-product-card:nth-child(even) > .row {
    flex-direction: row-reverse;
  }
}

.brand-product-card .col-lg-5 {
  display: flex;
  flex-direction: column;
}

.product-card-img-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1 1 100%;
  overflow: hidden;
  background: #F8FAFC;
  padding: 0;
  margin: 0;
}

.product-card-img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img-stage .product-card-img,
.product-card-img-inner .product-card-img {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card-brand-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(10, 25, 47, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-gold, #C88A0A);
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(200, 138, 10, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.product-card-number {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Right / Content Area */
.bg-gold-subtle {
  background-color: rgba(200, 138, 10, 0.12) !important;
}

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

.text-black {
  color: #000000 !important;
}

.bg-navy-subtle {
  background-color: rgba(16, 39, 71, 0.08) !important;
}

.text-navy {
  color: var(--color-primary, #102747) !important;
}

.product-card-title {
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--color-primary, #102747);
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.product-card-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px;
  line-height: 1.65;
  color: #5A6B82;
}

/* --- Product Feature Specification Icons Row --- */
.product-feature-icons-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px 24px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.feature-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 95px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.feature-icon-item:hover {
  transform: translateY(-3px);
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 8px;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.feature-icon-item:hover .feature-icon-box {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: scale(1.08);
}

.feature-icon-img {
  max-width: 100%;
  max-height: 100%;
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.feature-icon-label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary, #102747);
  word-break: break-word;
  max-width: 100%;
}

@media (max-width: 576px) {
  .product-feature-icons-row {
    gap: 14px 16px;
    padding: 0;
    justify-content: flex-start;
  }
  .feature-icon-item {
    width: 78px;
  }
  .feature-icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 6px;
  }
  .feature-icon-img {
    width: 48px;
    height: 48px;
  }
  .feature-icon-label {
    font-size: 11px;
  }
}

/* PVC Specific Specification Pills */
.pvc-specs-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.pvc-spec-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary, #102747);
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 5px 12px;
  box-shadow: 0 2px 6px rgba(16, 39, 71, 0.03);
  transition: all 0.25s ease;
}

.pvc-spec-pill:hover {
  border-color: var(--color-gold, #C88A0A);
  transform: translateY(-1px);
}

/* Features Grid */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px 16px;
  background: #F8FAFC;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}

.feat-item {
  display: flex;
  flex-direction: column;
}

.feat-item .feat-lbl {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 11.5px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.feat-item .feat-val {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary, #102747);
}

/* Action Buttons */
.btn-showcase-enquire {
  background: var(--color-gold, #C88A0A);
  color: #FFFFFF;
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  border: 1px solid var(--color-gold, #C88A0A);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-showcase-enquire:hover {
  background: #A87108;
  color: #FFFFFF;
  border-color: #A87108;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 138, 10, 0.35);
}

.btn-showcase-knowmore {
  background: transparent;
  color: var(--color-primary, #102747);
  font-family: var(--font-nav, 'Montserrat', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-showcase-knowmore:hover {
  background: #F1F5F9;
  border-color: var(--color-primary, #102747);
  color: var(--color-primary, #102747);
}

/* Fade transitions when switching brands */
.fade-products-out {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fade-products-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .product-card-img-stage {
    min-height: 260px;
    height: 260px;
    padding: 0;
  }

  .product-card-img-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 10px;
  }
}

@media (max-width: 575.98px) {
  .brand-select-card {
    padding: 1rem 0.6rem;
  }

  .brand-select-card .brand-img-wrap {
    height: 44px;
  }

  .brand-select-card .brand-name {
    font-size: 13px;
  }

  .brand-product-card {
    border-radius: 16px;
  }

  .product-card-img-stage {
    min-height: 200px;
    height: 200px;
    padding: 0;
  }

  .product-card-img-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 8px;
  }

  .product-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-product-card .p-4 {
    padding: 1.5rem 1.25rem !important;
  }
}