/* ==========================================================================
   Blessons Enterprises - Modern Luxury Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors matching Blessons Red Logo & Luxury Steel Aesthetics */
  --brand-primary: #e62117;
  --brand-primary-hover: #c4180f;
  --brand-primary-light: rgba(230, 33, 23, 0.08);
  --brand-secondary: #0f172a;
  --brand-secondary-light: #1e293b;
  --brand-accent: #f59e0b;
  
  /* Neutral Palette */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-topbar: #090d16;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 20px 30px -5px rgba(230, 33, 23, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.06);

  /* Radius & Transitions */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Typography & Viewport Reset */
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: var(--text-dark);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none !important;
  transition: var(--transition);
}

/* Disable old clunky preloader if necessary */
.page-loader {
  display: none !important;
}

/* ==========================================================================
   Modern Top Bar
   ========================================================================== */
.modern-topbar {
  background-color: var(--bg-topbar);
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.modern-topbar a {
  color: #cbd5e1;
}

.modern-topbar a:hover {
  color: #ffffff;
}

.modern-topbar .topbar-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 18px;
}

.modern-topbar .topbar-info-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

.modern-topbar .topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.modern-topbar .badge-iso {
  background: rgba(230, 33, 23, 0.12);
  color: #ff6b6b;
  border: 1px solid rgba(230, 33, 23, 0.25);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Google Translate Widget Styling */
.goog-te-gadget-simple {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 2px 8px !important;
  border-radius: var(--radius-full) !important;
  font-size: 11px !important;
  color: #cbd5e1 !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
  color: #cbd5e1 !important;
  font-size: 11.5px !important;
}

.goog-te-gadget-simple img {
  display: none !important;
}

/* ==========================================================================
   Modern Main Header / Navbar (3-Column Layout: Left Logo, Center Nav, Right Actions)
   ========================================================================== */
.modern-header {
  background: #ffffff;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.modern-navbar-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.modern-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

/* 1. Left Column: Brand Logo */
.modern-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.modern-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.modern-brand:hover img {
  transform: scale(1.02);
}

/* 2. Middle Column: Nav Links (Centered) */
.modern-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  flex-wrap: nowrap;
}

.modern-nav-item {
  position: relative;
  white-space: nowrap;
}

.modern-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: #334155;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.1px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-nav-link:hover {
  color: var(--brand-primary);
  background: rgba(230, 33, 23, 0.05);
}

.modern-nav-item.active .modern-nav-link {
  color: var(--brand-primary);
  background: rgba(230, 33, 23, 0.08);
  font-weight: 700;
}

/* Dropdown Menu */
.modern-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
}

.modern-nav-item:hover .modern-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.modern-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.modern-dropdown-link:hover {
  background: rgba(230, 33, 23, 0.06);
  color: var(--brand-primary);
  padding-left: 18px;
}

/* 3. Right Column: Header Actions */
.modern-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

/* Sleek Search Bar */
.modern-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.modern-search-input {
  width: 175px;
  height: 40px;
  padding: 0 16px 0 38px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  background: #f8fafc;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-search-input::placeholder {
  color: #94a3b8;
}

.modern-search-input:focus {
  outline: none;
  width: 225px;
  background: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(230, 33, 23, 0.12);
}

.modern-search-icon {
  position: absolute;
  left: 13px;
  color: #94a3b8;
  pointer-events: none;
  transition: var(--transition);
}

.modern-search-box:focus-within .modern-search-icon {
  color: var(--brand-primary);
}

/* Live Search Autocomplete Dropdown */
.modern-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 16px 40px -6px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  z-index: 1050;
  display: none;
}

.modern-search-dropdown.show {
  display: block;
  animation: searchPopIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes searchPopIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.search-dropdown-header {
  padding: 10px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-dropdown-list {
  max-height: 360px;
  overflow-y: auto;
  padding: 4px 0;
}

.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none !important;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f8fafc;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover,
.search-dropdown-item.active {
  background: #f1f5f9;
}

.search-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  object-fit: contain;
  padding: 2px;
  flex-shrink: 0;
}

.search-item-info {
  flex: 1;
  min-width: 0;
}

.search-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 3px 0;
}

.search-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #64748b;
}

.search-item-sku {
  font-weight: 700;
  color: #e62117;
  background: #fef2f2;
  padding: 1px 6px;
  border-radius: 4px;
}

.search-dropdown-footer {
  padding: 10px 16px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.search-dropdown-footer a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.search-dropdown-footer a:hover {
  text-decoration: underline;
}

.search-dropdown-empty {
  padding: 24px 16px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

.search-dropdown-loading {
  padding: 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
}

/* Sleek Inquiry Basket Button */
.btn-inquiry-basket {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.btn-inquiry-basket:hover {
  border-color: #cbd5e1;
  color: var(--brand-primary);
  background: #f8fafc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.btn-inquiry-basket svg {
  color: #64748b;
  transition: var(--transition);
}

.btn-inquiry-basket:hover svg {
  color: var(--brand-primary);
}

.basket-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--brand-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  margin-left: 2px;
  box-shadow: 0 2px 5px rgba(230, 33, 23, 0.35);
}

/* Sleek Request Quote Button */
.btn-quote-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 20px;
  background: linear-gradient(135deg, #e62117 0%, #c4180f 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(230, 33, 23, 0.28);
  white-space: nowrap;
  letter-spacing: 0.1px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-quote-cta:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(230, 33, 23, 0.38);
  filter: brightness(1.04);
}

.btn-quote-cta svg {
  transition: transform 0.2s ease;
}

.btn-quote-cta:hover svg {
  transform: translateX(3px);
}

/* Mobile Toggle Button */
.modern-mobile-toggle {
  display: none;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: #0f172a;
  cursor: pointer;
  padding: 8px 10px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modern-mobile-toggle:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* Mobile Navigation Drawer */
.modern-mobile-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 68px);
  background: #ffffff;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border-bottom: 2px solid var(--border-light);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.modern-mobile-backdrop {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.modern-mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 6px 12px;
  margin: 16px 20px 12px;
}

.mobile-drawer-search svg {
  color: #94a3b8;
  flex-shrink: 0;
}

.mobile-drawer-search input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: #1e293b;
  outline: none;
}

.mobile-drawer-search button {
  background: var(--brand-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-drawer-nav {
  list-style: none;
  padding: 0 20px;
  margin: 0;
}

.mobile-drawer-nav > li {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-drawer-nav > li > a {
  display: block;
  padding: 13px 4px;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

.mobile-drawer-nav > li > a:hover,
.mobile-drawer-nav > li.active > a {
  color: var(--brand-primary);
}

.mobile-accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  cursor: pointer;
}

.mobile-accordion-head a {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  text-decoration: none !important;
}

.mobile-accordion-toggle {
  background: #f1f5f9;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mobile-accordion-item.open .mobile-accordion-toggle svg {
  transform: rotate(180deg);
}

.mobile-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 12px;
}

.mobile-accordion-item.open .mobile-accordion-body {
  max-height: 400px;
  overflow-y: auto;
  padding-bottom: 8px;
}

.mobile-subcat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #64748b;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: all 0.15s ease;
}

.mobile-subcat-link:hover {
  background: rgba(230, 33, 23, 0.05);
  color: var(--brand-primary);
  padding-left: 16px;
}

.mobile-drawer-footer {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
  margin-top: 12px;
}

.btn-mobile-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-primary);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
}

.btn-mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .modern-navbar-wrapper {
    padding: 0 16px;
  }
  .modern-navbar-container {
    gap: 8px;
  }
  .modern-brand img {
    height: 42px;
  }
  .modern-nav-menu {
    gap: 3px;
  }
  .modern-nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }
  .modern-header-actions {
    gap: 8px;
  }
  .modern-search-input {
    width: 130px;
    height: 36px;
    font-size: 12px;
    padding: 0 10px 0 32px;
  }
  .modern-search-input:focus {
    width: 155px;
  }
  .modern-search-icon {
    left: 10px;
    width: 14px;
    height: 14px;
  }
  .btn-inquiry-basket {
    padding: 7px 12px;
    font-size: 12.5px;
    gap: 5px;
  }
  .btn-quote-cta {
    padding: 0 14px;
    height: 36px;
    font-size: 12.5px;
    gap: 5px;
  }
}

@media (max-width: 991px) {
  .modern-topbar .topbar-info-item:not(:first-child) {
    display: none;
  }
  .modern-topbar .badge-iso {
    display: none;
  }
  .modern-search-box {
    display: none;
  }
  .modern-nav-menu {
    display: none;
  }
  .btn-quote-cta {
    display: none;
  }
  .modern-mobile-toggle {
    display: inline-flex;
  }
  .modern-mobile-drawer {
    display: block;
  }
  .modern-mobile-backdrop {
    display: block;
  }
  .basket-btn-label {
    display: none;
  }
  .btn-inquiry-basket {
    padding: 8px 12px;
  }
  .modern-brand img {
    height: 42px;
  }
}


/* ==========================================================================
   Modern Hero Slider & Carousel (Full-Bleed & Seamless)
   ========================================================================== */
.modern-hero-section {
  position: relative;
  background: #ffffff;
  margin-bottom: 0;
}

.modern-hero-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.modern-slider {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #0f172a;
}

.modern-slides-track {
  position: relative;
  width: 100%;
  height: clamp(350px, 36vw, 540px);
}

.modern-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transform: scale(1.01);
}

.modern-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.modern-slide .slide-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.modern-slide .hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

/* Slider Glassmorphism Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-arrow:hover {
  background: #e62117;
  border-color: #e62117;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(230, 33, 23, 0.4);
}

/* Indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.indicator-pill {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.indicator-pill.active {
  width: 24px;
  border-radius: 9999px;
  background: #e62117;
  box-shadow: 0 0 8px rgba(230, 33, 23, 0.8);
}

/* ==========================================================================
   Hero Features & Trust Badges Strip
   ========================================================================== */
.hero-features-bar {
  background: #ffffff;
  padding: 22px 0 16px;
  border-bottom: 1px solid #f1f5f9;
}

.hero-features-bar .container {
  max-width: 1440px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 15px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(230, 33, 23, 0.08);
  color: #e62117;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-card:hover .feature-icon-box {
  background: #e62117;
  color: #ffffff;
  transform: scale(1.06);
}

.feature-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
}

.feature-text p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* Remove old huge gap before categories */
.section-lg {
  padding-top: 40px !important;
  padding-bottom: 60px !important;
}

@media (max-width: 768px) {
  .modern-slides-track {
    height: 240px;
  }
  .slider-arrow {
    width: 34px;
    height: 34px;
  }
  .hero-features-bar {
    padding: 12px 0;
  }
}

/* ==========================================================================
   Modern Categories Showcase Section (Grand, Big & Attractive Cards)
   ========================================================================== */
.modern-categories-section {
  padding: 80px 0 90px;
  background: #ffffff;
}

.categories-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 28px;
}

.modern-section-header {
  margin-bottom: 50px;
}

.modern-section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(230, 33, 23, 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.modern-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.modern-section-desc {
  font-size: 15.5px;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto 18px auto;
  line-height: 1.55;
}

.section-title-line {
  width: 54px;
  height: 3.5px;
  background: var(--brand-primary);
  border-radius: var(--radius-full);
  margin: 0 auto;
}

/* ==========================================================================
   Categories Showcase: Option 3 Bento Layout (Flagship Hero + 2x2 Grid)
   ========================================================================== */
.categories-bento-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1.22fr !important;
  gap: 24px !important;
  align-items: stretch !important;
  width: 100% !important;
  margin: 0 auto;
}

.cat-bento-hero {
  display: flex !important;
  height: 100% !important;
  width: 100% !important;
}

.bento-hero-card {
  height: 100% !important;
  min-height: 600px;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.hero-gradient-overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.25) 0%,
    rgba(15, 23, 42, 0.05) 30%,
    rgba(15, 23, 42, 0.65) 65%,
    rgba(15, 23, 42, 0.97) 100%
  ) !important;
}

.hero-badge-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(230, 33, 23, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(230, 33, 23, 0.4);
}

.hero-card-content {
  padding: 30px 28px !important;
}

.hero-main-title {
  font-size: 30px !important;
  font-weight: 800 !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.2 !important;
}

.hero-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-tag-item {
  font-size: 12px;
  font-weight: 600;
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.bento-hero-card:hover .hero-tag-item {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-action-btn {
  padding: 12px 20px !important;
}

.hero-action-btn .action-text {
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* Right: 2x2 Subgrid */
.cat-bento-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  height: 100% !important;
  width: 100% !important;
}

.bento-grid-card {
  height: 100% !important;
  min-height: 260px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.bento-grid-card .grand-category-overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.25) 0%,
    rgba(15, 23, 42, 0.05) 32%,
    rgba(15, 23, 42, 0.65) 66%,
    rgba(15, 23, 42, 0.97) 100%
  ) !important;
}

.grid-card-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 11px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
}

.grid-card-content {
  padding: 18px 20px !important;
}

.grid-card-title {
  font-size: 20px !important;
  font-weight: 800 !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.25 !important;
}

.grid-action-btn {
  padding: 8px 14px !important;
}

.grid-action-btn .action-text {
  font-size: 12.5px !important;
}

.grid-action-btn .action-arrow-btn {
  width: 24px !important;
  height: 24px !important;
}

/* Laptops & Tablets (768px to 1199.98px): Stack Hero on Top, 2x2 underneath */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .categories-bento-wrapper {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .bento-hero-card {
    min-height: 440px !important;
    height: 440px !important;
  }
  .cat-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
    gap: 20px !important;
  }
  .bento-grid-card {
    min-height: 340px !important;
    height: 340px !important;
  }
}

/* Mobile (< 768px): 1 Column Clean Stack */
@media (max-width: 767.98px) {
  .categories-bento-wrapper {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .bento-hero-card {
    min-height: 460px !important;
    height: 460px !important;
  }
  .hero-card-content {
    padding: 24px 20px !important;
  }
  .hero-main-title {
    font-size: 24px !important;
  }
  .cat-bento-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 16px !important;
  }
  .bento-grid-card {
    min-height: 340px !important;
    height: 340px !important;
  }
}

/* Grand Category Card (Large, Clean, Attractive) */
.grand-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.grand-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -10px rgba(15, 23, 42, 0.25);
  border-color: rgba(230, 33, 23, 0.4);
}

/* Background Image Frame */
.grand-category-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #0f172a;
}

.grand-category-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.grand-category-card:hover .grand-category-bg img {
  transform: scale(1.05);
}

/* Smooth Multilayer Gradient Overlay */
.grand-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.3) 0%,
    rgba(15, 23, 42, 0.1) 30%,
    rgba(15, 23, 42, 0.75) 65%,
    rgba(15, 23, 42, 0.98) 100%
  );
  transition: opacity 0.3s ease;
}

/* Top Strip: Number & Tag */
.grand-card-top {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-index-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

.category-quality-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(230, 33, 23, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(230, 33, 23, 0.35);
}

/* Bottom Content Container */
.grand-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
  color: #ffffff;
}

.category-label-accent {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f87171;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.grand-category-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 8px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.grand-category-card:hover .grand-category-title {
  color: #ffffff !important;
}

.grand-category-text {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.45;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Explore Action Row */
.grand-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-text {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.action-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.grand-category-card:hover .grand-card-action {
  background: #e62117;
  border-color: #e62117;
  box-shadow: 0 6px 18px rgba(230, 33, 23, 0.45);
}

.grand-category-card:hover .action-arrow-btn {
  transform: translateX(4px);
  background: #ffffff;
  color: #e62117;
}

/* Bottom Glow Accent Bar */
.card-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}

.grand-category-card:hover .card-accent-bar {
  transform: scaleX(1);
}

/* Bottom CTA Button (Standout Luxury Design) */
.categories-bottom-action {
  margin-top: 55px !important;
  clear: both;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-all-categories {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a !important;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  letter-spacing: 0.1px;
}

.btn-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f1f5f9;
  color: #0f172a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.btn-all-categories:hover {
  background: #0f172a;
  color: #ffffff !important;
  border-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -4px rgba(15, 23, 42, 0.3);
}

.btn-all-categories:hover .btn-arrow-circle {
  background: var(--brand-primary);
  color: #ffffff;
  transform: translateX(3px);
}

/* ==========================================================================
   Modern About Us / Company Overview Section
   ========================================================================== */
.modern-about-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.modern-about-media {
  position: relative;
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.modern-about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.12);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.modern-about-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-about-img-frame:hover img {
  transform: scale(1.03);
}

/* Floating Experience Badge */
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.badge-number {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Content Column */
.modern-about-content {
  padding-left: 20px;
}

.about-headline {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin: 14px 0 18px 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-lead-text {
  font-size: 15.5px;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 500;
}

.about-sub-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 26px;
}

/* Feature Checkpoints Grid */
.about-checkpoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.about-checkpoint-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  transition: var(--transition);
}

.about-checkpoint-item:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-checkpoint-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* Action Buttons Group */
.about-actions-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #c4180f 100%);
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(230, 33, 23, 0.28);
  transition: all 0.25s ease;
  text-decoration: none !important;
  border: none;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(230, 33, 23, 0.38);
  filter: brightness(1.05);
}

.btn-secondary-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: #ffffff;
  color: #0f172a !important;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.btn-secondary-soft:hover {
  background: #0f172a;
  color: #ffffff !important;
  border-color: #0f172a;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .modern-about-media {
    max-width: 380px;
    margin: 0 auto;
  }
  .modern-about-content {
    padding-left: 0;
    margin-top: 30px;
  }
  .about-experience-badge {
    bottom: -15px;
    right: 15px;
    padding: 12px 16px;
  }
}

/* ==========================================================================
   Modern Featured Products Section (Clean, Attractive 4-Card Row)
   ========================================================================== */
.modern-featured-section {
  padding: 80px 0 90px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.featured-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 28px;
}

.featured-products-row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -8px !important;
  margin-right: -8px !important;
}

@media (min-width: 992px) {
  .featured-products-row {
    margin: -12px !important;
  }
  .featured-products-row > [class*="col-"] {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
    padding: 12px !important;
  }
}

@media (max-width: 991px) {
  .featured-container {
    padding: 0 12px !important;
  }
  .featured-products-row > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }
}

/* Luxury Product Card (Studio Canvas & Attractive UI) */
.luxury-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.luxury-product-card:hover {
  transform: translateY(-8px);
  border-color: #cbd5e1;
  box-shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.14);
}

/* Studio Canvas (Pure White, Full Fit) */
.product-canvas-link {
  display: block;
  text-decoration: none !important;
  padding: 0;
}

.product-canvas {
  position: relative;
  width: 100%;
  height: 230px;
  background: #ffffff !important;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid #f1f5f9;
}

.product-img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-sku-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Product Body & Details */
.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px 0;
  line-height: 1.35;
  flex: 1;
}

.product-card-title a {
  color: #0f172a;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.product-card-title a:hover {
  color: var(--brand-primary);
}

/* Actions Row */
.product-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.btn-product-spec {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #f8fafc;
  color: #334155 !important;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.btn-product-spec:hover {
  background: #ffffff;
  color: var(--brand-primary) !important;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-product-inquire-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  background: linear-gradient(135deg, #e62117 0%, #c4180f 100%);
  color: #ffffff !important;
  border: none;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(230, 33, 23, 0.28);
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.btn-product-inquire-cta:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 8px 18px rgba(230, 33, 23, 0.38);
  filter: brightness(1.05);
}

/* Bottom Action */
.featured-bottom-action {
  margin-top: 55px !important;
  clear: both;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-all-products {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a !important;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  letter-spacing: 0.1px;
}

.btn-all-products:hover {
  background: #0f172a;
  color: #ffffff !important;
  border-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -4px rgba(15, 23, 42, 0.25);
}

.btn-all-products:hover .btn-arrow-circle {
  background: var(--brand-primary);
  color: #ffffff;
  transform: translateX(3px);
}

/* ==========================================================================
   Modern Pre-Footer B2B Call-to-Action Banner
   ========================================================================== */
.modern-cta-banner {
  padding: 0 0 60px 0;
  background: #ffffff;
  position: relative;
}

.cta-banner-card {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(15, 23, 42, 0.28) 100%), url('../images/bottom.jpg') no-repeat center center / cover;
  border-radius: 24px;
  padding: 54px 46px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 33, 23, 0.15) 0%, rgba(230, 33, 23, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-subtitle-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff6b6b;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.cta-headline {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.cta-lead-text {
  font-size: 14.5px;
  color: #f1f5f9;
  margin: 0;
  line-height: 1.5;
  max-width: 620px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.cta-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #ba150d 100%);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(230, 33, 23, 0.35);
  transition: all 0.25s ease;
  text-decoration: none !important;
  width: 100%;
  max-width: 250px;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 33, 23, 0.45);
  filter: brightness(1.05);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
  text-decoration: none !important;
  width: 100%;
  max-width: 250px;
}

.btn-cta-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 991px) {
  .cta-actions-stack {
    align-items: center;
    margin-top: 20px;
  }
}

/* ==========================================================================
   Modern Main 4-Column Dark Footer
   ========================================================================== */
.modern-footer {
  background: #0b1120;
  color: #94a3b8;
  padding: 70px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main-row {
  display: flex !important;
  flex-wrap: wrap !important;
}

@media (min-width: 992px) {
  .footer-col-brand {
    flex: 0 0 35% !important;
    max-width: 35% !important;
  }
  .footer-col-links {
    flex: 0 0 17% !important;
    max-width: 17% !important;
  }
  .footer-col-products {
    flex: 0 0 23% !important;
    max-width: 23% !important;
  }
  .footer-col-contact {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .footer-col-brand {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 24px;
  }
  .footer-col-links {
    flex: 0 0 30% !important;
    max-width: 30% !important;
  }
  .footer-col-products {
    flex: 0 0 35% !important;
    max-width: 35% !important;
  }
  .footer-col-contact {
    flex: 0 0 35% !important;
    max-width: 35% !important;
  }
}

@media (max-width: 767px) {
  .footer-col-brand {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 24px;
  }
  .footer-col-links {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 24px;
  }
  .footer-col-products {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 24px;
  }
  .footer-col-contact {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.footer-brand-widget {
  padding-right: 20px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-about-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* Footer Direct Certificate Images */
.footer-cert-images-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cert-img-link {
  display: inline-block;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-direct-img {
  max-height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}

.cert-img-link:hover .cert-direct-img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Footer Widget Columns */
.footer-widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: var(--radius-full);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list li a {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: none !important;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-nav-list li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Footer Contact Details */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.45;
}

.contact-entry svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-entry a {
  color: #94a3b8;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.contact-entry a:hover {
  color: #ffffff;
}

.footer-flag-box {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-block;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #060913;
}

.copyright-text {
  font-size: 13px;
  color: #64748b;
}

.copyright-text strong {
  color: #cbd5e1;
}

.footer-sub-note {
  font-size: 12.5px;
  color: #475569;
}

/* Scroll To Top Button */
.modern-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--brand-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 18px rgba(230, 33, 23, 0.4);
}

.modern-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modern-scroll-top:hover {
  background: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.3);
}

/* ==========================================================================
   Modern Inner Page Template & About Us Section
   ========================================================================== */
.modern-page-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
  padding: 50px 0 54px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.modern-page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(230, 33, 23, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.modern-breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
}

.modern-breadcrumb-nav .breadcrumb-item a {
  color: #94a3b8;
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.modern-breadcrumb-nav .breadcrumb-item a:hover {
  color: var(--brand-primary);
}

.modern-breadcrumb-nav .breadcrumb-item.active {
  color: #cbd5e1;
  font-size: 13.5px;
  font-weight: 600;
}

.modern-breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: #64748b;
  content: "›";
  font-size: 15px;
  padding: 0 8px;
}

.modern-page-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.modern-page-subtitle {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

/* Content Section Layout */
.modern-content-section {
  padding: 70px 0 80px;
  background: #ffffff;
}

.content-narrative-card {
  padding-right: 20px;
}

.content-heading {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 12px 0 20px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.content-formatted-text p {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Quality & Mission Pillars */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.pillar-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.pillar-box:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.08);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(230, 33, 23, 0.08);
  color: var(--brand-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-info h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 3px 0;
}

.pillar-info p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.content-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Sidebar Showcase */
.sidebar-media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.15);
  border: 1px solid #e2e8f0;
  max-width: 440px;
  margin: 0 auto;
}

.sidebar-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.media-overlay-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #0f172a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}

.badge-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbd5e1;
  line-height: 1.25;
}

/* Manufacturing Highlights Fact Card */
.sidebar-facts-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.facts-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  margin-bottom: 12px;
  line-height: 1.45;
}

.fact-bullet {
  color: var(--brand-primary);
  font-weight: 800;
  flex-shrink: 0;
}

/* Stats Counter Strip */
.about-stats-strip {
  background: #0f172a;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stats-strip.stats-strip-white {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.stat-counter-box {
  padding: 10px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-stats-strip.stats-strip-white .stat-label {
  color: #475569;
  font-weight: 700;
}

@media (max-width: 991px) {
  .content-narrative-card {
    padding-right: 0;
  }
}

/* ==========================================================================
   Company Profile Page Styles
   ========================================================================== */
.profile-highlight-banner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.stat-icon-circ {
  width: 46px;
  height: 46px;
  background: rgba(230, 33, 23, 0.08);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-stat-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.highlight-stat-item p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.capability-grid-row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -14px !important;
  margin-right: -14px !important;
}

.capability-grid-row > [class*="col-"] {
  display: flex !important;
  flex-direction: column !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
  margin-bottom: 28px !important;
}

.capability-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-shadow: 0 4px 15px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.capability-feature-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 30px -4px rgba(15, 23, 42, 0.1);
}

.cap-number {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: rgba(230, 33, 23, 0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cap-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.cap-desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

.profile-cta-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 48px 32px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px !important;
}

.profile-cta-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.profile-cta-card p {
  font-size: 14.5px;
  color: #cbd5e1;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==========================================================================
   Contact Us Page Styles
   ========================================================================== */
.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 15px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 25px -4px rgba(15, 23, 42, 0.08);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(230, 33, 23, 0.08);
  color: var(--brand-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-info-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.contact-info-card p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.contact-info-card a {
  color: #334155;
  text-decoration: none !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: var(--brand-primary);
}

.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 38px 32px;
  box-shadow: 0 8px 25px -4px rgba(15, 23, 42, 0.06);
}

.form-label-custom {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-control-custom:focus {
  background: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(230, 33, 23, 0.12);
}

.contact-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.proprietor-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 6px 20px -2px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0 !important;
}

.proprietor-img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #edf2f7;
}

.proprietor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proprietor-role {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-primary);
  letter-spacing: 0.5px;
}

.proprietor-name {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 2px 0 6px 0;
}

.proprietor-bio {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 12px;
}

.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.btn-whatsapp-direct:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.map-embed-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px -2px rgba(15, 23, 42, 0.06);
  margin-top: 0 !important;
}

/* ==========================================================================
   Wholesale Inquiry Basket & Quotation Confirmation Styles
   ========================================================================== */
.basket-main-section {
  padding: 50px 0 90px;
  background: #f8fafc;
}

.basket-empty-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  max-width: 720px;
  margin: 0 auto;
}

.empty-basket-icon-circ {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fee2e2;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 14px rgba(230, 33, 23, 0.15);
}

.empty-basket-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.empty-basket-desc {
  font-size: 14.5px;
  color: #64748b;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.empty-shortcuts-box {
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.shortcuts-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #94a3b8;
  display: block;
  margin-bottom: 12px;
}

.shortcuts-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.category-pill-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.category-pill-link:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Active Basket Toolbar */
.basket-toolbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.basket-section-heading {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.btn-continue-shopping {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.btn-continue-shopping:hover {
  color: var(--brand-primary);
}

.basket-total-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid #fee2e2;
  padding: 8px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(230, 33, 23, 0.06);
}

.basket-total-highlight-pill .highlight-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-primary);
}

.basket-total-highlight-pill .highlight-label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Product Cards in Basket */
.basket-items-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.basket-product-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  gap: 18px;
  transition: all 0.25s ease;
}

.basket-product-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.basket-card-thumb {
  width: 80px;
  height: 80px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.basket-card-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.basket-card-info {
  flex: 1;
  min-width: 0;
}

.basket-sku-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  font-family: monospace;
  color: var(--brand-primary);
  background: #fee2e2;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.basket-prod-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.basket-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.meta-tag {
  font-size: 11px;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.basket-card-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.basket-stepper {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 2px;
}

.stepper-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stepper-btn:hover {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.stepper-input {
  width: 48px;
  height: 32px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.btn-remove-basket {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #fee2e2;
  background: #fef2f2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.btn-remove-basket:hover {
  background: #ef4444;
  color: #ffffff;
}

/* WhatsApp Option Banner */
.basket-whatsapp-banner {
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
  border-radius: 18px;
  padding: 22px 24px;
  margin-top: 24px;
}

.whatsapp-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.whatsapp-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
}

.whatsapp-icon-circ {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.whatsapp-banner-text {
  flex: 1 1 auto;
}

.whatsapp-banner-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #065f46;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.whatsapp-banner-desc {
  font-size: 13px;
  color: #047857;
  margin: 0;
  line-height: 1.45;
}

.whatsapp-banner-action {
  flex-shrink: 0;
}

.btn-whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}

.btn-whatsapp-action:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

@media (max-width: 768px) {
  .whatsapp-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .whatsapp-banner-action {
    width: 100%;
  }
  .btn-whatsapp-action {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}

/* Right Column Formal Quotation Form */
.luxury-quote-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.quote-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 10px 0 6px;
}

.quote-card-subtitle {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Confirmation Success Layout */
.confirmation-card-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 36px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  max-width: 680px;
  margin: 0 auto;
}

.confirmation-summary-grid {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 24px 0;
  text-align: left;
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13.5px;
}

.confirmation-row:last-child {
  border-bottom: none;
}

.confirmation-row-label {
  color: #64748b;
  font-weight: 600;
}

.confirmation-row-value {
  color: #0f172a;
  font-weight: 700;
  text-align: right;
}









/* ==========================================================================
   Modern Product Catalog & Sidebar Styles
   ========================================================================== */
.catalog-fluid-container {
  width: 100% !important;
  max-width: 1720px !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 1200px) {
  .col-xl-2 {
    width: 18.5% !important;
  }
  .col-xl-10 {
    width: 81.5% !important;
  }
  .col-xl-3, .col-xxl-3 {
    width: 25% !important;
  }
}

.catalog-main-section {
  background: #ffffff;
  padding: 40px 0 80px;
}

.catalog-sidebar-sticky {
  position: sticky;
  top: 90px;
}

.catalog-category-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 4px 15px -2px rgba(15, 23, 42, 0.04);
}

.category-card-header {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #f1f5f9;
  margin-bottom: 16px;
}

.category-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.catalog-accordion-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-nav-group {
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.category-main-item {
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.category-main-item:hover {
  background: #f8fafc;
}

.category-main-link {
  font-size: 14.5px;
  font-weight: 700;
  color: #334155;
  text-decoration: none !important;
  flex: 1;
  transition: color 0.2s ease;
}

.category-main-link:hover,
.category-main-link.is-active {
  color: var(--brand-primary);
}

.btn-accordion-toggle {
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, color 0.2s ease;
}

.btn-accordion-toggle:hover {
  color: var(--brand-primary);
}

.btn-accordion-toggle.expanded {
  transform: rotate(180deg);
  color: var(--brand-primary);
}

.category-sub-menu {
  padding-left: 18px;
  padding-top: 4px;
  padding-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #64748b;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.category-sub-link .sub-dot {
  font-size: 8px;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.category-sub-link:hover,
.category-sub-link.is-active {
  color: var(--brand-primary);
  background: #fff5f5;
  font-weight: 600;
}

.category-sub-link:hover .sub-dot,
.category-sub-link.is-active .sub-dot {
  color: var(--brand-primary);
}

/* Sidebar OEM Card */
.sidebar-support-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 24px 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px -4px rgba(15, 23, 42, 0.12);
  margin-top: 28px !important;
}

.support-icon-circ {
  width: 44px;
  height: 44px;
  background: rgba(230, 33, 23, 0.15);
  color: var(--brand-primary);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230, 33, 23, 0.3);
}

.support-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.sidebar-support-card small {
  color: #94a3b8;
  font-size: 11.5px;
}

.support-card-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.45;
  margin-bottom: 16px;
}

.btn-sidebar-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.btn-sidebar-quote:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}

/* Catalog Toolbar */
.catalog-top-toolbar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 20px;
}

.toolbar-stats-text {
  font-size: 14px;
  color: #475569;
}

.badge-catalog-active {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-primary);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

/* Product Cards */
.catalog-grid-row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -12px !important;
  margin-right: -12px !important;
}

.catalog-col {
  display: flex !important;
  flex-direction: column !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.modern-catalog-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 15px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-catalog-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 30px -4px rgba(15, 23, 42, 0.1);
}

.catalog-img-stage {
  height: 220px;
  background: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

.catalog-prod-photo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.modern-catalog-card:hover .catalog-prod-photo {
  transform: scale(1.06);
}

.catalog-sku-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.catalog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.catalog-card-title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  min-height: 44px;
}

.catalog-card-title a {
  color: #0f172a;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.catalog-card-title a:hover {
  color: var(--brand-primary);
}

.catalog-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-catalog-inquire {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand-primary);
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.btn-catalog-inquire:hover {
  background: #cc1b12;
  transform: translateY(-1px);
}

.btn-catalog-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #334155 !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.btn-catalog-details:hover {
  background: #0f172a;
  color: #ffffff !important;
  border-color: #0f172a;
}

/* Modern Pagination */
.modern-pagination {
  display: inline-flex;
  gap: 6px;
  padding: 0;
  list-style: none;
}

.modern-pagination .page-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.modern-pagination .page-item.active .page-link {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(230, 33, 23, 0.3);
}

.modern-pagination .page-link:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.modern-pagination .page-item.active .page-link:hover {
  background: #cc1b12;
  color: #ffffff;
}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */
.product-detail-section {
  background: #ffffff;
  padding: 60px 0 80px;
}

.detail-gallery-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

.detail-main-stage {
  height: 380px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #f1f5f9;
}

.detail-photo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.detail-sku-floating {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.detail-thumbnail-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 6px;
}

.thumb-btn {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-btn.active,
.thumb-btn:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px rgba(230, 33, 23, 0.2);
}

/* Detail B2B Badges Grid */
.detail-b2b-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.b2b-badge-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
}

.b2b-badge-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* Detail Info Card */
.detail-info-card {
  padding-left: 10px;
}

.detail-category-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-primary);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.detail-product-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.badge-production-live {
  font-size: 11px;
  font-weight: 700;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.detail-desc-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.desc-heading {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.desc-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Specs Table */
.detail-specs-table {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 13.5px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: #64748b;
  font-weight: 600;
}

.spec-value {
  color: #0f172a;
  font-weight: 700;
  text-align: right;
}

.btn-detail-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-detail-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

@media (max-width: 991px) {
  .sidebar-media-frame {
    max-width: 380px;
    margin: 0 auto;
  }
  .sidebar-facts-card {
    max-width: 380px;
    margin: 24px auto 0 auto;
  }
  .detail-info-card {
    padding-left: 0;
    margin-top: 32px;
  }
  .detail-main-stage {
    height: 300px;
  }
  .sidebar-support-card {
    display: none !important;
  }
  .basket-meta-tags {
    display: none !important;
  }
  .product-detail-section #catalog_sidebar_wrapper {
    display: none !important;
  }
  .catalog-grid-row,
  .featured-products-row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -6px !important;
    margin-right: -6px !important;
  }
  .catalog-col,
  .featured-col,
  .featured-products-row > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }
  .luxury-product-card,
  .modern-catalog-card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    margin-bottom: 6px;
  }
  .product-canvas,
  .catalog-img-stage {
    height: 135px !important;
    border-radius: 12px 12px 0 0;
    padding: 6px !important;
  }
  .product-img-wrapper img,
  .catalog-prod-photo {
    max-height: 120px !important;
  }
  .product-sku-pill,
  .catalog-sku-badge {
    top: 6px !important;
    left: 6px !important;
    font-size: 8.5px !important;
    padding: 2px 5px !important;
    border-radius: 4px !important;
  }
  .product-card-body,
  .catalog-card-body {
    padding: 8px 8px 10px !important;
  }
  .product-card-title,
  .catalog-card-title {
    font-size: 12px !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
    min-height: 32px !important;
  }
  .product-card-actions,
  .catalog-card-actions {
    gap: 4px !important;
    margin-top: 4px !important;
    display: flex !important;
  }
  .btn-product-spec,
  .btn-catalog-details {
    height: 28px !important;
    font-size: 10.5px !important;
    padding: 0 4px !important;
    border-radius: 6px !important;
    flex: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .btn-product-inquire-cta,
  .btn-catalog-inquire {
    height: 28px !important;
    font-size: 10.5px !important;
    padding: 0 4px !important;
    border-radius: 6px !important;
    gap: 3px !important;
    flex: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .btn-product-inquire-cta svg,
  .btn-catalog-inquire svg,
  .btn-catalog-details svg {
    width: 11px !important;
    height: 11px !important;
  }
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .basket-modern-table {
    min-width: 560px;
  }
  .modern-page-hero {
    padding: 36px 0 32px;
  }
  .modern-page-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .modern-about-media {
    max-width: 300px;
    margin: 0 auto;
  }
  .sidebar-media-frame {
    max-width: 300px;
    margin: 0 auto;
  }
  .sidebar-facts-card {
    max-width: 300px;
    margin: 20px auto 0 auto;
  }
  .detail-main-stage {
    height: 250px;
  }
  .spec-row {
    padding: 10px 14px;
    font-size: 12.5px;
  }
  .detail-actions-row {
    flex-direction: column;
    gap: 10px;
  }
  .detail-actions-row .btn-detail-basket,
  .detail-actions-row .btn-detail-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .grand-category-card {
    height: 280px;
  }
  .basket-product-card {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 14px;
  }
  .basket-card-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    padding: 4px;
  }
  .basket-prod-title {
    font-size: 13.5px;
    margin-bottom: 2px;
  }
  .basket-card-controls {
    gap: 8px;
  }
  .stepper-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .stepper-input {
    width: 36px;
    height: 26px;
    font-size: 12.5px;
  }
  .btn-remove-basket {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .modern-footer {
    padding: 40px 0 0;
  }
}


/* ==========================================================================
   24. Modern Branded Page Preloader (Mosaic Matrix)
   ========================================================================== */
#page-loader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background: #ffffff;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-loader.ending {
  display: none !important;
}

.mosaic-preloader {
  display: grid;
  grid-template-columns: repeat(4, 9px);
  grid-template-rows: repeat(4, 9px);
  gap: 3px;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-content: center;
}

.mosaic-tile {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  animation: mosaicSquareWave 1.3s ease-in-out infinite both;
}

.mosaic-tile.tile-pink {
  background-color: #f76872;
}

.mosaic-tile.tile-plum {
  background-color: #633e6e;
}

.mosaic-tile.delay-0 { animation-delay: 0s; }
.mosaic-tile.delay-1 { animation-delay: 0.1s; }
.mosaic-tile.delay-2 { animation-delay: 0.2s; }
.mosaic-tile.delay-3 { animation-delay: 0.3s; }
.mosaic-tile.delay-4 { animation-delay: 0.4s; }
.mosaic-tile.delay-5 { animation-delay: 0.5s; }
.mosaic-tile.delay-6 { animation-delay: 0.6s; }

@keyframes mosaicSquareWave {
  0%, 70%, 100% {
    transform: scale(0.18);
    opacity: 0.25;
  }
  35% {
    transform: scale(1);
    opacity: 1;
  }
}



