:root {

  /* Primary Colors */
  --primary-main: #0A0A0A;
  --primary-dark: #0A0A0A;
  --primary-light: #3498db;
  --primary-lighter: #5dade2;
  --primary-blue : #fff;
  
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
        
  /* Secondary Colors */
  --secondary-main: #e74c3c;
  --secondary-dark: #c0392b;
  --secondary-light: #ec7063;

  /* Success/Accent */
  --success-main: #27ae60;
  --success-dark: #229954;
  --success-light: #52be80;

  /* Neutral Colors */
  --dark-gray: #1a1a1a;
  --medium-gray: #333333;
  --light-gray: #666666;
  --lighter-gray: #999999;
  --lightest-gray: #cccccc;
  --background-gray: #f8f9fa;
  --border-gray: #b6b6b657;
  --white: #ffffff;

  /* Text Colors */
  --text-primary: #2c3e50;
  --text-secondary: #34495e;
  --text-light: #7f8c8d;
  --text-inverse: #ffffff;
                                                                                                                                                                                           
  /* UI Colors */
  --header-bg: #2c3e50;
  --footer-bg: #1a252f;
  --card-bg: #ffffff;
  --nav-bg: #ffffff;


  /* Status Colors */
  --stock-in: #2E8540;
  --stock-estimated: #E68C00;
  --stock-out: #C53030;
  --b2c-badge: #4299E1;
  --b2b-badge: #805AD5;
  --pending-badge: #E68C00;


  /* Typography */

  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  /* Spacing */

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Border Radius */

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;


  /* Shadows */

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Transitions */

  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}


body {

  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--neutral-gray);
  background-color: #fff;
  display: flex;
  flex-direction: column;

}


.container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 var(--space-md);

}


h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: var(--font-heading);

  font-weight: 600;

  line-height: 1.2;

}

p {
  margin-bottom: 15px;
}


a {
  text-decoration: none;
  transition: color var(--transition-fast);
  font-family: var(--font-heading);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: inherit;
}

a:hover span {

  text-decoration: underline;

}

a:hover i {
  transform: translateX(2px);
}


button,

.btn {

  cursor: pointer;

  border: none;

  border-radius: var(--radius-md);

  padding: var(--space-sm) var(--space-lg);

  font-family: var(--font-main);

  font-weight: 500;

  transition: all var(--transition-fast);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: var(--space-sm);

}


.btn-primary {

  background-color: var(--primary-blue);

  color: var(--white);

}


.btn-primary:hover {

  background-color: var(--primary-blue);

  transform: translateY(-1px);

  box-shadow: var(--shadow-md);

  color: var(--primary-light);

}


.btn-secondary {

  background-color: transparent;

  color: var(--primary-blue);

  border: 2px solid var(--primary-blue);

}


.btn-secondary:hover {

  background-color: var(--primary-blue);

  color: var(--white);

}


.btn-danger {

  background-color: var(--danger-red);

  color: var(--white);

}


.btn-success {

  background-color: var(--success-green);

  color: var(--white);

}


.btn-warning {

  background-color: var(--warning-orange);

  color: var(--white);

}
.bg-dark {
  background: #000;
  color: #fff;
}

.section.bg-dark {
    padding: 60px 0;
}

input,

select,

textarea {

  font-family: var(--font-main);

  padding: var(--space-sm) var(--space-md);

  border: 1px solid #CBD5E0;

  border-radius: var(--radius-md);

  background-color: var(--white);

  transition: border-color var(--transition-fast);

}


input:focus,

select:focus,

textarea:focus {

  outline: none;

  border-color: var(--primary-blue);

  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);

}

input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus,
.input-text:focus {
  background-color: transparent !important;
}

input::placeholder,
textarea::placeholder {
  font-family: var(--font-main);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #737373 !IMPORTANT;
}

.badge {

  display: inline-flex;

  align-items: center;

  padding: 0.25rem 0.75rem;

  border-radius: var(--radius-full);

  font-size: 0.75rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.05em;

}


.badge-success {

  background-color: #C6F6D5;

  color: #22543D;

}


.badge-warning {

  background-color: #FEEBC8;

  color: #744210;

}


.badge-danger {

  background-color: #FED7D7;

  color: #742A2A;

}


.badge-info {

  background-color: #BEE3F8;

  color: #2A4365;

}


.badge-b2b {

  background-color: #E9D8FD;

  color: #44337A;

}

body .site-main {
  margin-bottom: 0 !important;
}

/* ============================================
           HEADER & NAVIGATION
============================================ */

.top-bar {
  background: var(--primary-main);
  border-bottom: 1px solid var(--border-color);
  padding: 6px 0;
  transition: background-color 0.3s, border-color 0.3s;
  color: var(--white);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contact_info ul {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  margin-bottom: 0;
  list-style: none;
  margin-left: 0 !important;

}

.contact_info li {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.contact_info li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.contact-info i {
  color: var(--primary-light);
  margin-right: 8px;
}

.tera-header {

  background-color: var(--white);

  box-shadow: var(--shadow-sm);

  position: sticky;

  top: 0;

  z-index: 999;

}


.header-main {

  padding: 8px 0;

  border-bottom: 1px solid var(--border-gray);

}


.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.logo-section {

  display: flex;

  align-items: center;

  gap: var(--space-md);

}


.logo {
  font-size: 23px;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-transform: uppercase;
  justify-content: flex-start;
}


a#how-login-form i {
  font-size: 22px;
}

a#how-login-form i.fa-chevron-down {
  font-size: 16px;
}


a#how-login-form span {
  display: flex;
  gap: 5px;
  align-items: center;
}

.logo-safety {

  font-size: 0.75rem;

  background-color: var(--success-green);

  color: var(--white);

  padding: 0.125rem 0.5rem;

  border-radius: var(--radius-full);

}


/* Search */
.search-container {
  flex: 1;
  max-width: 500px;
  margin: 0 30px;
}

.search-box {
  display: flex;
  border: 1px solid var(--primary-dark);
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 0;
  box-shadow: 0px 4px 30px 0px #00000040;
}


.search-box input {
  flex: 1;
  border: none;
  padding: 8px 16px;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-primary);
  box-shadow: none;
}

.search-box button {
  background: var(--primary-dark);
  color: var(--text-inverse);
  border: none;
  padding: 10px 10.1px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 0 !important;
  margin: 2px;
  border-radius: 50px !IMPORTANT;
}

.search-box button:hover {
  background: var(--primary-dark);
}

.search-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}


.action-link {

  display: flex;

  align-items: center;

  gap: var(--space-xs);

  font-weight: 500;

  color: var(--primary-main);

}

.cart-icon img {
  height: 30px;
  object-fit: cover;
  width: 30px;
}

.cart-icon .wmc-count {
  position: absolute;
  top: 0;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px !important;
  height: 17px !important;
  border-radius: 9999px;
  background-color: #000;
  color: #fff;
  font-size: 8px !important;
}

/* Main Navigation */
.main-nav {
  background-color: var(--white);
}


.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0px;
  gap: 4px;
}

.nav-link,
.menu-link {

  position: relative;

  padding: var(--space-sm) 0;

  font-weight: 500;

  color: #000;

  text-transform: capitalize;

}


.nav-link:hover,
.menu-link:hover {

  color: var(--accent-orange);

}


.nav-link.active,
.menu-link.active {

  color: var(--primary-blue);

}

.cart-icon {
  position: relative;
  padding: 5px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
  color: var(--primary-dark);
  /* min-width: 40px; */
  justify-content: center;
}


.ast-menu-toggle {

  background: none;

  border: none;

  cursor: pointer;

}


.btn-primary {

  display: inline-flex;

  align-items: center;

  padding: 10px 20px;

  font-size: 14px;

  font-weight: 500;

  border-radius: 6px;

  text-decoration: none;

  transition: background 0.2s ease;

}


.btn-primary:hover {

  background-color: #0056b3;

}


.btn-primary i {

  margin-right: 8px;

  vertical-align: middle;

}

button.ast-menu-toggle:focus {
  outline: none !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--border-radius);
}

a.wmc-cart {
  display: none;
}

.cart-icon a.wmc-cart {
  display: block !important;
}

.action-link.login {
  background: #FFD90C;
  color: #000;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}


.action-link.login span i {
  font-size: 16px !important;
}

.account-menu ul {
  list-style: none;
  margin: 0;
}

/* =========================
   MEGA MENU (SCOPED)
========================= */

.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 1100px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* Show mega menu on hover */
..main-menu li.menu-item-has-children.active .mega-menu {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
}

/* LEFT MENU */
.mega-menu .sub-menu {
  list-style: none;
  border-right: 1px solid #eee;
}

.mega-menu .sub-menu li a {
  display: block;
  padding: 10px 12px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.mega-menu .sub-menu li a:hover {
  background: #f5f7fa;
  color: #1e3a8a;
  font-weight: 600;
}

/* RIGHT CONTENT */
.mega-menu .mega-content {
  padding-left: 10px;
}

/* CATEGORY COLUMNS */
.mega-menu .mega-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.mega-menu .mega-columns h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #1e3a8a;
}

.mega-menu .mega-columns a {
  display: block;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
}

.mega-menu .mega-columns a:hover {
  color: #1e3a8a;
}

/* TOP PRODUCTS */
.mega-menu .mega-products h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.mega-menu .product {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.mega-menu .product img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid #ddd;
}

.mega-menu .product p {
  font-size: 13px;
  margin-bottom: 4px;
}

.mega-menu .product span {
  font-size: 12px;
  color: #555;
  display: block;
  margin-bottom: 6px;
}

.mega-menu .btn {
  display: inline-block;
  padding: 6px 10px;
  background: #0097a7;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

/* ===============================
   WORDPRESS DROPDOWN MENU
================================ */

.arrow-up {
  display: none;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #ffffff;
  z-index: 10000;
  right: 11px;
}

.menu>.menu-item>a {
  display: flex;
  padding: 8px 16px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px !important;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
  align-items: center;
  transition: all 0.3s;
  position: relative;
}

.menu>.menu-item>a i {
  font-size: 14px;
}

.menu>.menu-item>a:hover {
  color: #000;
  font-weight: 500;
}



.mega-column ul li {
  border-right: 0 !important;
}


.mega-column-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.mega-product {
  margin: 0 auto;
  padding: 0 !important;
  font-family: var(--font-heading);
  grid-column: 1 / -1;
  width: 100%;
}

.mega-column ul li a {
  padding: 8px !important;
}

.dropdown-header p {
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 10px;
}

.mega-column ul li a:after {
  content: none !important;
  display: none !important;
}

.mega-product .component-heading {
  font-size: 13px;
  font-weight: 700;
  margin-block: 17px;
  color: #222;
  text-align: left;
}

.mega-product .product-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
  width: 100%;
}

.mega-menu-dropdown.container {
  padding: 0 35px;
}

.mega-product .product-item {
  border: 1px solid rgb(221, 221, 221);
  border-radius: 8px;
  width: 48%;
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
  transition: box-shadow 0.3s;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
}

.product-details {
  width: 100%;
  text-align: left;
}

.mega-product .product-item a {
  padding: 0 !important;
}

.mega-column {
  border-right: 1px solid var(--border-gray);
}

.mega-product .product-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mega-product .product-item img {
  width: 100%;
  height: 150px;
  border-radius: 6px;
  margin-bottom: 12px;
  object-fit: cover;
}

.mega-product .product-item h3 {
  font-size: 18px;
  color: #333;
  margin: 0 0 10px 0;
}

.mega-product .product-item p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.mega-product .button {
  display: inline-block;
  padding: 10px 18px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.mega-product .button:hover {
  background-color: #0056b3;
}

.sub-menu-item-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}

/* Show on hover */
.menu-item.mega-menu:hover .mega-menu-dropdown {
  display: grid;
}

.mega-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b2a66;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 8px 10px;
}

.mega-submenu {
  border-right: 1px solid var(--border-gray);
}

.mega-submenu ul li {
  border-right: 0 !important;
}


.mega-column ul li a:hover {
  color: #0b2a66;
  /*text-decoration: underline;*/
}


/* ============================================
        home page
=============================================== */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0 !important;
}

/* Hero Slide */
.hero-slider {
  margin-bottom: 0 !important;
  border-bottom: 4px solid #FFD90C;
}

.hero-section .hero-slide {
  position: relative;
  height: 626px;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Overlay Gradient */
.hero-section .hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 44.39%, rgba(0, 0, 0, 0) 63.06%);
  z-index: 1;
}

/* Content Inside Slide */
.hero-section .hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-section .slide-content {
  height: 556px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-section .slider-head {
  flex: 0 0 40%;
  text-align: left;
  margin-bottom: 113px;
  flex-direction: column;
  display: flex;
}

.hero-section .hero-slide .title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 58px;
  line-height: 100%;
  text-transform: uppercase;
}

.hero-section .hero-slide .title span {
  color: #FFD90C;
}

.hero-section .hero-slide .description {
  margin: 20px 0;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3rem;
}

.hero-section .slider-head a {
  justify-content: flex-start;
}

/* Slick Dots (Navigation) */
.hero-section .slick-dots {
  bottom: 61px !important;
  max-width: 1200px !important;
  width: 100% !important;
  right: 45% ;
}

.hero-section .slick-dots li button:before {
  color: #FFD90C;
}

/* Active Dot */
.hero-section .slick-dots li.slick-active button:before {
  color: transparent;
  border: 2px solid transparent;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFD90C;
  opacity: 1;
}

/* Inactive Dots */
.hero-section .slick-dots li button:before {
  color: transparent;
  border: 2px solid #FFD90C !important;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.9;
}

/* Navigation Arrows */
.hero-section .slick-prev,
.hero-section .slick-next {
  color: #FFD90C;
  font-size: 2rem;
}

.hero-section .slick-prev:hover,
.hero-section .slick-next:hover {
  color: #FFD90C;
}

/* Badges */
.hero-section .badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 20px;
  flex: 0 0 45%;
}

.hero-section .badge-item {
  background-color: white;
  padding: 7px 19px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #333;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-section .badge-item:hover {
  transform: translateY(-2px);
}

.hero-section .badge-item i {
  font-size: 1.3rem;
  color: var(--primary-main);
}

.hero-section .badge-item span {
  font-size: 13px;
  color: #333;
}


.hero-slider {
  margin-bottom: 0;
}

.rfq-link {
  margin-top: 10px;
}

.rfq-link,
.browse:hover {
  color: #FFD90C !important;
}

.shop-categories-section {
  padding: 50px 0;
  background: linear-gradient(282.62deg, #887406 -241.2%, #000000 100%);
  color: #fff;
  overflow: hidden;
  height: 300px;
}

/* Section Header - KEEPING YOUR DESIGN */
.shop-categories-header {
  margin-bottom: 0px;
  text-align: left;
}


.shop-categories-header .dash {
  color: #fff;
  text-align: left;
  position: relative;
  display: inline-block;
}


.shop-categories-header .dash::after {
    background: #fff;
    left: 90px;
}

.shop-categories-header .section-title {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
}

.shop-categories-header p {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 0;
}

/* Slider Wrapper - KEEPING YOUR DESIGN */
.shop-categories-slider-wrapper {
  margin-top: -110px;
  position: relative;
}

/* Slider Container */
.shop-categories-slider {
  position: relative;
}

/* Category Card - KEEPING YOUR DESIGN */
.shop-category-card {
  position: relative;
  height: 300px !important;
  border-radius: 8px;
  overflow: hidden;
  margin: 10px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-gray);
}

/*.shop-category-card:hover {
  transform: scale(1.05);
}*/

/* Overlay for better text visibility - KEEPING YOUR DESIGN */
.shop-category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(196.43deg, rgba(0, 0, 0, 0) 11.39%, #000000 96.68%);
  z-index: 1;
}

/* Category Content - KEEPING YOUR DESIGN */
.shop-category-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-align: left;
  color: #fff;
  z-index: 2;
}

.shop-category-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.shop-category-link {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.shop-category-link i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* Slick Arrows - KEEPING YOUR DESIGN */
.shop-categories-slider .slick-prev,
.shop-categories-slider .slick-next {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  z-index: 3;
  transition: background-color 0.3s ease;
  border: 1px solid #fff;
}

.shop-categories-slider .slick-prev:hover,
.shop-categories-slider .slick-next:hover {
  background-color: #FFD90C;
  border-color: #FFD90C;
}
.shop-categories-slider .slick-prev:hover i,
.shop-categories-slider .slick-next:hover i{
  color: var(--primary-main);
}


.shop-categories-slider .slick-prev {
  top: -54px;
  left: 90%;
}

.shop-categories-slider .slick-next {
  right: 10px;
  top: -54px;
}

.shop-categories-slider .slick-prev:before,
.shop-categories-slider .slick-next:before {
  display: none;
}

.shop-categories-slider .slick-prev i,
.shop-categories-slider .slick-next i {
  font-size: 20px;
  color: #fff;
  line-height: 40px;
  font-weight: 600;
}


/* ============================================
           about our solution
=============================================== */
.about-our {
  padding: 50px 0;
}

section.about-our .container {
  max-width: 996px;
}

.about-our .about-our-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
  /*padding: 0 var(--space-md);*/
}

.about-our .left {
  max-width: 45%;
}

.about-our .right {
  max-width: 50.6%;
}

.header-title {
  font-size: 2.2rem;
  color: var(--primary-main);
  margin: 0 0 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.dash {
  font-size: 14px;
  color: var(--primary-main);
  font-weight: 500;
  text-align: left;
  position: relative;
  text-transform: uppercase;
}

.about-our p {
  font-size: 1em;
  color: #000;
  line-height: 1.21rem;
  letter-spacing: 0.6px;
}

.about-our p:last-of-type {
  color: #737373;
}

.read-more {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  color: black;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}


.about-our .about-our-image {
  position: relative;
}

.about-our .about-our-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.about-our .about-our-image img {
  width: 100%;
  height: auto;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.supply-hero {
  padding: 50px 0 0;
  font-family: var(--font-heading);
}

.supply-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

.supply-content {
  flex: 0 0 50%;
}

.supply-content .section-title {
    font-size: 2rem;
    color: #2d2d2d;
    margin: 10px 0;
    font-weight: 500;
    text-transform: uppercase;
}

.supply-text {
  font-size: 16px !important;
  color: #737373 !important;
  margin-bottom: 30px;
  font-weight: 500;
  margin-top: 10px;
}

.supply-btn {
  background: #FFD90C;
  color: #000;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.supply-btn:hover {
  border-color: #000;
  background: #fff;
  transform: translateY(-2px);
}

.supply-features {
  flex: 0 0 37%;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid #868686;
}

.feature-list .feature-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.feature-item span {
  color: #222;
}

li.feature-item p {
  color: #0A0A0A !important;
  font-size: 18px;
  font-weight: 500;
}

/*-----------------------------------------*/

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 8px;
   position: relative;
    transition: all 0.3s;
    text-align: center;
}




.feature-card:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 26px;
    right: -100px;
    width: 200px;
    height: 2px;
    background-color: #b6b6b6;
    z-index: 2;
}



.feature-icon, .value-icon {
    width: 50px;
    height: 50px;
    background: #ffd90c;
    color: #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    color: var(--primary-main);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 0;
}

.steps{
    font-weight: 600;
    font-size: 16px;
    color: #574A07;
    TEXT-TRANSFORM: UPPERCASE;
    margin-bottom: 10px !important;
}

/* ============================================
          about us
 ============================================ */

.site-main.temp_about {
  background: #fff;
  min-height: 100vh;
}

/* Hero Section */
.about-sec {
    /* background: linear-gradient(135deg, #ffe972 0% , #ffffff 100%); */
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffe972 0%, #ffffff 100%),  linear-gradient(to right, #ffe972 0%, #ffffff 100%);
    background-blend-mode: overlay;
}


.about-sec .container {
  position: relative;
  z-index: 2;
}
.about-content h5 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-main);
}
.about-content p{
  margin-bottom: 10px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content .cta-button{
  margin-top: 30px;
}
.about-sec h2.dash::after {
    left: 56% !important;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.about-section {
  padding: 80px 0;

}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
    position: relative;
}

.about-text h2 {
  color: var(--primary-main);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.check-badge {
    position: absolute;
    top: -17px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    z-index: 3;
}

/* Border using pseudo-element */
.check-badge::before {
    content: "";
    position: absolute;
    inset: -7px; /* same as border thickness */
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.5); /* 50% transparent */
    z-index: -1;
}

.about-img {
    position: relative;
    height: 380px;
    background: linear-gradient(100.06deg , #887406 -0.81%, #000000 110.55%);
    border-radius: 0px 50px 50px 0;
    margin-top: 100px;
}

.about-section img {
    position: absolute;
    right: 0;
    height: 429px;
    object-fit: cover;
    z-index: 3;
    bottom: 0;
}

section.about-img-sec {
    margin-top: -20px;
    z-index: 1;
    position: relative;
}

.about-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%; /* add this if you want full width */
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* ============================================
           What We Are Section 
 ============================================ */

.who-we {
  background: white;
  position: relative;
  padding: 60px 0;
}
 .max-w-996{
  max-width: 996px;
  margin: 40px auto 0;
 }

/*-------------Team Values Section ------------------------*/
.team-values {
  padding: 80px 0;
  background: #f8f9fa;

  span {
    color: var(--accent-orange);
  }
}

.team-values h2 {
  text-align: center;
  color: var(--primary-main);
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  background: var(--card-bg);
  border: 2px solid var(--border-gray);
  border-radius: 10px;
  padding: 40px;
  transition: all 0.3s
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
  color: var(--primary-main);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/*--------------------------*/
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.contact-section {
  padding: 40px 0;
  background-color: #f9f9f9;
   font-family: var(--font-heading);
}

.contact-wrapper {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-item {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-direction: column;
  gap: 10px;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-item i {
  font-size: 30px;
  color: var(--primary-main);
  margin-right: 15px;
}

.contact-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0;
}

.contact-item a {
  color: #007bff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.map-container {
  position: relative;
  height: 350px;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-item p a {
  color: var(--primary-blue);
}

.map-container iframe {
  max-width: 100%;
  overflow: hidden;
  max-height: 350px;
}

.category-content p {
  font-size: 14px;
  margin-bottom: 10px;
}

/*--------- Featured Products ----------*/
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover h5 {
  color: var(--primary-main);
  font-weight: 500;

}

.product-image {
  height: 200px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c5282;
  font-size: 3rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-orange);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-content {
  padding: 10px;
}

.product-content h3 {
  color: #1a3a5f;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-meta {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.product-price {
  color: var(--primary-main);
  font-size: 16px;
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.product-btn.primary {
  background: var(--primary-main);
  color: white;
}

.product-btn.primary:hover {
  background: #1a3a5f;
}

.product-btn.secondary {
  background: #f8fafc;
  color: #2c5282;
  border: 1px solid #e2e8f0;
}

.product-btn.secondary:hover {
  background: #edf2f7;
}

/* ============================================
    BRANDS
 ============================================ */
.brand-section {
  padding: 50px 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.brand-section h2.dash,
.brand-section .header-title {
  color: #fff;
  text-align: center;
}

.brand-section h2.dash::after {
  background: #fff;
  left: 73%;
}

.brand-section .product-header {
  justify-content: center !important;
  margin-bottom: 10px !important;
}

.brand-section h2.dash {
  color: #fff;
  text-align: center;
}

.brand-slider {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.brand-item {
  background: var(--card-bg);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
  min-width: 183px;
  height: 140px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.brand-item img {
  max-width: 100%;
  height: 140px;
  margin: 0 auto;
  object-fit: cover;
}

.brand-item span {
  font-size: 1.2em;
  color: #333;
}

.slick-dots {
  bottom: 10px;
}

.brand-slider-bottom .brand-item {
  margin-left: 15px;
}

.brand-slider-top .brand-item {
  margin-right: 15px;
}

.brand-section .view-all-link {
  color: #fff !important;
  display: inline-block;
  padding: 5px 10px;
}

.brand-section .slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.brand-section .slider {
  width: 100%;
  overflow: hidden;
  margin: 10px 0;
}

.brand-section .slide-track {
  display: flex;
  width: calc(250px * 10);
}

.brand-slider-top,
.brand-slider-bottom {
  margin: 20px 0;
}

.brand-slider-top .slide-track {
  animation: moveLeft 15s linear infinite;
}

.brand-slider-bottom .slide-track {
  animation: moveRight 15s linear infinite;
}

@keyframes moveLeft {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/*--------contact-page--------*/

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  flex-wrap: wrap;
}

/* CONTAINER */
.contact-form {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    font-family: var(--font-heading);
}

/* HEADER */
.contact-form .form-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-form .form-header p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  max-width: 650px;
}

/* SEPARATORS */
.contact-form hr {
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: 12px 0;
}

.contact-form p br {
  display: none;
}

/* LABELS */
.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
  display: block;
}

/* INPUTS */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db !important;
    background: #f9fafb;
    transition: all 0.25s ease;
    color: #847373;
}
.contact-form label.required::after {
    content: " *";
    color: red;
    margin-left: 2px;
    font-weight: bold;
}
/* PLACEHOLDER */
.contact-form ::placeholder {
  color: #94a3b8;
}

/* FOCUS (accessible but clean) */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

/* TEXTAREA */
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* CHECKBOX */
.contact-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

.contact-form input[type="checkbox"] {
  margin-top: 4px;
  accent-color: #1e3a8a;
}

header.entry-header h1 {
  display: none;
}

/* BUTTON HOVER */
.contact-form input[type="submit"]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  background: var(--primary-dark) !important;
}

/* DISABLED STATE */
.contact-form input[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

/* CF7 ERRORS */
.contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}

.contact-form .wpcf7-response-output {
  margin-top: 25px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
}

/* SUCCESS */
.contact-form .wpcf7-mail-sent-ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

/* ERROR */
.contact-form .wpcf7-validation-errors {
  background: #fef2f2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
}

main#main {
  margin: 00;
}

div#secondary {
  display: none;
}

.page-id-164 .status-publish.hentry,
.page-id-168 .status-publish.hentry,
.page-id-170 .status-publish.hentry,
.page-id-181 .status-publish.hentry {
  box-shadow: none !important;
  max-width: 100% !important;
  border: 0 !important;
}

.page-id-164 h3,
.page-id-168 h3,
.page-id-170 h3,
.page-id-181 h3 {
  margin-top: 10px !important;
  font-size: 20px;
}

/* ===============================
   SEARCH RESULT PAGE ONLY
 =============================== */

.search-result {
    background: #fff;
    padding: 20px 0 50px;
    font-family: var(--font-heading);
}

/* Layout */
.search-result .container {
    display: flex;
    gap: 35px;
    padding: 0 16px;
}

/* Sidebar */
.search-result .sidebar {
  width: 25%;
  background: #fff;
  position: sticky;
  top: 20px;
  height: fit-content;
  border-radius: 10px;
  z-index: 99;
}

.search-result .sidebar h3 {
  margin: 0 0;
  font-size: 18px;
}

.search-result .sidebar h4 {
  font-size: 16px;
  margin-block: 13px;
}

.search-result .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-result .sidebar li {
  margin-bottom: 8px;
  font-size: 14px;
}

.search-term-display {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  border: 0 !important;
  padding-bottom: 10px;
}

.search-term-display p {
  margin-bottom: 0 !important;
}

/* Main */
.search-result .main {
  width: 75%;
}

/* Top Bar */
.search-result .search-topbar {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border-radius: 4px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* Filter button */
.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

button.filter-btn:hover {
  background: var(--primary-main);
  color: #fff;
}

/* Right side */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* In stock button */
.stock-btn {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.stock-btn:has(:not(:empty)) {
  font-weight: 500;
}

/* Select wrapper */
.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 36px 8px 34px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

/* Icon inside select */
.select-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #555;
  pointer-events: none;
}

/* Dropdown arrow */
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #555;
  pointer-events: none;
}

/* Left count */
.search-result .product-count {
  font-weight: bold;
}


/* Left */
.search-result .topbar-left {
  font-size: 15px;
  color: #858585;
 font-family: var(--font-main);
}

.search-result .topbar-left .count {
  color: #666;
  margin-left: 6px;
}

/* Right */
.search-result .topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.search-result .topbar-btn {
  padding: 3px 10px;
  font-size: 13px;
  background: #f7f7f7;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 3px;
}

.search-result .topbar-btn:hover {
  background: var(--primary-main);
  color: #fff;
  border-color: #0097a7;
}

/* Link */
.search-result .topbar-link {
  font-size: 13px;
  color: var(--primary-main);
  text-decoration: none;
  margin-left: 4px;
}

/* Select */
.search-result .topbar-select {
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-result .topbar-select label {
  font-size: 13px;
  color: #555;
}

.search-result .topbar-select select {
  padding: 6px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.search-result .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
}

.search-result .products a {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}

/* Product Card */
.search-result .card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  position: relative;
}

.search-result .card img {
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

.search-result .card h4 {
    font-size: 17px;
    margin-block: 10px 3px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-main);
    max-width: 180px;
}

.search-result .card p {
  font-size: 12px;
  margin: 3px 0;
  color: #555;
}

.search-result .price {
    font-weight: 500;
    margin-block: 0px !important;
    font-size: 14px !important;
    color: #737373;
}

.search-result .stock {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.search-result .card button {
  margin-top: auto;
  padding: 8px;
  background: var(--primary-main);
  color: #fff;
  border: none;
  cursor: pointer;
}

.category-header a, .brand-header a {
    font-size: 14px;
}

/* Pagination */
.pagination-container {
    font-family: sans-serif;
    text-align: center;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-gray);
}

.pagination-info {
    margin-bottom: 8px;
    color: var(--primary-main);
}
.pagination {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    border: 0;
    padding-block: 10px 0;
    width: 100%;
    justify-content: flex-end;
}

.pagination a {
    display: inline-block;
    padding: 6px 12px;
    text-decoration: none;
    color: #2E58E5;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.pagination a.page {
    background: none;
    color: var(--primary-main);
    width: 26px;
    height: 26px;
    font-size: 14px !important;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a.page.active {
    background: #ffc107; 
    color: #000;
}
.pagination .page-numbers li .page-numbers.current {
    background-color: #FFD90C;
    color: var(--primary-main);
    border-radius: 50px;
}

.pagination a:hover {
    background: #0073e6;
    color: #fff;
}

.pagination a.prev, .pagination a.next {
    font-size: 12px;
    width: 35px;
    height: 36.28PX;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
a.prev i , a.next i {
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
}

a.prev:hover i , a.next:hover i{
    transform: none !important;
}
.breadcrumb-container {
    background: #f6f6f8;
    padding: 0 16px;
}

nav.yoast-breadcrumbs {
    margin: 0 auto;
    width: 100%;
    padding: 1rem 0rem ;
    border-bottom: 1px solid #f6f6f8;
    max-width: 1200PX;
}
nav.yoast-breadcrumbs a {
    color: var(--primary-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    gap: 4px;
    font-size: 13px;
    padding-inline: 5px;
}

nav.yoast-breadcrumbs a:hover {
    color: #806D06; /* darker blue on hover */
    text-decoration: none;
}

/* Current page */
nav.yoast-breadcrumbs .breadcrumb_last {
    color: #a3a3a3;
    font-weight: 500;
    font-size: 13px;
    padding-inline: 5px;
}
.yoast-breadcrumbs span span:first-child a::before {
    color: var(--primary-main) !important;
}

/* ===============================
   SEARCH DROPDOWN
================================ */

.search-dropdown {
  position: absolute;
  top: 141px;
  left: 50%;
  transform: translateX(-50%);
  width: 99vw;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 3fr;
  gap: 40px;
  padding: 30px 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

/* Columns */
.search-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.search-col ul li {
  margin-bottom: 10px;
}

.search-col ul li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.search-col ul li a:hover {
  color: var(--primary-main);
  font-weight: 600;
}

/* Divider lines */
.search-col {
  position: relative;
}

.search-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: #eee;
}


.products-grid .product-card {
  padding: 0 !important;
}

a:focus,
button:focus,
.button.alt:focus,
input:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.product-header .header-text {
    max-width: 600px;
    p{
        text-align: left;
    }
}
.product-link img ,
 a.woocommerce-LoopProduct-link.woocommerce-loop-product__link img,
 .search-result .products a img ,.wp-block-product-new .wc-block-grid__product-image img{
    transition: transform 0.3s ease !important; 
}

.product-link:hover img ,
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link:hover img,
.search-result .products a:hover img , .wp-block-product-new .wc-block-grid__products li :hover img{
    transform: scale(1.09);
}
.product-link h3:hover,
 a.woocommerce-LoopProduct-link.woocommerce-loop-product__link h2:hover,
 .search-result .card h4:hover , .wp-block-product-new .wc-block-grid__products .wc-block-grid__product-title:hover {
    color: #806D06 !important;
}

.product-section.new .dash::after {
  left: 110px;
}
.product-section .dash::after {
    left: 150px;
}
.header-text h1 {
  margin-bottom: 0;
  text-align: left;
}

.shop-categories-header>div {
  max-width: 610px;
}

/*--------industrial--------*/
.cta-gradient-section {
  padding: 50px 0;
  background: linear-gradient(282.62deg, #887406 -241.2%, #000000 100%);
}

.cta-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cta-info , .cta-media{
    flex: 0 0 46%;
}

.cta-media img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  object-fit: cover;
}

.cta-info {
  max-width: 520px;
  color: #fff;
}

.cta-info .dash {
  color: #fff;
}

.cta-info .header-title {
  color: #fff;
}

.cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #FFD90C;
  color: #000;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #FFD90C;
  text-transform: capitalize;
}

.cta-button:hover {
  background: #fff;
  transform: translateY(-2px);
  border-color: #000;
  color: #000;
}

/*---------quality-section---------*/

.quality-section {
  padding: 50px 0 0;
}

.quality-wrap {
  max-width: 996px;
  margin: auto;
  padding: 0 20px;
}

.quality-head {
  text-align: center;
  max-width: 720px;
  margin: auto;
}

.quality-head .dash {
  text-align: center;
}

.quality-head h2.dash::after {
  left: 60%;
}

.quality-head p {
  color: #555;
  line-height: 1.6;
}

.quality-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quality-card {
  background: linear-gradient(120.79deg, #FFFFFF 35.92%, #FFF7CE 100%);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.quality-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.quality-icon svg {
  width: 40px;
  height: 40px;
  fill: #000;
}

.quality-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.quality-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Wide card */
.quality-wide {
  grid-column: span 2;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.quality-wide-content {
  flex: 1;
}

.doc-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #0A0A0A;
  text-decoration: none;
}

.doc-link:hover {
  text-decoration: underline;
}

/*---- feature-product -----*/

.product-section {
  text-align: center;
  padding: 50px 20px;
}


.product-section .product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.product-section .product {
  /* border: 1px solid #e0e0e0; */
  padding: 0;
  text-align: left;
  background-color: #fff;
  width: 100%;
  position: relative;
}
a.product-link {
    display: block;
    height: 100%;
}
a.product-link:hover ,a.product-link:hover span{
  text-decoration: none ;
}


.product-section .product img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 0px;
    margin-bottom: 0 !important;
}

.product-section .product h3 {
    font-size: 17px;
    margin-block: 10px 3px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-main);
}


.product-section .product .price {
  /*font-size: 14px;*/
  margin-top: 0 !important;
  font-weight: 500;
  color: #737373;
  margin-bottom: 4px !important;
}
body .product-section a {
  background: #fff;
}


.add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 5px;
    margin-top: 7px;
}
.add-to-cart:hover {
    background: #fff;
    border-color :var(--border-gray);
}
.add-to-cart:hover a {
    background: #fff !important;
    text-decoration: underline;
    color: var(--primary-main);
    margin: 0 !important;
}

body .add-to-cart a , .add_to_cart_button , .product_type_simple{
    outline: 0 !important;
    background: #000;
    padding: 8px 5px !important;
    /*margin-top: 5px !important;*/
    transition: all 0.3s ease;
    font-weight: 400 !important;
    color: #fff;
}
.add-to-cart img {
  width: 20px !important;
  height: 20px !important;
  object-fit: cover;
}


.add-to-cart .text {
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}


.product-section .view-all {
  display: inline-block;
  margin-top: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #007BFF;
  transition: color 0.3s ease;
}

.product-section .view-all:hover {
  color: #0056b3;
}


body .footer-social a {
  outline: none !important;

}
    
/*--------cta---------*/
.cta-section {
  padding: 60px 20px;
}

.quote-section {
  display: flex;
  align-items: center;

  background-size: cover;
  background-position: center;
  max-width: 996px;
  width: 100%;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  overflow: hidden;
  margin: auto;
  position: relative;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 64.59%, #0A0A0A 100%);
  z-index: 1;
}

.quote-content {
  text-align: left;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.description {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  background: #FFD90C;
  color: #000;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.upload-btn:hover {
  background-color: #ffffff;
  color: #000;
}

.arrow {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.quote-section img {
  max-width: 100%;
}


.action-link:hover,
.action-link:hover span,
.action-link:hover i,
.account-menu a:hover i,
a.logo:hover span {
  text-decoration: none;
  transform: none;
}

#how-login-form {
  position: relative;
  padding: 5px 12px !important;
}

/* ================================
   POPUP WRAPPER
================================ */
.wmc-content {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 100vh !important;
  /*max-height: 95vh !important;*/
  width: 100% !important;
  max-width: 420px !important;
  background: #ffffff !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2) !important;
  font-family: var(--font-heading);
  overflow: hidden !important;
}

/* ================================
min-cart
================================ */
.wmc-content h3 {
  justify-content: flex-start;
  padding: 0 20px;
  margin: 0 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid var(--border-gray) !important;
  background: transparent;
  color: #000;
  text-align: left;
}

/*----PRODUCTS SCROLL AREA-----*/
.wmc-products {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 10px 20px !important;
    margin: 0 !important;
    list-style: none !important;
    height: calc(100vh - 135px);
}
/*----PRODUCT ITEM-----*/

.wmc-products li {
  display: flex !important;
  gap: 14px !important;
  padding: 15px 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  position: relative !important;
}

/* Remove button */
.wmc-remove {
  position: absolute !important;
  top: 36px;
  right: 0 !important;
  width: auto;
}

.wmc-remove a {
  font-size: 16px !important;
  color: #0a0a0a !important;
  text-decoration: none !important;
  transition: 0.2s ease !important;
  width: 16px;
  width: 1.3rem !important;
  height: 1.3rem !important;
  background: var(--primary-main);
  border-radius: 50px;
  border: 1px solid transparent;
  color: #fff !important;
}

.wmc-remove a.remove::before {
  content: none !important;
}

.wmc-remove a:hover {
  color: var(--primary-main) !important;
  border-color: var(--border-gray);
  background: #fff;
}


/*--------PRODUCT IMAGE---------*/

.wmc-image img {
  object-fit: cover !important;
  border-radius: 12px !important;
  /*border: 1px solid #eee !important;*/
  width: 100%;
  height: 100%;
}

/*------- PRODUCT DETAILS -------*/
.wmc-details {
  flex: 1 !important;
  padding-right: 41px !important;
}

.wmc-product-title h4 {
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  margin: 0 0 8px !important;
  color: #111 !important;
  text-align: left;
}

.wmc-details p {
  font-size: 14px !important;
  margin: 0 !important;
  color: #737373 !important;
  text-align: left;
}

.wmc-price {
  font-weight: 500 !important;
  color: #737373 !important;
}


/*--------- SUBTOTAL (STICKY)----------*/
.wmc-subtotal {
  padding: 0px 20px !important;
  border-top: 1px solid #eaeaea !important;
  background: #fff !important;
}

.wmc-subtotal h5 {
  font-weight: 600 !important;
  justify-content: space-between !important;
  border: 0 !important;
}


/*----BOTTOM BUTTONS (STICKY)-----*/

.wmc-bottom-buttons {
  padding: 8px 20px 6px !important;
  display: flex !important;
  gap: 12px !important;
  background: #fff !important;
  border-top: 1px solid #eee !important;
}

.wmc-bottom-buttons a {
  flex: 1 !important;
  padding: 14px 0 !important;
  text-align: center !important;
  border-radius: 5px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: 0.25s ease !important;
  height: 40px;
}

/* Bottom buttons – smooth transitions */
.wmc-bottom-buttons a {
    transition: background-color 0.3s ease,
                color 0.3s ease,
                border 0.3s ease;
}

/* View Cart */
.wmc-bottom-buttons a:first-child {
    background: #f4f4f4 !important;
    color: #222 !important;
}

.wmc-bottom-buttons a:first-child:hover {
    background: #fff !important;
    color: var(--primary-main) !important;
    border: 1px solid #000;
}

/* Checkout */
.wmc-bottom-buttons a:last-child {
    background: #000 !important;
    color: #fff !important;
}

/* Checkout hover */
.wmc-bottom-buttons a:last-child:hover {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
}



a.added_to_cart.wc-forward {
  display: none;
}

.category-list li a {
  flex-direction: column;
  align-items: flex-start;
}

 .swiper-button-next:after,
 .swiper-button-prev:after { font-size: 30px; display:none; }


 .swiper-button-next::before {
    content: "\f178" !important; /* Right arrow in Font Awesome */
    font-family: "Font Awesome 5 Free" !important; /* adjust version if needed */
    font-weight: 900 !important; /* solid icons */
    font-size: 16px !important;
    color: var(--primary-main) !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

 .swiper-button-prev::before {
    content: "\f177" !important; /* Left arrow in Font Awesome */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: var(--primary-main) !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-main) !important;
    width: 16px !important;
    height: 16px !important;
    border: 1px solid var(--primary-main);
    padding: 19px;
    border-radius: 50px;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  background: #FFD90C;
  border-color: #FFD90C;
}

/*--------------------
        FAQs
---------------------*/

  .faq-page {
  padding: 50px 0;
  background: #fff;
}



.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
    margin-bottom: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid #b6b6b6;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f172a;
    border-radius: 0;
}

.faq-question span {
    font-size: 17px;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    background: #FFD90C;
    /* padding: 15px; */
    border-radius: 50px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
   background: #000 !important;
    color: #fff;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}
.faq-header .dash {
  text-align: center;
}

.faq-header .dash::after {
  left: 54%;
}
.faq-question:hover {
    background: #fff;
}


/* ============================= */
/* CATEGORY HERO (TOP SECTION)  */
/* ============================= */

.woocommerce-products-header {
    padding: 0px 16px 10px;
    text-align: left;
}

.woocommerce-products-header__title {
    color: var(--primary-main);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.term-description {
    margin: 15px auto 0;
}

.term-description p {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
}

.archive .content-area {
    width: 100%;
    float: left;
    margin-right: 4.347826087%;
}

/* ============================= */
/* PRODUCT CATEGORY GRID        */
/* ============================= */

.woocommerce ul.products li.product-category {
    list-style: none;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.woocommerce ul.products li.product-category:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

/* ============================= */
/* CATEGORY LINK                */
/* ============================= */

.woocommerce ul.products li.product-category a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ============================= */
/* CATEGORY IMAGE               */
/* ============================= */

.woocommerce ul.products li.product-category img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #f9fafb;
    padding: 10px;
}

/* ============================= */
/* CATEGORY TITLE               */
/* ============================= */

.woocommerce ul.products li.product-category h2 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Product count */
.woocommerce ul.products li.product-category h2 mark {
    background: none;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

/* ============================= */
/* HOVER OVERLAY EFFECT         */
/* ============================= */

.woocommerce ul.products li.product-category::after {
    content: "View Category";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.75)
    );
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
    pointer-events: none;
}

.woocommerce ul.products li.product-category:hover::after {
    opacity: 1;
}

/* ============================= */
/* GRID SPACING                 */
/* ============================= */

.woocommerce ul.products {
    gap: 28px;
}

div#primary {
    width: 100%;
    padding: 0;
}

span.stock-label.in-stock {
    font-size: 14px;
    color: #459730;
}
span.stock-label.out-of-stock {
    font-size: 14px;
    color: #BC1B1B;
}

.wishlist-icon span {
    display: none;
}
.wishlist-icon div {
    margin-left: auto;
    margin-right: 0;
}


#viewAllLink span {
    text-decoration: none;
}

#viewAllLink:hover span {
    text-decoration: none;
}
.wc-category-products {
    width: 71% !important;
}
ul.products.columns-3 {
  display: grid;
  gap: 15px;
}

ul.products.columns-3 li {
    width: 100% !IMPORTANT;
    margin: 0 !important;
    text-align: left;
    position: relative;
    max-width: 100% !IMPORTANT;
    min-width: 100% !important;
}
ul.products.columns-3 li a {
    text-align: left;
    max-width: 100% !IMPORTANT;
    display: inline-flex;
    width: 100%;
}
ul.products.columns-3 .woocommerce-loop-product__title {
    font-size: 17px !important;
    margin-block: 10px 3px !important;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-main);
    max-width: 250px;
}
.sale {
    position: relative;
}
span.onsale {
    position: absolute;
    top: 19px;
    left: 0;
}

ul.products.columns-3 li  img {
  width: 185px;
  max-height: 185px;
  object-fit: contain;
}
 ul.products::before, ul.products::after{
  content: none !important;
 }
.products a:hover span {
    text-decoration: none;
}
 

body a[rel~='nofollow'], body a[rel~='sponsored'], body a[rel~='ugc'] {
    outline: none !important;   
}
.add_to_cart_button, .product_type_simple {
    padding: 12px 5px !important;
    border: 1px solid transparent;
    background: #000 !important;
    text-align: center;
    width: 100%;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 5px !important;
    color: #fff !important;
    margin-top: 5px;
}

body .add_to_cart_button:hover, body .product_type_simple:hover{
  background: #fff !important;
  border: 1px solid #b6b6b6 !important;
  color: var(--primary-main) !important;
  text-decoration: underline !important;
}


.storefront-sorting:last-child{
    display: none;
}
.storefront-sorting {
    max-width: 1200px;
    margin: 0 auto 10px !important;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: end;
}
.storefront-sorting form {
    margin-right: 16px;
}
.storefront-sorting p{
  display: none;
}

.woocommerce-pagination .page-numbers li .page-numbers.current{
  background: #FFD90C !important;
  color: #000 !important;
  border-radius: 50px;
}
.woocommerce-pagination .page-numbers li .page-numbers {
  background: transparent; !important;
    border-radius: 50px;
    width: 30px;
    height: 30px ;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.next.page-numbers, a.prev.page-numbers {
    border: 1px solid #000 !important;
    background: #000 !important;
    color: #fff !important;
}
ul.page-numbers {
    display: flex;
    gap: 4px;
}


/*wishlist-page*/

/* General page layout */
.page-id-248 #primary ,   
.page-id-40 #primary ,
.page-id-170 #primary,
.page-id-181 #primary,
.page-id-168 #primary ,
.page-id-164  #primary  {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}
.page-id-248 body {
    background: #f9f9f9;
}

.page-id-248 .entry-header h1.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 30px;
}
.wishlist-title.wishlist-title-with-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    width: 100%;
    h2{
      text-transform: capitalize;
    }
}
/* Wishlist title */
.page-id-248 .wishlist-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.page-id-248 .wishlist-title{
  margin-bottom: 0 !important;
}

.page-id-248 .wishlist-title h2 {
    font-size: 1.8rem;
    margin: 0;
    color: #333;
}
.page-id-248 .wishlist-title h2:hover{
  background: transparent !IMPORTANT;
}
table.wishlist_table thead th, table.wishlist_table tbody td {
    border-bottom: 1px solid #e7e7e7 !important;
}

.page-id-248 .btn.button.show-title-form {
    padding: 6px 12px;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    color: #222;
    cursor: pointer;
    transition: all 0.3s ease;
   
}

.page-id-248 .btn.button.show-title-form:hover {
    background-color: #ffd90c;
    color: #000;
    border-color: #ffd90c;
}

/* Hidden title input form */
.page-id-248 .hidden-title-form input {
    padding: 6px 10px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 200px;
}

.page-id-248 .edit-title-buttons a {
    margin-left: 6px;
    cursor: pointer;
    color: #555;
    transition: color 0.3s ease;
}

.page-id-248 .edit-title-buttons a:hover {
    color: #ffd90c;
}

/* Wishlist table */
.page-id-248 .wishlist_table {
    width: 100%;
    border-collapse: separate;
    background: transparent;
    overflow: hidden;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
}

.page-id-248 .wishlist_table th,
 .page-id-248 .wishlist_table td {
    text-align: left ;
    padding: 12px 15px !important;
    font-size: 0.95rem;
}
td.product-name , td.product-price{
    color: var(--primary-mian) !important;
}
.page-id-248 .wishlist_table th {
    background-color: transparent;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 0.85rem;
    border-top: 0 !important;
}

.page-id-248 .wishlist_table td.product-remove,
.page-id-248 .wishlist_table td.product-add-to-cart {
    text-align: center;
}

/* Product thumbnails */
.page-id-248 .wishlist_table td.product-thumbnail img {
    width: 50px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.page-id-248 td.product-add-to-cart a {
    padding: 6px !important;
    margin-bottom: 0 !important;
    border-radius: 5px;
    text-decoration: none !important;
    font-size: 12px;
    height: auto;
    padding: 4px  !IMPORTANT;
    max-width: 100px;
}
table.shop_table a {
    text-decoration: none !important;
}
.product-add-to-cart a.remove_from_wishlist.button {
    display: none !important;
}
.page-id-248 td.product-add-to-cart {
    height: 65px;
}

.page-id-248 .wishlist_table td.product-thumbnail img:hover {
    transform: scale(1.08);
}

/* Price & Stock */
.page-id-248 th.product-price span,
.page-id-248 th.product-stock-status span {
    font-weight: 600;
}
.page-id-248 td.product-price span,
.page-id-248 td.product-stock-status span {
    font-weight: 400;
    font-size: 13px;
}

.page-id-248 .wishlist-out-of-stock {
    color: #ff4d4f;
    font-weight: 600;
}

/* Buttons */
.page-id-248 .remove_from_wishlist.button {
    padding: 6px 12px;
    background-color: #ffd90c;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.page-id-248 .remove_from_wishlist.button:hover {
    background-color: #e6c100;
    transform: scale(1.05);
}

/* Share buttons */
.page-id-248 .yith-wcwl-share {
    margin-top: 30px;
    padding: 15px 20px;
}

.page-id-248 .yith-wcwl-share-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.page-id-248 .yith-wcwl-share ul {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.page-id-248 .yith-wcwl-share ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #333;
    transition: all 0.3s ease;
}

.page-id-248 .yith-wcwl-share ul li a:hover {
    background-color: #ffd90c;
    color: #000;
}
tbody.wishlist-items-wrapper tr td a , tbody.wishlist-items-wrapper tr td span  {
    height: 39.99px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}





/* Hover */
.page-id-248 td.product-add-to-cart a.add_to_cart_button:hover {
    background-color: #f3f3f3;
}

.page-id-248 td.product-add-to-cart a.add_to_cart_button:hover::before {
    color: #000;
}
td.product-add-to-cart {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.wishlist-items-wrapper td a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 45px;
    padding: 0 !important;
}


.wishlist_table .product-stock-status span.wishlist-in-stock {
    color: #459730 !important;
}


/*.rfq-wrapper {
    padding: 10px;
}*/

svg#yith-wcwl-icon-bookmark , svg#yith-wcwl-icon-bookmark-outline{
width : 21px !important;
height: 21px !important;
}


/* ================================
   GLOBAL CHECKOUT WRAPPER
================================ */
.wc-block-checkout {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 10px;
    JUSTIFY-CONTENT: space-between;
}
div#ppcp-recaptcha-v2-container {
    MARGIN: 0 !IMPORTANT;
}
/* ================================
   CHECKOUT STEPS (CARD STYLE)
================================ */
.wc-block-components-checkout-step {
    background: transparent !important;
    border-radius: 14px;
}
.wc-block-components-checkout-step__heading-container {
    margin-bottom: 0 !important;
}
/* Step titles */
.wc-block-components-checkout-step__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

/* ================================
   INPUT FIELDS
================================ */
.wc-block-components-text-input input,
 .wc-blocks-components-select__select {
    border-radius: 10px !important;
    border: 1px solid var(--border-gray) !IMPORTANT;
    font-size: 14px !important;
    transition: border-color .2s, box-shadow .2s;
}

.wc-block-components-text-input input:focus,
.wc-blocks-components-select__select:focus {
    border-color: #FFD90C;
    box-shadow: 0 0 0 2px rgba(255,217,12,0.3);
    outline: none;
}

.wc-block-components-product-metadata__description p {
    display: flex;
}
.wc-block-components-shipping-rates-control__package label , .wc-block-components-radio-control>div , .wc-block-components-radio-control label{
    box-shadow: none !IMPORTANT;
    border: 1px solid var(--border-gray);
}

.wc-block-components-order-summary-item {
    border-bottom: 1px solid #b6b6b6;
    padding: 1rem 0;
}

a.wc-block-components-checkout-return-to-cart-button {
    border: 1px solid var(--border-gray);
    padding: 14px 0;
    width: 154px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.wc-block-components-checkout-return-to-cart-button svg {
    left: 5px;
}
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    border-radius: 5px !IMPORTANT;
    padding: 13px 12px;
  }

.wc-block-checkout__actions_row {
    justify-content: flex-start !IMPORTANT;
}
.single-product .wc-block-components-sidebar {
    width: 40% !IMPORTANT;
    padding-left: 0 !important;

}
.single-product .wc-block-components-sidebar-layout .wc-block-components-main{
  padding-right: 0;
  width: 58% !important;
  border: 1px solid var(--border-gray);
  padding: 20px;
  border-radius: 5px;
}
input{
  box-shadow: none !important;
}
/*--------CHECKOUT END---------*/

a.added_to_cart.wc-forward {
    display: none !important;
}

.search-result .no-results {
    grid-column: 1 / -1; 
    text-align: center; 
    padding: 60px 20px; 
    border: 1px dashed #ddd; 
    border-radius: 8px; 
}

.search-result .no-results h3 {
    font-size: 20px; 
    margin-bottom: 10px; 
    color: #333; 
}

section.category-headerr {
    padding: 50px 0 0;
}

/* ================================
   GLOBAL PRODUCT PAGE LAYOUT
================================ */
.single-product .site-main {
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 24px 20px;
}
/*.single-product .yith-add-to-wishlist-button-block{
    position: absolute;
    top: 0;
    right: 0;
}*/

.single-product .product {
    margin: 0 auto;
}

/* Sale badge fix */
.single-product .site-main .onsale {
    z-index: 9;
    background: #fff;
    border: 1px solid var(--border-gray);
    color: var(--text-dark);
    LEFT: 20PX;
}
.single-product .product_title {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 6px;
    text-align: left;
}
/* ================================
   GALLERY LAYOUT
================================ */
.woocommerce-product-gallery {
    border-radius: 6px;
    padding: 16px;
    MARGIN-RIGHT: 0 !important;
    WIDTH: 50% !IMPORTANT;
}

/* Main image height */
.flex-viewport {
    height: 360px !important;
}
ol.flex-control-nav.flex-control-thumbs {
    DISPLAY: FLEX;
    GAP: 10PX;
    JUSTIFY-CONTENT: center;
}

ol.flex-control-nav.flex-control-thumbs li {
    WIDTH: 90PX !IMPORTANT;
    MAX-HEIGHT: 150PX;
    MARGIN: 0 !IMPORTANT;
}
/* Thumbnail images */
.flex-control-thumbs img {
    border: 1px solid var(--border-gray);
    padding: 4px;  
}


.flex-control-thumbs img:hover {
    border-color: #9ca3af;
}

/* ================================
   SUMMARY SECTION
================================ */
.summary.entry-summary {
    padding-left: 0;
}
.product_title {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.price {
    font-size: 20px !IMPORTANT;
    DISPLAY: FLEX;
    GAP: 10PX;
    margin: 0 0 10px!important;
    font-weight: 600;
}
p.price .woocommerce-Price-currencySymbol {
    font-size: 14px;
    font-weight: 700;
}
.stock {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 18px;
}

/* ================================
   CART + BUTTONS
================================ */
form.cart {
    display: flex;
    padding: 0 !important;
    gap: 5px;
    flex-wrap: wrap;
}

.quantity input.qty {
    /* border: 1px solid var(--border-gray); */
    border-radius: 4px;
    padding: 6px 4px;
    width: 57px;
    BACKGROUND: transparent;
    font-size: 14px;
}

/* Add to cart */
.single_add_to_cart_button {
    background: #fff;
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    padding: 4px 12px;
    font-weight: 500;
}
span.yith-wcwl-add-to-wishlist-button__label {
    display: none;
}

.single_add_to_cart_button:hover {
    background: #fff;
    border: 1px solid #000;
    color: ;
}

/* ================================
   RFQ BUTTON
================================ */
.rfq-btn {
    display: inline-block;
    margin-top: 12px;
    background: #fff;
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    padding: 5px 10px;
    font-weight: 500;
    margin: 0 !important;
}

.rfq-btn:hover {
    background: var(--bg-light);
}
.product-meta {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px 15px;
}
 div.product .product-meta .product-categories, .single-product div.product .product-meta .product-brands {
    font-size: 14px;
    color: var(--primary-main);
}
div.product .product-meta .product-categories strong, .single-product div.product .product-meta .product-brands strong {
  font-weight: 400;
}

.single-product .product_meta {
    display: none;
}
.product-description-accordion button {
    width: 100%;
    border-radius: 0;
    background: #fff;
    justify-content: flex-start;
    padding-inline: 0;
    padding-block: 12px;
    border-top: 1px solid var(--border-gray);
    position: relative;
}
.accordion-content p {
    font-size: 13px;
    color: #727272;
    padding: 10px 5px;
}
button.accordion-toggle::before {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 20px;
    line-height: 1;
    transform: translateY(-50%);
}
/* Open state */
.accordion-toggle[aria-expanded="true"]::before {
    content: "−"; /* minus sign */
}

img.flex-active {
    border-color: #000;
}
.summary.entry-summary {
    width: 45% !important;
}
/* ================================
   MOBILE
================================ */
.back-to-back {
    font-size: 14px;
    line-height: 1.6 !important;
    color: gray;
}
.search-result .card .wishlist-icon{
  right: 10px;
}

.storefront-wc-brands-single-product {
    display: none;
}
section.related.products h2 , h2.wp-block-heading{
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
    overflow: hidden !important;
    text-align: center;
    margin-bottom: 32px;
}
section.related.products h2::before , h2.wp-block-heading::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    width: 100%;
    height: 1px;
    background: #ddd !important;
    border: solid #fff;
    border-width: 0 10px;
    margin-left: -100%;
    background: linear-gradient(to left,
             rgba(0, 0, 0, 0.4),
             rgba(0, 0, 0, 0.1),
             transparent);
}
section.related.products h2::after , h2.wp-block-heading::after{
    content: "";
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    width: 100%;
    height: 1px;
    background: #ddd !important;
    border: solid #fff;
    border-width: 0 10px;
    margin-right: -100%;
    background: linear-gradient(to right,
             rgba(0, 0, 0, 0.4),
             rgba(0, 0, 0, 0.1),
             transparent);
}
section.related.products ul li h2::before,
section.related.products ul li h2::after {
    content: none;
}
section.related.products ul li h2{
  text-align: left;
}
section.related.products .price{
  margin-bottom: 10px !important;
}

/* Parent container */
#primary.content-area {
    max-width: 1216px;
    margin: 40px auto;
    padding: 0px 16PX;
    font-family: 'Arial', sans-serif;
}

/* Main title */
.entry-title {
    font-size: 2.5em;
    color: #2a9d8f;
    text-align: center;
    margin-bottom: 30px;
}

/* Empty cart notice */
.wp-block-woocommerce-empty-cart-block h2.wp-block-heading {
    font-size: 14px;
    color: var(--primary-main);
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-transform: capitalize;
}
hr.wp-block-separator.has-alpha-channel-opacity.is-style-dots {
    display: none;
}

/* Separator style */
.wp-block-separator.is-style-dots {
    border-top: 2px dotted #2a9d8f;
    margin: 40px 0;
}

/* "New in store" heading */
.wp-block-woocommerce-product-new + h2 {
    font-size: 2em;
    color: #264653;
    text-align: center;
    margin-bottom: 20px;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
    width: 4em !important;
    mask-size: 2rem;
    margin-bottom: 0;
}

h2.wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title::after {
    display: none;
}
ul.wc-block-grid__products li {
    width: 100% !important;
    max-width: 100% !important;
}
.page-id-41 .wc-block-components-sidebar-layout .wc-block-components-main {
    border: 1px solid var(--border-gray);
    padding: 10px;
    border-radius: 5px;
}

ul.wc-block-grid__products {
    margin: 0 auto;
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
}

button.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--icon-button.yith-wcwl-add-to-wishlist-button-over-image.yith-wcwl-add-to-wishlist-button-over-image--top-left {
    left: 92%;
    margin: 0;
    padding: 0;
}
li.wc-block-grid__product.add-to-wishlist-before_image {
    text-align: left;
}

/* ================================
   BRAND PAGE ONLY
   Parent: .wc-page-brand
================================ */
.wc-page-brand ul.products.columns-3 ,.wc-page-shop ul.products.columns-3 , .related.products .products.columns-3{
   grid-template-columns: repeat(4, 1fr);
   margin-bottom: 50px;
}
.wc-page-brand .back-to-back {
    font-size: 13px;
    color: gray;
    line-height: 100%;
}
.wc-page-brand .price{
  margin-top: 0 !important;
}
.wc-page-brand .woocommerce-products-header {
    flex-direction: row !important;
    justify-content: center;
    gap: 10px;
    margin: 0 !important;
}

/* ================================
   cart page 
   Parent: .woocommerce-cart
================================ */
.woocommerce-cart .wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block {
    padding: 24px;
    border: 1px solid #ddd;
}
.wc-block-components-quantity-selector{
  border: 0 !important;
}
button.wc-block-components-quantity-selector__button.wc-block-components-quantity-selector__button--minus , button.wc-block-components-quantity-selector__button.wc-block-components-quantity-selector__button--plus {
    background: #111;
    color: #fff;
    border: none;
    opacity: 1 !important;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
}
button.wc-block-components-quantity-selector__button.wc-block-components-quantity-selector__button--minus {
    background: #111;
    color: #fff;
    border: none;
    opacity: 1 !important;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
}

/* ================================
   cart page when empty
   Parent: .wp-block-product-new
================================ */
.wp-block-product-new .wc-block-grid__product-image img, .wp-block-product-new .wc-block-grid__product-image {
    height: 185px !important;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px !important;
}
.wp-block-product-new .wc-block-grid__product-title{
  font-size: 17px;
    margin-block: 0px !important;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-main);
    max-width: 250px;
}
.wp-block-product-new a.wc-block-grid__product-link{
  width: 100% !important;
}
.wp-block-product-new .price span {
    font-size: 14px;
    color: #737373;
    margin-bottom: 0 !important;
}
.wp-block-product-new .price {
  margin-bottom: 0 !important;
}

.wc-page-product .b2b-delivery-pdp{
  margin-bottom: 1rem;
}

.section.bg-dark h2.dash, .section.bg-dark .header-title {
    color: #fff;
    text-align: center;
}
.section.bg-dark h2.dash::after {
    background: #fff;
    left: 55%;
}

.value .about-img{
  margin-top: 0 ;
  border-radius: 50px 0px 0px 50px;
  overflow: hidden;
  height: auto;
 img {
    position: static;
   }
}

.about-img{
  position:relative;
}

.value .about-img::before {
    left: 71%;
    background: linear-gradient(90deg,  rgba(255, 255, 255, 0) 0% ,#ffffff 100%);
}

.why-us {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.why-us li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0px;
    margin-bottom: 12px;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    transition: all 0.3s ease;
    border-bottom: 1px solid #b6b6b6;
}

.why-us .icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us .icon i {
    color: #000;
    font-size: 16px;
}

.quality-icon i {
    font-size: 26px;
    color: #000;
}

/* RFQ Intro */
.rfq-intro {
    max-width: 640px;
    margin: 50px auto 10px;
    text-align: center;
}

.rfq-intro h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-main);
    font-weight: 400;
}

.rfq-intro p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-main);
    opacity: 0.85;
}

/* Labels */
.rfq-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--primary-main);
}

#rfq-form {
    max-width: 640px;
    margin: 0 auto 60px;
    padding: 20px;
    border: 1px solid var(--border-gray);
    background: #fff;
    font-family: inherit;
    width: 100%;
}

/* Message */
.rfq-message {
    /*margin-bottom: 20px;*/
    font-size: 14px;
    color: var(--primary-main);
}

/* Fields */
.rfq-field {
    margin-bottom: 20px;
}

.rfq-field input,
 .rfq-field textarea,
 .rfq-field select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid var(--border-gray);
    background: transparent;
    color: var(--primary-main);
    outline: none;
    transition: border 0.2s ease;
    box-shadow: none;
}

.rfq-field textarea {
    min-height: 100px;
    resize: vertical;
}

/* Placeholder */
.rfq-field input::placeholder,
.rfq-field textarea::placeholder {
    color: var(--primary-main);
    opacity: 0.6;
}

/* Focus */
.rfq-field input:focus,
.rfq-field textarea:focus {
    border-color: var(--primary-main);
}

/* Error text */
.rfq-field .error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: red;
}

/* Product label */
#rfq-form p strong {
    color: var(--primary-main);
}

/* Button */
#rfq-form button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid var(--border-gray);
    background: var(--primary-main);
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

#rfq-form button:hover {
    opacity: 0.9;
}
.rfq-row {
    display: flex;
    gap: 20px;
}

/* Make both fields equal width */
.rfq-row .rfq-field {
    flex: 1;
}

.rfq-field input::placeholder,
.rfq-field textarea::placeholder {
    font-size: 13px;
    opacity: 0.6;
}
/* Required star */
.rfq-field label.required::after {
    content: " *";
    color: red;
    font-weight: 500;
}

/* ===============================
   RFQ SweetAlert Minimal Design
================================ */

/* Popup container */
.swal2-popup {
    border: 1px solid var(--border-gray);
    border-radius: 0;
    padding: 32px;
    font-family: inherit;
}

/* Success icon */
.swal2-icon.swal2-success {
    border-color: var(--primary-main);
}

.swal2-success-line-tip,
.swal2-success-line-long {
    background-color: var(--primary-main);
}

.swal2-success-ring {
    border-color: var(--primary-main);
}

/* Remove white background artifacts */
.swal2-success-circular-line-left,
.swal2-success-circular-line-right,
.swal2-success-fix {
    background-color: #fff;
}

/* Title */
.swal2-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-main);
    margin-bottom: 10px;
}

/* Content text */
.swal2-html-container {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-main);
    opacity: 0.85;
}

/* Buttons */
.swal2-confirm {
    background: var(--primary-main) !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 10px 28px;
    font-size: 14px;
    border: 1px solid var(--border-gray);
}

.swal2-confirm:focus {
    box-shadow: none !important;
}

/* Remove extra buttons spacing */
.swal2-actions {
    margin-top: 24px;
}

.swal2-close {
    display: none !important;
}
.cta-info h2.dash::after {
    background: #fff;
}

.single-product div.product form.cart .quantity {
    margin-right: 0px !important;
    width: auto !important;
    padding: 0;
    margin: 0;
}

.wc-page-category .products.columns-3{
   grid-template-columns: repeat(3, 1fr);
   margin-bottom: 50px;
 }

table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    width: 100% !important;
    font-family: inherit !important;
}

table.woocommerce-orders-table thead th {
    background: #0f172a !important;
    color: #fff !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
}

table.woocommerce-orders-table tbody tr {
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    border-radius: 8px !important;
    transition: all 0.25s ease !important;
    display: table-row !important;
}

table.woocommerce-orders-table tbody tr:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

table.woocommerce-orders-table td,
table.woocommerce-orders-table th {
    padding: 16px !important;
    border: none !important;
    font-size: 14px !important;
}

.woocommerce-orders-table__cell-order-number a {
    font-weight: 600 !important;
    color: #2563eb !important;
    text-decoration: none !important;
}

.woocommerce-orders-table__cell-order-number a:hover {
    text-decoration: underline !important;
}

.woocommerce-orders-table__cell-order-status {
    font-weight: 600 !important;
}

.woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status {
    color: #f59e0b !important;
}

.woocommerce-orders-table__cell-order-total {
    font-weight: 600 !important;
}

.woocommerce-button.button.view {
    background: #2563eb !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: all 0.25s ease !important;
}

.woocommerce-button.button.view:hover {
    background: #1e40af !important;
}

section.product-section.new .product-link {
    text-align: left;
}
/*section.product-section.new .add_to_cart_button {
    text-align: center;
}*/
.contact-form label .required {
    font-size: 11px;
    position: absolute;
    margin-left: 5px;
    font-weight: 400;
}
/*--------------------------------
brand-page
---------------------------*/
    .brand-directory{
        max-width:1200px;
        margin:auto;
        padding: 40px 0;
        width: 100%;
    }
    .brand-directory H3 {
        TEXT-ALIGN: CENTER;
    }
    .brand-letters {
        margin-block: 50px 30px;
    }

    .brand-letters a{
        display:inline-block;
        background:#ddd;
        padding:8px 14px;
        margin:3px;
        text-decoration:none;
        font-weight:600;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .brand-letters a:hover {
        background: #1a4c8f;
        color: #fff;
    }
    
    .brand-letters a.active {
        background: #000;
        color: #fff;
    }

    .brand-columns{
        display:grid;
        grid-template-columns:repeat(6,1fr);
        gap:40px;
        transition: opacity 0.3s ease;
    }

    .brand-columns.loading {
        opacity: 0.5;
        pointer-events: none;
    }

    .brand-group {
        transition: all 0.3s ease;
    }

    .brand-group.hidden {
        display: none;
    }

    .brand-group h3 {
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
        text-align: left;
    }
    .brand-group ul{
        list-style:none;
        padding:0;
        margin:0;
    }

    .brand-group li{
        margin:6px 0;
    }

    .brand-group li.hidden {
        display: none;
    }

 .brand-group a {
    text-decoration: none;
    color: #1a4c8f;
    gap: 0;
    width: 100%;
    max-width: 100% !important;
    justify-content: flex-start;
}
    
    .brand-directory .search-container {
        display: block !important;
        margin: 20px auto 20px;
    }
    
    .search-box {
        display: flex;
        max-width: 500px;
        margin: 0 auto;
        position: relative;
    }
    
  
    
    .no-results {
        text-align: center;
        padding: 40px;
        font-size: 18px;
        color: #666;
        grid-column: 1 / -1;
    }
    
    .search-hint {
        text-align: center;
        margin: 10px 0;
        color: #666;
        font-style: italic;
    }

    /* Clear search button */
    .clear-search {
        display: inline-block;
        margin-left: 10px;
        padding: 5px 10px;
        background: #f0f0f0;
        color: #666;
        text-decoration: none;
        border-radius: 3px;
        font-size: 14px;
        cursor: pointer;
    }
    
    .clear-search:hover {
        background: #ddd;
    }

    /* Search status */
    .search-status {
        text-align: center;
        margin: 10px 0;
        color: #666;
        min-height: 24px;
        font-size: 14px;
    }

    .highlight {
        background-color: #ffeb3b;
        font-weight: bold;
        padding: 0 2px;
    }

    /* Loading spinner */
    .spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(0,0,0,.1);
        border-radius: 50%;
        border-top-color: #1a4c8f;
        animation: spin 1s ease-in-out infinite;
        margin-left: 10px;
        vertical-align: middle;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* Minimum search length indicator - Updated for 1 character */
    .search-min-length {
        color: #999;
        font-size: 12px;
        text-align: center;
        margin-top: 5px;
        display: none; /* Hidden by default since we now accept 1 character */
    }



/*--------------------------------
       product categories
---------------------------*/


  .category-header .small-title {
    color: var(--primary-blue);
    text-align: center;
  }

  .category-header .main-title {
    color: var(--primary-blue);
  }

.category-header .description {
    font-size: 16px;
    color: #e0e0e0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}



.breadcrumb {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    bottom: 20px;
    position: absolute;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 2px;
}

.breadcrumb-item i {
  margin-right: 2px; /* space between icon and text */
  color: #fff;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #fff;
    margin-left: 1px;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #999;
}

.product-category-page {
    padding: 50px 0;
}
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
ul.category-list li {
    flex: 0 0 23%;
    max-width: 100%;
    background: linear-gradient(120.79deg, rgba(255, 255, 255, 0) 35.92%, #FFF7CE 100%);
    border-radius: 20px;
    border: 1px solid #B6B6B6;
    overflow: hidden;
    padding: 10px;
}

ul.category-list li h2 {
    font-size: 20px;
    max-width: 86%;
    margin-bottom: 4px ;
    color: var(--primary-main);
}
.category-list li a{
  padding: 0 !important;
}
ul.category-list li a:hover{
  transform: none;
}

span.shop-category-link {
    color: #000;
    margin-bottom: 0 !IMPORTANT;
}
li.category-item img {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    border-radius: 60px;
    padding: 10px;
    background: #f0f0f0;
}


/* =========================
   Rate Lock Page
========================= */

.ratelock-wrapper {
    max-width: 640px;
    margin: 60px auto;
    padding: 20px;
    border: 1px solid var(--border-gray);
    width: 100%;
}

/* Intro */
.ratelock-wrapper .rfq-intro h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-main);
    font-weight: 500;
}

/* Form */
#ratelock-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
}

/* Labels */
#ratelock-form label {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--primary-main);
    display: block;
    position: relative;
}

/* Inputs & Selects */
#ratelock-form input,
#ratelock-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid var(--border-gray);
    background: transparent;
    color: var(--primary-main);
    outline: none;
    box-shadow: none !important;
}

/* Focus */
#ratelock-form input:focus,
#ratelock-form select:focus {
    border-color: var(--primary-main);
}

/* Button */
#ratelock-form button {
    margin-top: 10px;
    padding: 14px;
    font-size: 14px;
    background: var(--primary-main);
    color: #fff;
    border: 1px solid var(--border-gray);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

#ratelock-form button:hover {
    opacity: 0.9;
}

/* Message */
#ratelock-message {
    margin-top: 20px;
    font-size: 14px;
    color: var(--primary-main);
}
.ratelock-field label.required::after {
    content: " *";
    color: red;
    font-weight: 500;
}
.ratelock-outer{
    margin: 0 10px;
}


/*--------------------------------
search-result
---------------------------*/
/* Sidebar */
.sidebar {
    width: 280px;
}

.filter-box {
    background: #fff;
    border: 1px solid #B6B6B6;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.filter-box h4 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.p-14 {
    padding: 14px;
}

.search-term-display h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-term {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-main);
    margin: 0;
}

.filter-search {
    position: relative;
    margin-bottom: 5px;
}

.filter-search input {
    width: 100%;
    padding: 7px 10px 7px 32px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid #B6B6B6;
    max-width: 250px;
}

.filter-search input:focus {
    outline: none;
}

.filter-search i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #777;
}

.filter-list {
    max-height: 220px;
    overflow-y: auto;
    padding-inline: 8px;
    border-top: 1px solid #b6b6b6;
}

.filter-list::-webkit-scrollbar {
    width: 4px;
}

.filter-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.filter-item {
    font-size: 13px;
    padding: 10px 3px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.filter-item label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin: 0;
    align-items: center;
}
.filter-item label div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-item input[type="checkbox"] {
    margin-right: 8px;
}

.filter-item .count {
    color: #777;
    font-size: 12px;
}

.search-result .clear-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-main);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    color: #fff;
}

.search-result .clear-btn:hover {
    background: #fff;
    border-color: var(--border-gray);
    color: var(--primary-main);
}

/* Adjust existing topbar */
.search-topbar {
    background: #fff;
    border: 1px solid #B6B6B6;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.topbar-left {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.select-wrap {
    position: relative;
}

.select-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
}

.select-wrap select {
    padding: 8px 25px 8px 30px;
    border: 1px solid #B6B6B6;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    appearance: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #4CAF50;
}
input:checked + .slider:before {
  transform: translateX(26px);
}


/*----------------------
single-product-page
------------------------------*/
table.shop_table.b2bking_tiered_price_table {
    border: 1px solid  #000;
    border-radius: 10px;
    margin: 32px 0;
    background: #fff !important;
    overflow: hidden;
}
.b2bking_tiered_price_table th {
    background: #000 !important;
    color: #fff;
    font-size: 12px;
}
body table.b2bking_tiered_price_table tbody td.b2bking_has_color {
    background: #000!important;
    background-color: #f0f2f7!important;
    color: #000 !important;
}
nav.storefront-product-pagination a {
    display: none;
}