/*
 * Medstore Healthcare - WoodMart Exact Recreation Stylesheet
 * PRIMARY COLOR: #1e3a8a — Exact match to egyptmedicalstores.com
 * Footer: #0f172a — Exact match
 * Company: Medstore Healthcare (ميدستور للرعاية الصحية)
 * Riyadh, Saudi Arabia | CR: 1010455099
 */

@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@300;400;500;700;900&family=Inter:wght@400;500;600;700&family=Cairo:wght@300;400;500;600;700;800;900&family=Alexandria:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* EXACT Colors from egyptmedicalstores.com source CSS */
  --wd-primary-color: #1e3a8a; /* Deep Royal Navy from Logo */
  --wd-primary-hover: #2563eb;
  --wd-alternative-color: #dc2626; /* Pulse Red from Logo */
  --wd-footer-bg: #0f172a; /* Deep Navy Slate */
  --wd-header-banner-bg: #1e3a8a;
  --wd-dark-color: #242424;
  --wd-text-color: #555555;
  --wd-heading-color: #242424;
  --wd-light-bg: #f9f9f9;
  --wd-border-color: #e9e9e9;
  --wd-star-color: #eabe12;
  /* Fonts matching reference */
  --wd-font-main: 'Yantramanav', 'Cairo', 'Inter', sans-serif;
  --wd-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --wd-shadow-card: 0 0 10px rgba(0, 0, 0, 0.05);
  --wd-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
  --wd-brd-radius: 0px;
  --btn-accented-brd-radius: 0px;
  --wd-container-w: 1222px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--wd-font-main);
  color: var(--wd-text-color);
  background-color: #ffffff;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  overflow-x: hidden;
  background-color: #f9f9f9;
}

[dir="ltr"] body {
  font-family: 'Inter', 'Yantramanav', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--wd-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--wd-container-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ==========================================================================
   1. HEADER BANNER (Top colored bar — EXACT #1e3a8a like reference)
   ========================================================================== */

.top-notice-bar {
  background-color: var(--wd-header-banner-bg); /* Exact reference color */
  padding: 8px 0;
  font-size: 12px;
  color: #ffffff;
}

.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-notice-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-notice-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 12px;
}

.top-notice-item a {
  color: #ffffff;
}

.top-notice-item i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.lang-toggle-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--wd-transition);
}

.lang-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   2. WOODMART MAIN HEADER (whb-header — White, sticky)
   ========================================================================== */

.whb-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #ffffff;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.06);
  transition: var(--wd-transition);
}

.whb-main-header {
  padding: 14px 0;
}

.whb-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Site Logo */
.site-logo {
  display: flex;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a 0%, rgb(37, 177, 136) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  flex-shrink: 0;
}

.logo-text-col {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--wd-primary-color);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.logo-title span {
  color: #dc2626; /* Pulse red from the logo */
}

.logo-subtitle {
  font-size: 10.5px;
  color: #999999;
  font-weight: 600;
  line-height: 1.3;
}

/* Main Navigation Menu — Exact WoodMart style */
.wd-header-main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.wd-nav-main {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.wd-nav-main > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--wd-transition);
  position: relative;
  white-space: nowrap;
}

.wd-nav-main > li.active > a,
.wd-nav-main > li > a:hover {
  color: var(--wd-primary-color);
}

/* Dropdown Menu for Categories */
.menu-has-dropdown {
  position: relative;
}

.wd-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1a1a1a; /* Dark dropdown like reference */
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--wd-transition);
  z-index: 100;
}

[dir="ltr"] .wd-dropdown-menu {
  right: auto;
  left: 0;
}

.menu-has-dropdown:hover .wd-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wd-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #cccccc;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--wd-transition);
}

.wd-dropdown-menu a:hover {
  background: rgba(30, 58, 138, 0.15);
  color: var(--wd-primary-color);
  padding-right: 26px;
}

[dir="ltr"] .wd-dropdown-menu a:hover {
  padding-right: 20px;
  padding-left: 26px;
}

/* Header Tools on Left */
.whb-header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wd-header-search-btn,
.wd-header-rfq-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 3px;
  transition: var(--wd-transition);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.wd-header-search-btn:hover,
.wd-header-rfq-btn:hover {
  color: var(--wd-primary-color);
}

.wd-cart-badge {
  background: var(--wd-primary-color);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* WhatsApp Button in Header */
.wd-header-wa-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  transition: var(--wd-transition);
}

.wd-header-wa-btn:hover {
  background: #1ebc59;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.mobile-nav-icon {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  color: #333333;
  cursor: pointer;
}

/* ==========================================================================
   3. HERO SLIDER SECTION (Exact WoodMart Revolution Slider)
   ========================================================================== */

.hero-slider-section {
  position: relative;
  background-color: #fefefe;
  background-image: url('https://egyptmedicalstores.com/wp-content/uploads/2021/10/medical-slide-bg-1-1.jpg');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.slider-container {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.slider-track {
  display: flex;
  height: 100%;
  min-height: 560px;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.wd-slide {
  min-width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% / 50% — exact like reference */
  gap: 0;
  align-items: center;
  width: 100%;
  min-height: 560px;
}

/* Image is on LEFT in reference (RTL: image col first/left = after text in markup) */
.slide-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  order: -1; /* Image first (left column in RTL = right visual) */
}

[dir="ltr"] .slide-img-col {
  order: 1;
}

.slide-img {
  max-height: 450px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
  animation: floatAnimation 3s ease-in-out infinite alternate;
}

@keyframes floatAnimation {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* Text column (right side in RTL) */
.slide-text-col {
  padding: 50px 30px 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

[dir="ltr"] .slide-text-col {
  padding: 50px 20px 50px 30px;
  align-items: flex-start;
}

.slide-subtitle {
  /* "Take care of your health" — Yantramanav 20px weight 300 light */
  font-family: 'Yantramanav', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1em;
  margin-bottom: 16px;
  display: block;
}

.slide-title {
  /* 76px font-size weight 900 line-height 1.1 — EXACT from reference */
  font-family: 'Yantramanav', 'Cairo', sans-serif;
  font-size: 76px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.slide-desc {
  /* 23px from reference */
  font-size: 23px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 520px;
}

/* CTA Button — transparent with border #F5F5F5 border-radius 30px */
.btn-woodmart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgba(2, 1, 1, 0.02); /* #02010105 — nearly transparent */
  color: #F5F5F5;
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #F5F5F5;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--wd-transition);
}

.btn-woodmart:hover {
  background: var(--wd-primary-color);
  border-color: var(--wd-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.35);
}

/* Slider Nav Arrows */
.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 18px;
  z-index: 10;
  transition: var(--wd-transition);
}

.slider-arrow-btn:hover {
  background: var(--wd-primary-color);
  border-color: var(--wd-primary-color);
}

.slider-prev { right: 20px; }
.slider-next { left: 20px; }

[dir="ltr"] .slider-prev { right: auto; left: 20px; }
[dir="ltr"] .slider-next { left: auto; right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--wd-transition);
  border: 1px solid rgba(255,255,255,0.5);
}

.slider-dot.active {
  width: 26px;
  border-radius: 10px;
  background: var(--wd-primary-color);
  border-color: var(--wd-primary-color);
}

/* ==========================================================================
   4. SECTION TITLE & WAVE SHAPES
   ========================================================================== */

.wd-section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.wd-section-title {
  font-size: 30px;
  font-weight: 900;
  color: #242424;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: 'Yantramanav', 'Cairo', sans-serif;
}

.wd-section-subtitle {
  font-size: 14.5px;
  color: #777777;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Category Tab Buttons */
.cat-tab-btn {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #333333;
  padding: 8px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--wd-transition);
  font-family: inherit;
}

.cat-tab-btn.active,
.cat-tab-btn:hover {
  background: var(--wd-primary-color);
  color: #ffffff;
  border-color: var(--wd-primary-color);
}

/* Sweet Wave SVG Dividers */
.elementor-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  z-index: 2;
}

.elementor-shape-top {
  top: -1px;
}

.elementor-shape-bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.elementor-shape svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.elementor-shape-fill {
  fill: #ffffff;
}

/* ==========================================================================
   5. CATEGORIES SECTION (cat-design-zoom-out — circular 220px)
   ========================================================================== */

.categories-section {
  padding: 60px 0 50px;
  background: #ffffff;
}

.categories-row-zoom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* wd-cat with cat-design-zoom-out (exact WoodMart zoom-out style) */
.cat-zoom-card {
  text-align: center;
  cursor: pointer;
  position: relative;
}

.cat-zoom-img-holder {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 4px solid #f0f0f0;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  background: #f5f5f5;
}

.cat-zoom-card:hover .cat-zoom-img-holder {
  box-shadow: 0 12px 28px rgba(30, 58, 138, 0.25);
  border-color: var(--wd-primary-color);
}

/* Zoom-out on hover: image scales down (zoom-out effect) */
.cat-zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.1); /* Start slightly zoomed in */
}

.cat-zoom-card:hover .cat-zoom-img {
  transform: scale(1.0); /* Zoom OUT on hover = shrinks back to normal */
}

.cat-zoom-title {
  font-size: 18px;
  font-weight: 900;
  color: #242424;
  margin-bottom: 5px;
  transition: color 0.25s ease;
  font-family: 'Yantramanav', 'Cairo', sans-serif;
}

.cat-zoom-card:hover .cat-zoom-title {
  color: var(--wd-primary-color);
}

.cat-zoom-count {
  font-size: 13px;
  color: #888888;
  font-weight: 500;
}

/* ==========================================================================
   6. WELCOME BANNER SECTION (Doctor image + 2 waves)
   ========================================================================== */

.welcome-section {
  position: relative;
  background: #f9f9f9;
  padding: 90px 0;
  margin: 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Doctor image is on LEFT (first column) */
.welcome-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-doctor-img {
  max-height: 430px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06));
  animation: floatAnimation 4s ease-in-out infinite alternate;
}

.welcome-text-col {
  padding-right: 20px;
}

[dir="ltr"] .welcome-text-col {
  padding-right: 0;
  padding-left: 20px;
}

.welcome-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--wd-primary-color);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.welcome-title {
  font-size: 34px;
  font-weight: 900;
  color: #242424;
  line-height: 1.25;
  margin-bottom: 18px;
  font-family: 'Yantramanav', 'Cairo', sans-serif;
}

.welcome-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ==========================================================================
   7. PRODUCTS GRID SECTION (All Products Loop — WoodMart exact)
   ========================================================================== */

.products-loop-section {
  padding: 60px 0;
  background: #ffffff;
}

.products-grid-woodmart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* 20px gap like reference --wd-gap-lg:20px */
}

/* WoodMart product card */
.wd-product-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0; /* WoodMart default has no border-radius (--wd-brd-radius: 0px) */
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wd-product-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.wd-product-thumb {
  position: relative;
  background: #f9f9f9;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.wd-product-img {
  max-height: 210px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.wd-product-item:hover .wd-product-img {
  transform: scale(1.06);
}

.wd-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--wd-primary-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
}

[dir="ltr"] .wd-product-badge {
  right: auto;
  left: 12px;
}

.wd-product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wd-product-cat {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--wd-primary-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.wd-product-title {
  font-size: 16px;
  font-weight: 700;
  color: #242424;
  line-height: 1.4;
  margin-bottom: 10px;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Yantramanav', 'Cairo', sans-serif;
}

.wd-star-rating {
  color: var(--wd-star-color);
  font-size: 13px;
  margin-bottom: 12px;
}

.wd-product-sku {
  font-size: 11.5px;
  color: #888888;
  margin-bottom: 12px;
}

.wd-rfq-status-badge {
  background: #f0fdf4;
  border: 1px dashed #86efac;
  color: #166534;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wd-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.btn-wd-quote {
  background: var(--wd-primary-color);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--wd-transition);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-wd-quote:hover {
  background: var(--wd-primary-hover);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.btn-wd-specs {
  background: #f7f7f7;
  color: #333333;
  font-size: 12px;
  font-weight: 700;
  padding: 9px;
  border-radius: 3px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--wd-transition);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-wd-specs:hover {
  background: #efefef;
  color: #111111;
}

.btn-wd-whatsapp {
  grid-column: 1 / -1;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  padding: 7px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--wd-transition);
  cursor: pointer;
  text-transform: uppercase;
}

.btn-wd-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

/* ==========================================================================
   8. KEY FEATURES SECTION (illustration + 4 info-boxes)
   ========================================================================== */

.features-box-section {
  position: relative;
  background: #f9f9f9;
  padding: 90px 0;
}

.features-box-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.features-side-img-wrap {
  text-align: center;
}

.features-side-img {
  max-height: 480px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.07));
}

.features-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* WoodMart info-box with shadow-and-bg-hover style */
.feature-info-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: var(--wd-transition);
}

.feature-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: var(--wd-primary-color);
  background: var(--wd-primary-color);
}

.feature-info-card:hover .feature-card-title,
.feature-info-card:hover .feature-card-desc {
  color: #ffffff;
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.feature-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(75%) saturate(401%) hue-rotate(108deg) brightness(98%) contrast(91%);
}

.feature-info-card:hover .feature-card-icon img {
  filter: brightness(0) invert(1);
}

.feature-card-title {
  font-size: 16px;
  font-weight: 900;
  color: #242424;
  margin-bottom: 8px;
  font-family: 'Yantramanav', 'Cairo', sans-serif;
  transition: color 0.3s ease;
}

.feature-card-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* ==========================================================================
   9. TESTIMONIALS SECTION (3-column grid)
   ========================================================================== */

.testimonials-section {
  position: relative;
  background: #ffffff;
  padding: 90px 0 80px;
}

.testimonials-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-box {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: var(--wd-transition);
}

.testimonial-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--wd-star-color);
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
  flex: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f0f0f0;
  padding-top: 18px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wd-primary-color);
  flex-shrink: 0;
}

.testimonial-user-info h5 {
  font-size: 14px;
  font-weight: 800;
  color: #242424;
  margin-bottom: 2px;
}

.testimonial-user-info span {
  font-size: 12px;
  color: #888888;
}

/* ==========================================================================
   10. FOOTER — Exact #0f172a matching reference footer color
   ========================================================================== */

.wd-site-footer {
  background-color: #0f172a; /* EXACT reference footer color */
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 20px;
  border-top: none;
}

.footer-3cols-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h2,
.footer-column h4 {
  font-size: 17px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Yantramanav', 'Cairo', sans-serif;
}

.footer-column h2::after,
.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.5);
}

[dir="ltr"] .footer-column h2::after,
[dir="ltr"] .footer-column h4::after {
  right: auto;
  left: 0;
}

.footer-list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-list-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-list-items li i {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-list-items a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--wd-transition);
}

.footer-list-items a:hover {
  color: #ffffff;
  padding-right: 4px;
}

[dir="ltr"] .footer-list-items a:hover {
  padding-right: 0;
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--wd-transition);
  font-size: 15px;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
  gap: 8px;
}

/* ==========================================================================
   11. MODALS, DRAWERS, SEARCH & FLOATING
   ========================================================================== */

/* Search Overlay */
.search-modal-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-modal-wrap.active {
  display: flex;
}

.search-modal-box {
  width: 100%;
  max-width: 650px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 20px;
}

.search-modal-input-wrap {
  display: flex;
  align-items: center;
  background: #f8fafb;
  border: 2px solid #e0e0e0;
  border-radius: 3px;
  padding: 6px 14px;
  transition: border-color 0.25s;
}

.search-modal-input-wrap:focus-within {
  border-color: var(--wd-primary-color);
}

.search-modal-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px;
  font-size: 15px;
  color: #1e293b;
}

.search-results-dropdown {
  margin-top: 8px;
  max-height: 320px;
  overflow-y: auto;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s;
}

.search-item:hover {
  background: #f8fafc;
}

.search-item-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 3px;
  background: #f5f5f5;
  flex-shrink: 0;
}

.search-item-info {
  flex: 1;
}

.search-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #242424;
}

.search-item-cat {
  font-size: 11.5px;
  color: #888888;
}

/* RFQ Drawer */
.rfq-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 95vw;
  height: 100vh;
  background: #1a1a1a;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

[dir="ltr"] .rfq-drawer {
  right: auto;
  left: -420px;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

.rfq-drawer.active {
  right: 0;
}

[dir="ltr"] .rfq-drawer.active {
  right: auto;
  left: 0;
}

.rfq-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: var(--wd-primary-color);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.rfq-drawer-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.rfq-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.rfq-item-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 12px;
}

.rfq-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  flex-shrink: 0;
}

.rfq-item-info {
  flex: 1;
}

.rfq-item-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.rfq-item-sku {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.rfq-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--wd-primary-color);
  border-color: var(--wd-primary-color);
}

.qty-val {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  min-width: 24px;
  text-align: center;
}

.rfq-remove-btn {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 3px;
  color: #fca5a5;
  font-size: 13px;
  cursor: pointer;
  padding: 5px 8px;
  transition: var(--wd-transition);
}

.rfq-remove-btn:hover {
  background: #ef4444;
  color: #ffffff;
}

.rfq-drawer-footer {
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Quick View Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.1);
  border: none;
  border-radius: 50%;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--wd-transition);
}

[dir="rtl"] .modal-close-btn {
  left: auto;
  right: 14px;
}

.modal-close-btn:hover {
  background: var(--wd-primary-color);
  color: #fff;
}

.modal-body {
  overflow-y: auto;
  padding: 24px;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: start;
}

[dir="rtl"] .quick-view-grid {
  direction: rtl;
}

.quick-view-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-view-main-img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  background: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  padding: 16px;
}

.quick-view-title {
  font-size: 22px;
  font-weight: 900;
  color: #242424;
  line-height: 1.3;
  margin-bottom: 8px;
  font-family: 'Yantramanav', 'Cairo', sans-serif;
}

.quick-view-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}

.quick-view-specs-table th,
.quick-view-specs-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
  text-align: right;
}

[dir="ltr"] .quick-view-specs-table th,
[dir="ltr"] .quick-view-specs-table td {
  text-align: left;
}

.quick-view-specs-table th {
  background: #f5f5f5;
  font-weight: 700;
  color: #555555;
  white-space: nowrap;
  width: 40%;
}

.quick-view-specs-table tr:last-child th,
.quick-view-specs-table tr:last-child td {
  border-bottom: none;
}

.specs-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.specs-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444444;
}

.specs-highlights-list li i {
  color: var(--wd-primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

[dir="ltr"] .toast-container {
  right: auto;
  left: 20px;
}

.toast {
  background: #1a1a1a;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  animation: slideInToast 0.3s ease;
  transition: opacity 0.3s ease;
  min-width: 280px;
}

.toast.toast-success {
  background: var(--wd-primary-color);
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

[dir="rtl"] @keyframes slideInToast {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Floating WhatsApp and Scroll Top */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

[dir="ltr"] .floating-widgets {
  left: auto;
  right: 24px;
}

.floating-whatsapp {
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--wd-transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #1ebc59;
}

.floating-scroll-top {
  width: 46px;
  height: 46px;
  background: #0f172a; /* Match footer color */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--wd-transition);
}

.floating-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Quick View/Modal Overlay Backdrop (separate from drawer overlay) */
#rfqDrawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1400;
  display: none;
}

#rfqDrawerOverlay.active {
  display: block;
}

/* ==========================================================================
   12. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .slide-title {
    font-size: 50px; /* Reference: tablet 50px */
  }
  .slide-desc {
    font-size: 14px;
  }
  .slide-subtitle {
    font-size: 12px;
  }
  .slide-grid,
  .welcome-grid,
  .features-box-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .slide-text-col {
    align-items: center;
    padding: 30px 20px;
    order: 2;
  }
  .slide-img-col {
    order: 1;
  }
  .welcome-text-col {
    padding: 0;
  }
  .welcome-img-col {
    order: -1;
  }
  .products-grid-woodmart {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-row-zoom {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-3cols-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wd-header-main-nav {
    display: none;
  }
  .mobile-nav-icon {
    display: block;
  }
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 36px; /* Reference: mobile 36px */
  }
  .slide-desc {
    font-size: 14px;
  }
  .features-grid-cards {
    grid-template-columns: 1fr;
  }
  .products-grid-woodmart {
    grid-template-columns: 1fr;
  }
  .categories-row-zoom {
    grid-template-columns: 1fr;
  }
  .testimonials-grid-row {
    grid-template-columns: 1fr;
  }
  .footer-3cols-grid {
    grid-template-columns: 1fr;
  }
  .top-notice-left {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .top-notice-inner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .cat-zoom-img-holder {
    width: 180px;
    height: 180px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
  .quick-view-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   LTR Compatibility Styles (English Mode)
   ========================================================================== */
[dir="ltr"] body {
  font-family: 'Inter', 'Yantramanav', 'Lato', sans-serif;
  text-align: left;
}

[dir="ltr"] .logo-text-col {
  text-align: left;
}

[dir="ltr"] .wd-dropdown-menu {
  left: 0;
  right: auto;
}

[dir="ltr"] .wd-dropdown-menu a {
  text-align: left;
}

[dir="ltr"] .wd-dropdown-menu a i {
  transform: rotate(180deg);
}

[dir="ltr"] .rfq-drawer {
  right: -420px;
  left: auto;
}

[dir="ltr"] .rfq-drawer.active {
  right: 0;
  left: auto;
}

[dir="ltr"] .floating-widgets {
  right: 24px;
  left: auto;
}

[dir="ltr"] .slider-arrow-btn.slider-prev {
  left: 20px;
  right: auto;
}

[dir="ltr"] .slider-arrow-btn.slider-next {
  right: 20px;
  left: auto;
}

[dir="ltr"] .slider-arrow-btn i {
  transform: rotate(180deg);
}

[dir="ltr"] .post-content-area h2 {
  border-left: 4px solid var(--wd-primary-color);
  border-right: none;
  padding-left: 14px;
  padding-right: 0;
}

[dir="ltr"] .medical-callout {
  border-left: 4px solid #22c55e;
  border-right: none;
}

[dir="ltr"] .medical-table th, 
[dir="ltr"] .medical-table td {
  text-align: left;
}

[dir="ltr"] .footer-list-items a i {
  transform: rotate(180deg);
}



.header-logo-image {
  height: 52px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin-left: 10px;
  transition: var(--wd-transition);
}

[dir="ltr"] .header-logo-image {
  margin-left: 0;
  margin-right: 10px;
}

.logo-wrap:hover .header-logo-image {
  transform: scale(1.05);
}




/* ==========================================================================
   MOBILE NAVIGATION DRAWER & ENHANCED MOBILE RESPONSIVENESS (FAILSAFE)
   ========================================================================== */

.mobile-nav-icon {
  display: none;
  font-size: 20px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--wd-primary-color);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  transition: var(--wd-transition);
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}

.mobile-nav-icon i {
  pointer-events: none !important;
}

.mobile-nav-icon:hover,
.mobile-nav-icon:active {
  background: var(--wd-primary-color);
  color: #ffffff;
}

.mobile-nav-drawer {
  position: fixed !important;
  top: 0 !important;
  right: -340px !important;
  width: 300px !important;
  max-width: 85vw !important;
  height: 100vh !important;
  background: #ffffff !important;
  z-index: 999999 !important;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25) !important;
  transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1), left 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  pointer-events: auto !important;
}

[dir="ltr"] .mobile-nav-drawer {
  right: auto !important;
  left: -340px !important;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.25) !important;
}

.mobile-nav-drawer.active {
  right: 0 !important;
  left: auto !important;
}

[dir="ltr"] .mobile-nav-drawer.active {
  left: 0 !important;
  right: auto !important;
}

.mobile-nav-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(3px) !important;
  z-index: 999998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  pointer-events: none !important;
}

.mobile-nav-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-nav-header {
  padding: 16px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #475569;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

.mobile-nav-close:hover {
  color: #dc2626;
}

.mobile-nav-search-wrap {
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-search-box {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 9px 12px;
  gap: 8px;
  cursor: pointer;
}

.mobile-nav-search-box input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 13px;
  pointer-events: none;
}

.mobile-nav-links {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.2s ease;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li.active a {
  color: var(--wd-primary-color);
  background: rgba(30, 58, 138, 0.04);
}

.mobile-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8fafc;
  display: none;
}

.mobile-sub-menu.open {
  display: block;
}

.mobile-sub-menu li a {
  padding: 10px 30px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.mobile-nav-footer {
  padding: 18px 20px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

@media (max-width: 1024px) {
  .wd-header-main-nav {
    display: none !important;
  }
  .mobile-nav-icon {
    display: flex !important;
  }
  .wd-header-rfq-btn span:not(.quote-count-badge) {
    display: none;
  }
  .wd-header-wa-btn span {
    display: none;
  }
  .wd-header-wa-btn {
    padding: 8px 10px;
    border-radius: 50%;
  }
}

@media (max-width: 768px) {
  .logo-title {
    font-size: 16px;
  }
  .logo-subtitle {
    display: none;
  }
  .header-logo-image {
    height: 40px;
  }
  .top-notice-bar {
    font-size: 11px;
  }
}
