/*
Theme Name: Youbuild
Author: You
Version: 1.0
*/

/* =============================================
   CSS VARIABLES
============================================== */
:root {
  --navy: #0d1b2a;
  --nav-bg: #0f1f30;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --border: #e5e5e5;
  --text: #1a1a1a;
  --text-muted: #666;
  --green: #25d366;
  --header-h: 68px;
  --subnav-h: 46px;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
  --font-sans:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

h1{
    font-weight: 600 !important;
    color: var(--color-slate-900) !important;
}
.sku{
	    color: #62748e !important;
    font-size: 14px !important;
}
.brand{
	display: flex;
    gap: 10px;
}
.brand span.branr-title{
	color: #314158;
	font-weight: 500;
}
/* =============================================
   RESET & BASE
============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 72px 0;
}

/* =============================================
   HEADER
============================================== */
#yb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}
#yb-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.yb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 28px;
}

/* ── Menu Toggle ── */
.yb-menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.yb-menu-toggle:hover {
  filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(6766%)
    hue-rotate(248deg) brightness(100%) contrast(93%);
  font-weight: 500;
}

.yb-menu-toggle .icon {
  position: relative;
  width: 18px;
  height: 14px;
}
.yb-menu-toggle .icon svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease;
}
.yb-menu-toggle .bars {
  opacity: 1;
}
.yb-menu-toggle .xmark {
  opacity: 0;
}
.yb-menu-toggle.open .bars {
  opacity: 0;
}
.yb-menu-toggle.open .xmark {
  opacity: 1;
}

/* ── Logo ── */
.yb-logo {
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #0f172b;
	width: 20%;
}
.yb-logo strong {
  font-weight: 700;
}
.yb-logo span {
  font-weight: 600;
}

/* ── Right Actions ── */
.yb-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yb-btn-quote {
  padding: 7px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #0f172b;
  background: none;
  transition: background var(--transition), transform var(--transition);
}
.yb-btn-quote:hover {
  background: #fcf9fa;
}

.yb-cart-btn {
  background: none;
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}
.yb-cart-btn:hover {
  background: #fcf9fa;
}

/* ── Sub Nav ── */
.yb-subnav {
  background: #1d293d;
  height: var(--subnav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.yb-subnav::-webkit-scrollbar {
  display: none;
}
.yb-subnav ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.yb-subnav ul li {
  position: relative;
}
.yb-subnav ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.yb-subnav ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  height: var(--subnav-h);
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.yb-subnav ul li a::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}
.yb-subnav ul li a:hover,
.yb-subnav ul li.active a,
.yb-subnav ul li.current-menu-item a {
  color: #fff;
}
.yb-subnav ul li a:hover::after,
.yb-subnav ul li.active a::after,
.yb-subnav ul li.current-menu-item a::after {
  width: calc(100% - 36px);
}

/* ── Popup Menu ── */
#yb-popup {
  position: fixed;
  top: calc(var(--header-h) + var(--subnav-h));
  left: 24px;
  width: 270px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#yb-popup.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

#yb-popup ul > li > a,
#yb-popup ul > li > button.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  transition: color var(--transition);
}
#yb-popup ul > li > a:hover,
#yb-popup ul > li > button.submenu-toggle:hover {
  color: #62748e;
}

/* Chevron in popup */
.yb-chevron {
  width: 14px;
  height: 14px;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #999;
}
#yb-popup .menu-item-has-children.open > a .yb-chevron {
  transform: rotate(180deg);
}

/* Submenu */
#yb-popup .sub-menu {
  display: none;
}
#yb-popup li.open > .sub-menu {
  display: block;
}
#yb-popup .sub-menu li a {
  display: block;
  padding: 10px 34px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 400;
  transition: color var(--transition);
}
#yb-popup .sub-menu li a:hover {
  color: #0f172b;
}

/* ── Overlay ── */
#yb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.2);
}
#yb-overlay.open {
  display: block;
}

/* =============================================
   BREADCRUMB
============================================== */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 0 40px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  overflow-x: auto;
  white-space: nowrap;
  padding: 16px 0;
  scrollbar-width: none;
}
.breadcrumb-nav::-webkit-scrollbar {
  display: none;
}
.breadcrumb-nav a {
  color: #475569;
  transition: color 0.15s;
  flex-shrink: 0;
}
.breadcrumb-nav a:hover {
  color: #0f172a;
}
.breadcrumb-nav .sep {
  color: #94a3b8;
  flex-shrink: 0;
}
.breadcrumb-nav .current {
  color: #0f172a;
  font-weight: 500;
  flex-shrink: 0;
}

/* =============================================
   HERO SECTION
============================================== */
.hero {
  position: relative;
  height: 19vw;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Ken Burns zoom */
.hero-slide,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide img {
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* Caption animate up on active slide */
.hero-caption {
  position: absolute;
  bottom: 96px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 16px;
  z-index: 3;
}
.hero-caption h1,
.hero-caption p {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-caption h1 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: 0.04em;
  transition-delay: 0.3s;
}
.hero-caption p {
  margin-top: 8px;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  letter-spacing: 0.04em;
  transition-delay: 0.5s;
}
.hero-slide.active .hero-caption h1,
.hero-slide.active .hero-caption p {
  opacity: 1;
  transform: translateY(0);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 4;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot:hover {
  transform: scale(1.3);
}
.hero-dot.active {
  background: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

/* Sample site hero section */
.hero-section {
  background: linear-gradient(to bottom, #f8fafc, #fff);
  padding: 64px 32px;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.hero-text {
  text-align: center;
  margin-bottom: 40px;
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-text p {
  font-size: 18px;
  color: #475569;
  max-width: 768px;
  margin: 0 auto;
}

/* Search */
.search-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.search-box input {
  width: 100%;
  height: 52px;
  padding: 0 20px 0 45px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  outline: none;
  font-size: 14px;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.6;
}
.search-box input::placeholder {
  color: #94a3b8;
}
.search-box input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0f172a;
}

/* =============================================
   ABOUT
============================================== */
.about {
  padding: 64px 40px;
  background: #fff;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 48px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #94a3b8;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto 40px;
}
.about-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s;
}
.about-icon:hover {
  background: #f1f5f9;
}
.about-icon img {
  width: 28px;
  height: 28px;
}
.about-item h3 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 8px;
}
.about-item p {
  font-size: 13.5px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.6;
  max-width: 200px;
}
.know-wrap {
  display: flex;
  justify-content: center;
}
.know-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: #0f172a;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.know-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

/* =============================================
   FEATURED PRODUCTS
============================================== */
.featured-section {
  background: #fff;
  padding: 64px 40px 80px;
}
.featured-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Products Grid */
.products {
    padding: 64px 40px 80px;
    background: rgb(255, 255, 255);
}
.prod-grid-products{
	    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
ul.products{
	display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0;
}
.woocommerce ul.products::before{
	display: none;
}
.prod-card {
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none;
  color: inherit;
}
.prod-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.prod-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}
.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.prod-card:hover .prod-card-img img {
  transform: scale(1.1);
}
.prod-card-body {
  padding: 24px;
}
.prod-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}
.prod-card-body h3.prod-name {
	font-size: 16px;
}

.prod-img {
  width: 100%;
  aspect-ratio: 16/20;
  overflow: hidden;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.prod-card:hover .prod-img img {
  transform: scale(1.08);
}
.prod-body {
  display: flex;
  flex-direction: column;
  flex: 1;
      padding: 20px 20px 0;
    min-height: 245px;
}
.prod-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}
.prod-body p {
  font-size: 11.5px;
  color: #475569;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.buy-btn {
  width: 100%;
	display: block;
    text-align: center;
  padding: 10px 16px;
  background: #020617;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
	margin-top: auto;
}
.buy-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.buy-btn:active::after {
  width: 220px;
  height: 220px;
}
.buy-btn:hover {
  background: #1e293b;
}

/* =============================================
   CALCULATOR
============================================== */
.calculator {
  position: relative;
  background: #0f172a;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.calculator::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0px,
    rgba(255, 255, 255, 1) 1px,
    transparent 1px,
    transparent 60px
  );
  opacity: 0.04;
  pointer-events: none;
  animation: gridScroll 18s linear infinite;
}
@keyframes gridScroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 0;
  }
}
.calc-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.calc-inner .section-label {
  color: #64748b;
}
.calc-title {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff !important;
}
.calc-desc {
  color: #94a3b8;
  font-weight: 300;
  max-width: 400px;
  font-size: 15px;
}
.calc-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.calc-btn:hover {
  background: #fff;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.12);
}

/* =============================================
   YB BANNER
============================================== */
.yb-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;
}

.yb-inner{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
}
/* .yb-banner:hover .yb-bg {
  transform: scale(1.04);
} */
.yb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.yb-banner a{
    display:block;
    width:100%;
    height:100%;
}
.yb-banner{
    position: relative;
    padding: 0 !important;
    width: 100%;
    min-height: 350px; /* தேவைக்கு மாற்றலாம் */
    overflow: hidden;
}
.yb-title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.yb-desc {
  font-size: 16px;
  font-weight: 300;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 32px;
}
.yb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.yb-btn:hover {
  background: #f59e0b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.38);
}

/* =============================================
   COUNTER TOPS — circle reveal
============================================== */
.countertops {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}
.ct-wrap {
  position: absolute;
  inset: 0;
  clip-path: circle(5% at 50% 50%);
  transition: clip-path 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ct-wrap.expanded {
  clip-path: circle(150% at 50% 50%);
}
.countertops > img,
.ct-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ct-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.ct-caption {
  position: absolute;
  bottom: 96px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 16px;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.9s ease, transform 0.6s 0.9s ease;
}
.ct-caption.show {
  opacity: 1;
  transform: translateY(0);
}
.ct-caption h2,
.ct-caption p {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.ct-caption h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.ct-caption p {
  margin-top: 8px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* =============================================
   LATEST ARTICLES
============================================== */
.articles-section {
  background: #f8fafc;
  padding: 64px 40px 80px;
}
.articles-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.articles-header-left .section-tag {
  margin-bottom: 12px;
}
.view-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0f172a;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.view-all-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}
.view-all-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.view-all-btn:hover svg {
  transform: translateX(4px);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.article-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.article-card:hover .article-img img {
  transform: scale(1.1);
}
.article-body {
  padding: 24px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
}
.article-meta .dot {
  color: #94a3b8;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.15s;
}
.article-card:hover .article-body h3 {
  color: #334155;
}
.article-body p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* View all mobile */
.view-all-mobile {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 12px 24px;
  background: #0f172a;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 999px;
  border: none;
}

/* =============================================
   TESTIMONIALS
============================================== */
.testimonials {
  padding: 64px 40px 96px;
  background: #fff;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.test-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.test-card:hover {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.q-icon {
  width: 32px;
  height: 32px;
/*   margin-bottom: 16px; */
  filter: brightness(0) saturate(100%) invert(87%) sepia(18%) saturate(173%)
    hue-rotate(175deg) brightness(102%) contrast(77%);
}
.test-text {
  flex: 1;
  font-size: 13.5px;
  font-weight: 300;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 24px;
}
.test-sep {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}
.test-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}
.test-role {
  font-size: 11.5px;
  color: #64748b;
}

/* =============================================
   FAQ — smooth accordion
============================================== */
.faq {
  background: #f8fafc;
  padding: 80px 40px 128px;
}
.faq-section {
  background: #fff;
  padding: 64px 40px 96px;
}
.faq-inner {
  max-width: 768px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-header .section-tag {
  margin-bottom: 12px;
}
.faq-header .section-heading {
  margin-bottom: 0;
}
.faq-h {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
}
.faq-sub {
  text-align: center;
  color: #64748b;
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 48px;
  font-size: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}
.faq-btn:hover {
  background: #f1f5f9;
}
.faq-q {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  padding-right: 32px;
  line-height: 1.4;
}
/* ANIMATION: smooth rotate chevron */
.faq-icon {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-icon svg {
  width: 20px;
  height: 20px;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-chev {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item.open .faq-chev {
  transform: rotate(180deg);
}

/* ANIMATION: smooth max-height expand */
.faq-ans {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.7;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.3s ease;
}
.faq-item.open .faq-ans {
  max-height: 400px;
  padding: 0 24px 24px;
}

/* =============================================
   FOOTER
============================================== */
.yb-footer {
  background: #020618;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.yb-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  display: block;
}
.footer-brand .logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}
.yb-footer-brand .logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 250px;
  margin-bottom: 24px;
}
.yb-footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  max-width: 250px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.yb-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.yb-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-social a:hover,
.yb-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.1);
}
.footer-social a svg,
.yb-social a svg {
  width: 16px;
  height: 16px;
}
.footer-col {
  display: block;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #62748e;
  margin-bottom: 20px;
}
.yb-footer-col h5 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #62748e;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yb-footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13.5px;
  color: #cbd5e1;
  display: inline-block;
  transition: color 0.15s, transform 0.2s;
}
.yb-footer-col ul li a {
  font-size: 13px;
  color: #cad5e2;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col ul li a:hover,
.yb-footer-col ul li a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.yb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   WHATSAPP BUTTON
============================================== */
.yb-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--transition);
  border: none;
}
.yb-whatsapp:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.yb-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42);
  }
  50% {
    box-shadow: 0 4px 38px rgba(37, 211, 102, 0.72);
  }
}

/* =============================================
   SCROLL REVEAL
============================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}
.delay-5 {
  transition-delay: 0.4s;
}

/* =============================================
   RESPONSIVE
============================================== */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .yb-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .yb-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .yb-topbar {
    padding: 0 16px;
  }
  .yb-logo {
    font-size: 21px;
  }
  .yb-btn-quote {
    display: none;
  }
  .yb-menu-toggle {
    padding: 6px 10px;
    border: none;
    gap: 0;
  }
  .yb-menu-toggle .label {
    display: none;
  }
  .yb-subnav {
/*     justify-content: flex-start; */
    padding: 0 8px;
  }
  .yb-subnav ul li a {
    padding: 0 13px;
    font-size: 11.5px;
  }
  #yb-popup {
    left: 8px;
    right: 8px;
    width: auto;
  }
  .hero-section {
    padding: 48px 16px;
  }
  .featured-section,
  .articles-section,
  .faq-section {
    padding: 48px 16px 64px;
  }
  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .view-all-btn {
    display: none;
  }
  .view-all-mobile {
    display: flex;
  }
  .footer-inner {
    padding: 0 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .yb-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .yb-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .about {
    padding: 48px 16px;
  }
  .products {
    padding: 48px 16px;
  }
  .faq {
    padding: 60px 16px 80px;
  }
	.hero{
        height:75vw !important;
    }

    .hero-slide img{
        width:100%;
        height:100% !important;
        object-fit:cover !important;
    }
}
@media (max-width: 640px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   WORDPRESS UTILITIES
============================================== */
.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li {
  margin-bottom: unset !important;
}

.vc_row,
.vc_row-fluid,
.wpb_row,
[data-vc-full-width="true"],
[data-vc-full-width-init="true"] {
  margin-left: unset !important;
  margin-right: unset !important;
  padding: unset !important;
}
.vc_column_container > .vc_column-inner {
  padding: unset !important;
}


/* =============================================
   PAGE TITLE BAR  [NEW]
============================================== */
.page-title-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.page-title-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
}
.page-title-inner h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.page-title-inner p {
  margin-top: 8px;
  font-size: 15px;
  color: #475569;
}

/* =============================================
   MOBILE FILTER BUTTON  [NEW]
============================================== */
.mobile-filter-btn {
  display: none;
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 16px;
}
.mobile-filter-btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
}
.mobile-filter-btn button:hover {
  background: #1e293b;
}
.mobile-filter-btn button svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   SHOP LAYOUT  [NEW]
============================================== */
.shop-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}
.shop-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
}
.shop-flex {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: flex-start;
}

/* =============================================
   SIDEBAR FILTERS  [NEW]
============================================== */
.sidebar {
  width: 256px;
  flex-shrink: 0;
  position: sticky;
  top: 24px;
  border-radius: 12px;
}
.new-sidebar {
  background: #f8fafc;
  padding: 24px;
}
.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
.sidebar-title a {
  color: #45556c;
  text-decoration-line: underline;
  font-size: 14px;
}
.sidebar-title a:hover {
  color: #0f172b;
}
.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sidebar-top h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}
.sidebar-top button {
  font-size: 12px;
  color: #475569;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.sidebar-top button:hover {
  color: #0f172a;
}
.filter-group {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.filter-group:last-child {
  border-bottom: none;
}
.filter-section {
  margin-bottom: 24px;
}
.filter-section:last-child {
  margin-bottom: 0;
}
.filter-section h4 {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 12px;
}
.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 12px;
  cursor: context-menu;
}
.filter-toggle span {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}
.filter-toggle svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.filter-toggle.collapsed svg {
  transform: rotate(-180deg);
}
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-options.hidden {
  display: none;
}
.filter-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #334155;
  transition: color 0.15s;
}
.filter-options label:hover {
  color: #0f172a;
}
.filter-options label input[type="checkbox"],
.filter-options input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  accent-color: #0f172a;
  cursor: pointer;
  flex-shrink: 0;
}

/* =============================================
   SORT BAR & PRODUCT AREA  [NEW]
============================================== */
.products-area {
  flex: 1;
  min-width: 0;
}
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.sort-bar .result-count {
  font-size: 14px;
  color: #475569;
}
.sort-bar .result-count strong {
  color: #0f172a;
  font-weight: 600;
}
.result-count {
  font-size: 13.5px;
  color: #475569;
  margin-bottom: 24px;
}
.result-count strong {
  color: #0f172a;
  font-weight: 600;
}
.sort-select {
  padding: 8px 32px 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  color: #0f172a;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s;
}
.sort-select:focus {
  outline: none;
  border-color: #0f172a;
}

/* =============================================
   ACTIVE FILTER TAGS  [NEW]
============================================== */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.filter-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
}
.filter-tag button {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.filter-tag button:hover {
  opacity: 0.7;
}

/* =============================================
   EXTRA PRODUCT CARD DETAILS  [NEW]
============================================== */
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 4px 12px;
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  border-radius: 999px;
}
.prod-badge.bestseller { background: #0f172a; }
.prod-badge.premium    { background: #7c3aed; }
.prod-badge.new        { background: #059669; }

.prod-sku {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 4px;
}
.prod-name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}
.prod-meta .dot {
  color: #cbd5e1;
}

/* =============================================
   NO RESULTS  [NEW]
============================================== */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #64748b;
}
.no-results h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 8px;
}

/* =============================================
   PACKAGE CARDS  [NEW]
============================================== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.pkg-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pkg-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}
.pkg-img {
  position: relative;
  aspect-ratio: 4/3;
  background: #f1f5f9;
  overflow: hidden;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}
.pkg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  border-radius: 999px;
}
.pkg-badge.best-value { background: #0f172a; }
.pkg-badge.premium    { background: #7c3aed; }
.pkg-badge.builder    { background: #0369a1; }

.pkg-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-name {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}
.pkg-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.brand-tag {
  padding: 3px 10px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11.5px;
  border-radius: 5px;
}
.pkg-includes {
  flex: 1;
  margin-bottom: 16px;
}
.pkg-includes p {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pkg-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.pkg-items span {
  font-size: 12px;
  color: #475569;
}
.pkg-items .more {
  font-size: 12px;
  color: #94a3b8;
}
.pkg-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.pkg-desc {
  margin-bottom: 20px;
  font-size: 12px;
	    color: #62748e;
}
.btn-view {
  width: 100%;
  padding: 10px 16px;
  background: #0f172a;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-view:hover {
  background: #1e293b;
  transform: scale(1.02);
}
.btn-enquiry {
  width: 100%;
  padding: 10px 16px;
  background: #fff;
  color: #334155;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-enquiry:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: scale(1.02);
}

/* =============================================
   MOBILE FILTER DRAWER  [NEW]
============================================== */
.filter-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0, 0, 0, 0.4);
}
.filter-drawer-overlay.open {
  display: block;
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0, 0, 0, 0.4);
}
.drawer-overlay.open {
  display: block;
}
.filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 24px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.filter-drawer.open {
  transform: translateY(0);
}
.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.filter-drawer-header h3 {
  font-size: 18px;
  font-weight: 600;
}
.filter-drawer-close {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0f172a;
  cursor: pointer;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.drawer-header h3 {
  font-size: 17px;
  font-weight: 600;
}
.drawer-close {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0f172a;
  cursor: pointer;
}
.drawer-close-btn {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0f172a;
  cursor: pointer;
}

/* =============================================
   EXTRA DELAY CLASSES  [NEW]
============================================== */
.d4 { transition-delay: 0.24s; }
.d5 { transition-delay: 0.30s; }
.d6 { transition-delay: 0.36s; }

/* =============================================
   WOOCOMMERCE PRODUCT FIX  [NEW]
============================================== */
ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

/* =============================================
   FILTER CHIPS  [NEW]
============================================== */
.filter-wrapper {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background-color: #f1f5f9;
  color: #334155;
  border-radius: 9999px;
  font-size: 14px;
  font-family: sans-serif;
}
.chip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #334155;
}
.chip-btn:hover {
  color: #0f172a;
}
.clear-all {
  display: none;
}

/* =============================================
   RESPONSIVE — SHOP PAGE ADDITIONS  [NEW]
============================================== */
@media (max-width: 1024px) {
  .mobile-filter-btn {
    display: block;
  }
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pkg-products-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .prod-grid-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .shop-flex {
    flex-direction: column;
  }
  .sidebar {
    position: unset;
    width: 100%;
  }
  .countertops {
    height: 25vh;
  }
  ul.products {
    grid-template-columns: repeat(1, 1fr);
  }
  .detail-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .detail-wrapper {
    padding: 24px 16px;
  }
  #quote-modal .modal-box {
    width: 100% !important;
  }
  .quote-form {
    padding: 15px;
  }
  .pkg-modal-content {
    padding: 0px !important;
  }
}
@media (max-width: 640px) {
  .hero-section {
    padding: 48px 16px 40px;
  }
  .shop-section {
    padding: 32px 16px 60px;
  }
  .shop-wrapper {
    padding: 16px;
  }
  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #yb-popup {
    left: 8px;
    right: 8px;
    width: auto;
  }
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }
  .modal-box {
    border-radius: 20px 20px 0 0;
    max-height: 95vh;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .bs-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 12px;
  }
  .thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
@media (max-width: 400px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   PRODUCT HERO BANNER  [NEW]
============================================== */
.product-hero-banner {
  background: linear-gradient(to right, #0f172a, #334155);
  color: #fff;
  padding: 32px 32px;
}
.product-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.product-hero-inner h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
}
.product-hero-inner p {
  color: #cbd5e1;
  font-size: 15px;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   PRODUCT DETAIL PAGE  [NEW]
============================================== */
.detail-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* ── Image Gallery ── */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-image-wrap {
  position: relative;
 aspect-ratio: 1/1; 
  background: #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
}
.main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  height: 30px;
  font-size: 40px;
  width: 30px;
}
button.gallery-nav span {
  position: absolute;
  bottom: -20%;
}
.gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }
.gallery-nav svg {
  width: 24px;
  height: 24px;
  stroke: #0f172a;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.thumb-btn {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: border-color 0.2s;
  padding: 0;
  background: #f1f5f9;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-btn.active {
  border-color: #0f172a;
  box-shadow: 0 0 0 2px #0f172a;
}
.thumb-btn:hover:not(.active) {
  border-color: #94a3b8;
}

/* ── Product Info ── */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prod-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}
.prod-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #334155;
}
.prod-brand strong {
  font-weight: 500;
}
.prod-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
}
.divider {
  border: none;
  border-top: 1px solid #e2e8f0;
}

/* ── Size / Color Selector ── */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.option-label {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}
.option-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.opt-btn {
  padding: 10px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  background: #fff;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.opt-btn:hover {
  border-color: #94a3b8;
  transform: translateY(-1px);
}
.opt-btn.selected {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
}

/* ── Quantity (Plugin Fix) ── */
.qib-button-wrapper {
  display: flex !important;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px !important;
}
.qib-button-wrapper button.minus,
.qib-button-wrapper button.plus {
  width: 44px;
  height: 44px;
  border: none;
  background: #fff;
  font-size: 18px;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
}
.qib-button-wrapper button:hover {
  background: #f1f5f9 !important;
}
.qib-button-wrapper input.qty {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  border-left: 2px solid #e2e8f0;
  border-right: 2px solid #e2e8f0;
  -moz-appearance: textfield;
}
.qib-button-wrapper input.qty::-webkit-inner-spin-button,
.qib-button-wrapper input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body .qib-button-wrapper .minus.qib-button,
body .qib-button-wrapper .plus.qib-button {
  background: unset !important;
}
body .qib-button-wrapper .minus.qib-button:hover,
body .qib-button-wrapper .plus.qib-button:hover {
  background: #14141414 !important;
}

/* ── Add to Cart ── */
.add-to-cart-btn {
  width: 100%;
  padding: 16px;
  background: #0f172a;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.add-to-cart-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-110%);
  transition: transform 0.45s ease;
}
.add-to-cart-btn:hover::after {
  transform: translateX(110%);
}
.add-to-cart-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}
.add-to-cart-btn:active {
  transform: translateY(0);
}

/* ── Perks Box ── */
.perks-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
	    margin: 30px 0 30px;
}
.perks-box p {
  font-size: 13.5px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}
.perks-box p::before {
  content: '✓';
  flex-shrink: 0;
}

/* =============================================
   BEST SELLING SECTION  [NEW]
============================================== */
.bestselling {
  background: #f8fafc;
  padding: 64px 32px;
}
.bestselling-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.bestselling-inner h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 32px;
}
.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bs-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
  color: inherit;
  text-align: center;
}
/* .bs-grid h3 {
  padding: 15px;
} */
.bs-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.bs-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f1f5f9;
}
.bs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bs-card:hover .bs-card-img img {
  transform: scale(1.1);
}
.bs-card-body {
  padding: 16px;
}
.bs-cat {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
	    text-align: justify;
}
.bs-name {
  font-size: 18px;
	    text-align: left;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   CART COUNT BADGE  [NEW]
============================================== */
.yb-cart-btn {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 600;
}

/* =============================================
   WOOCOMMERCE VARIATION SWATCHES  [NEW]
============================================== */
.woocommerce div.product form.cart .variations {
  margin-bottom: 20px;
}
.woocommerce div.product form.cart .variations td.label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.woocommerce div.product form.cart .variations td.value {
  display: flex;
  flex-direction: column;
}
.woo-variation-swatches .variable-items-wrapper {
  display: flex !important;
  gap: 12px !important;
  margin: 10px 0 20px !important;
  flex-wrap: wrap;
}
.variable-item.button-variable-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 42px !important;
  min-width: 90px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  border: 1px solid #cbd5e1 !important;
  background: #fff !important;
  transition: all 0.2s ease;
}
.variable-item .variable-item-span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0 16px !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.variable-item {
  min-height: unset !important;
  height: auto !important;
}
.variable-item.selected {
  background: #0f172a !important;
  color: #fff !important;
  border-color: #0f172a !important;
}

/* =============================================
   WOOCOMMERCE ADD TO CART BUTTON  [NEW]
============================================== */
.single_add_to_cart_button {
  width: 100%;
  background: #0f172a !important;
  color: #fff !important;
  padding: 16px !important;
  border-radius: 10px !important;
  font-size: 18px !important;
      font-family: inherit !important;
  font-weight: 600 !important;
  transition: 0.3s;
}
.single_add_to_cart_button:hover {
  background: #1e293b !important;
}

/* =============================================
   PRODUCT INFO EXTRAS  [NEW]
============================================== */
.price {
  font-size: 20px;
  font-weight: 600;
}
.short-desc {
  color: #475569;
  line-height: 1.7;
}

/* =============================================
   SHARED MODAL BASE  [NEW]
============================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-backdrop.open {
  display: flex;
}
.modal-box {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-backdrop.open .modal-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal-close-btn {
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.modal-close-btn:hover {
  background: #f1f5f9;
}
.modal-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: #334155;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* =============================================
   PACKAGE DETAIL MODAL  [NEW]
============================================== */
.pkg-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
}
.pkg-modal-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  padding-right: 16px;
}
.pkg-modal-body {
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}
.pkg-modal-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pkg-modal-hero {
/*   aspect-ratio: 16/9; */
  border-radius: 12px;
  overflow: hidden;
/*   background: #f1f5f9; */
	  position: relative;
}
.pkg-modal-hero img {
  width: 100% !important;
    height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
.pkg-modal-section h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
}
.pkg-modal-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pkg-modal-brand-tag {
  padding: 5px 14px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13.5px;
  border-radius: 999px;
}
.pkg-products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
.pkg-product-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  transition: box-shadow 0.2s;
}
.pkg-product-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.pkg-product-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.pkg-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pkg-product-info {
  flex: 1;
  min-width: 0;
}
.pkg-product-brand {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 4px;
}
.pkg-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.4;
}
.pkg-product-qty {
  font-size: 12px;
  color: #475569;
}
.pkg-modal-footer {
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}
.pkg-enquiry-btn {
  width: 100%;
  padding: 14px 24px;
  background: #0f172a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.pkg-enquiry-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}
.pkg-enquiry-btn.sent {
  background: #16a34a;
}

/* =============================================
   QUOTE MODAL  [NEW]
============================================== */
.quote-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
}
.quote-modal-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}
.quote-modal-header p {
  font-size: 13.5px;
  color: #475569;
}
.quote-modal-body {
  overflow-y: auto;
  max-height: calc(90vh - 88px);
  display: block !important;
}
.quote-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.form-group label {
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #0f172a;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #0f172a;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea {
  resize: none;
}
.quote-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: #0f172a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.quote-submit-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}
.quote-submit-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}
.quote-submit-btn:active {
  transform: translateY(0);
}
.quote-submit-btn.submitted {
  background: #16a34a;
}
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #fca5a5;
}
.form-error {
  font-size: 12px;
  color: #ef4444;
  display: none;
}
.form-group.has-error .form-error {
  display: block;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #fca5a5;
  box-shadow: 0 0 0 2px rgba(252, 165, 165, 0.4);
}
.quote-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  gap: 16px;
}
.quote-success.show {
  display: flex;
}
.quote-success svg {
  width: 56px;
  height: 56px;
  stroke: #16a34a;
  fill: none;
  stroke-width: 1.5;
}
.quote-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}
.quote-success p {
  font-size: 14px;
  color: #475569;
  max-width: 320px;
  line-height: 1.6;
}
.quote-success button {
  margin-top: 8px;
  padding: 10px 28px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  transition: background 0.2s;
}
.quote-success button:hover {
  background: #1e293b;
}

/* Modal ID overrides */
#quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#quote-modal.active {
  display: flex !important;
}
#quote-modal .modal-box {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #fff;
  padding: 0px;
  width: 55%;
  border-radius: 10px;
}
#pkg-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#pkg-modal.active {
  display: flex !important;
}
#pkg-modal .modal-box {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #fff;
  width: 800px;
  max-width: 95%;
  border-radius: 12px;
  padding: 20px;
}
.products-area {
  width: 100%;
  max-width: 100%;
}

/* =============================================
   CHECKOUT — STEP BAR  [NEW]
============================================== */
.step-bar {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 16px 40px;
}
.step-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.step-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.step-item span {
  font-weight: 500;
}
.step-item.active   { color: #0f172a; }
.step-item.inactive { color: #94a3b8; }
.step-sep {
  width: 24px;
  height: 1px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* =============================================
   CHECKOUT — MAIN LAYOUT (FIXED)
============================================== */

.checkout-main {
  flex: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 60px;
}

/* GRID */
.checkout-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start; /* IMPORTANT */
}

/* LEFT (STICKY) */
.checkout-left {
  position: sticky;
  top: 100px; 
  width: 50%;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* RIGHT (SCROLLABLE) */
.checkout-right {
  width: 50%;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* VERY IMPORTANT FIXES */
.checkout-main,
.checkout-grid {
  overflow: visible !important;
}

/* Prevent flex issues */
.checkout-left,
.checkout-right {
  align-self: flex-start;
}

/* =============================================
   CHECKOUT — CARD BASE  [NEW]
============================================== */
.co-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.co-card-header {
  padding: 16px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.co-card-header h2 {
  font-size: 14.5px;
  font-weight: 500;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.co-card-header h2 svg {
  width: 16px;
  height: 16px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.co-card-header .badge {
  font-size: 11px;
  color: #94a3b8;
}

/* =============================================
   CHECKOUT — CART ITEM  [NEW]
============================================== */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px;
}
.cart-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}
.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-info {
  flex: 1;
  min-width: 0;
}
.cart-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cart-brand {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 4px;
}
.cart-name {
  font-size: 13.5px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 6px;
}
.cart-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cart-tag {
  font-size: 11px;
  color: #94a3b8;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 2px 8px;
  border-radius: 999px;
}
.cart-sku {
  font-size: 10px;
  color: #cbd5e1;
  font-family: 'JetBrains Mono', monospace;
}
.cart-del-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  flex-shrink: 0;
  padding: 4px;
  transition: color 0.15s;
}
.cart-del-btn:hover {
  color: #f87171;
}
.cart-del-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  align-items: flex-start;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  overflow: hidden;
} 
.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #64748b;
  transition: background 0.15s;
}
.qty-btn:hover {
  background: #f8fafc;
}
.qty-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.qty-num {
  width: 32px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #0f172a;
  user-select: none;
}
.cart-price {
  font-size: 13.5px;
  font-weight: 500;
  color: #0f172a;
}
.cart-footer {
  padding: 12px 24px;
  border-top: 1px solid #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-continue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
  transition: color 0.15s;
}
.cart-continue svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.cart-continue:hover {
  color: #0f172a;
}
.cart-clear {
  font-size: 12px;
  color: #94a3b8;
  background: none;
  border: none;
  transition: color 0.15s;
}
.cart-clear:hover {
  color: #f87171;
}

/* =============================================
   CHECKOUT — DELIVERY FORM  [NEW]
============================================== */
.form-grid {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label .req {
  color: #f87171;
  margin-left: 2px;
}
.err-msg {
  font-size: 11px;
  color: #ef4444;
  display: none;
}
.form-group.has-error .err-msg {
  display: block;
}
.land-feild{
	    width: 100% !important;
    display: flex;
    flex-direction: column;
}
.state-feild{
	width: 100%;
}

/* =============================================
   CHECKOUT — NOTES BODY  [NEW]
============================================== */
.notes-body {
  padding: 24px;
}

/* =============================================
   CHECKOUT — ORDER SUMMARY  [NEW]
============================================== */
.summary-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
}
.summary-row .label { color: #64748b; }
.summary-row .val   { color: #0f172a; font-weight: 500; }
.summary-divider    { height: 1px; background: #f1f5f9; margin: 4px 0; }
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.summary-total .t-label { font-size: 14px; font-weight: 500; color: #0f172a; }
.summary-total .t-val   { font-size: 18px; font-weight: 500; color: #0f172a; }
.summary-note { font-size: 11px; color: #94a3b8; }

/* =============================================
   CHECKOUT — TRUST BADGES  [NEW]
============================================== */
.trust-card {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 16px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #64748b;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item span {
  font-size: 10px;
  line-height: 1.3;
}

/* =============================================
   CHECKOUT — PLACE ORDER BUTTON  [NEW]
============================================== */
.place-order-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  border: none;
  background: #0d1b2a;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.2);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.place-order-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.place-order-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.25);
}
.place-order-btn:active {
  transform: translateY(0);
}
.order-legal {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.6;
}
.order-legal span {
  text-decoration: underline;
  cursor: pointer;
}

/* =============================================
   CHECKOUT — EMAIL POPUP MODAL  [NEW]
============================================== */
.modal-head {
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
}
.modal-head-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}
.modal-head-text p {
  font-size: 13px;
  color: #64748b;
}
.modal-order-strip {
  margin: 0 24px;
  margin-top: 20px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-order-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.modal-order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-order-info {
  flex: 1;
  min-width: 0;
}
.modal-order-name {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 2px;
}
.modal-order-meta {
  font-size: 11px;
  color: #94a3b8;
}
.modal-order-total {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  flex-shrink: 0;
}
.modal-body {
  overflow-y: auto;
  flex: 1;
}
.modal-form {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.email-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.email-field label {
  font-size: 12px;
  font-weight: 500;
  color: #334155;
}
.email-field label .req {
  color: #f87171;
  margin-left: 2px;
}
.email-field input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.email-field input::placeholder { color: #cbd5e1; }
.email-field input:focus {
  border-color: #475569;
  box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.08);
}
.email-field.has-error input {
  border-color: #fca5a5;
  box-shadow: 0 0 0 3px rgba(252, 165, 165, 0.15);
}
.email-field .err-msg {
  font-size: 11px;
  color: #ef4444;
  display: none;
}
.email-field.has-error .err-msg {
  display: block;
}
.msg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.msg-field label {
  font-size: 12px;
  font-weight: 500;
  color: #334155;
}
.msg-field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: #1e293b;
  outline: none;
  resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.msg-field textarea::placeholder { color: #cbd5e1; }
.msg-field textarea:focus {
  border-color: #475569;
  box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.08);
}
.order-details-block {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 16px;
  font-size: 12px;
  color: #475569;
  line-height: 1.8;
}
.order-details-block strong {
  color: #0f172a;
  font-weight: 500;
}
.send-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: #0d1b2a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.send-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.send-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}
.send-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}
.send-btn.sending {
  opacity: 0.7;
  pointer-events: none;
}
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 14px;
}
.modal-success.show {
  display: flex;
}
.modal-success svg {
  width: 56px;
  height: 56px;
  stroke: #16a34a;
  fill: none;
  stroke-width: 1.5;
}
.modal-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}
.modal-success p {
  font-size: 14px;
  color: #64748b;
  max-width: 320px;
  line-height: 1.7;
}
.modal-success .done-btn {
  margin-top: 8px;
  padding: 12px 32px;
  background: #0d1b2a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-success .done-btn:hover {
  background: #1e293b;
}

/* =============================================
   CHECKOUT — RESPONSIVE  [NEW]
============================================== */
/* Tablet */
@media (max-width: 1024px) {
  .checkout-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .checkout-left,
  .checkout-right {
    width: 100%;
	position: unset;
  }

  .checkout-right {
    position: static;
  }
}
@media (max-width: 640px) {
  .step-bar { padding: 12px 16px; }
  .checkout-main { padding: 20px 16px 48px; }
  .form-grid { grid-template-columns: 1fr; padding: 10px;}
  .form-group.full { grid-column: 1; }
}
/* ===== REMOVE DEFAULT WOOCOMMERCE EMPTY UI ===== */
.woocommerce-cart .cart-empty,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .return-to-shop {
    display: none !important;
}


/* ===== EMPTY CART WRAPPER ===== */
.empty-cart-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    padding: 40px 20px;
    background: #f8fafc;
}


/* ===== BOX ===== */
.empty-cart-box {
    text-align: center;
    max-width: 420px;
    width: 100%;
}


/* ===== ICON ===== */
.empty-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ===== TITLE ===== */
.empty-cart-box h2 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}


/* ===== TEXT ===== */
.empty-cart-box p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 22px;
}


/* ===== BUTTON ===== */
.browse-btn {
    display: inline-block;
    background: #0d1b2a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.browse-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}
.checkout-button{
	width: 40%;
	padding: 10px 10px !important;
    height: 50px !important;
}
/* REMOVE CF7 unwanted before/after */
#quote-modal .form-row::before,
#quote-modal .form-row::after {
    content: none !important;
    display: none !important;
}
.cart-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cart-attr {
    background: #eef2f7;
    color: #334155;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    line-height: 1;
}
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e6f9ec;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.3s;
    z-index: 9999;
    min-width: 280px;
}

.custom-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-icon {
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.toast-content strong {
    font-size: 14px;
    display: block;
}

.toast-name {
    font-size: 13px;
    color: #047857;
}

.toast-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 16px;
}
.cart-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
}

.popup-inner {
  background: #e6f4ea;
  border-radius: 12px;
  padding: 15px 18px;
  min-width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: relative;
  animation: slideIn 0.4s ease;
}

.popup-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.popup-icon {
  background: #28a745;
  color: #fff;
  font-size: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-text strong {
  font-size: 14px;
  color: #1a7f37;
}

.popup-text p {
  font-size: 13px;
  margin: 4px 0 0;
  color: #2e2e2e;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  font-size: 16px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.custom-empty-cart {
  text-align: center;
  padding: 100px 20px;
}

.empty-icon {
  font-size: 50px;
  opacity: 0.4;
  margin-bottom: 15px;
}

.custom-empty-cart h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.custom-empty-cart p {
  color: #777;
  margin-bottom: 20px;
}

.browse-btn {
  background: #0f172a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
}
.custom-pagination ul {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.custom-pagination li {
    list-style: none;
}

.custom-pagination a,
.custom-pagination span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: #f2f2f2;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.custom-pagination .current {
    background: #1f2a44; /* dark blue like your image */
    color: #fff;
}

.custom-pagination a:hover {
    background: #1f2a44;
    color: #fff;
}
.custom-toast {
  position: fixed;
	top: 60px;
	right: 20px;
  background: #e6f4ea;
  color: #1e7e34;
  padding: 15px;
  border-radius: 8px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.custom-toast.show {
  opacity: 1;
  visibility: visible;
}

.custom-toast.error {
  background: #fdecea;
  color: #c62828;
}

/* Hide Badge variation */
tr:has(select[name="attribute_pa_badge"]),
tr:has(label[for="pa_badge"]) {
    display: none !important;
}

/* Hide Price Range variation */
tr:has(select[name="attribute_pa_price-range"]),
tr:has(label[for="pa_price-range"]) {
    display: none !important;
}
/* Hide Brand variation */
tr:has(select[name="attribute_pa_brand"]),
tr:has(label[for="pa_brand"]) {
    display: none !important;
}
.entry-content {
  background: #f8fafc;
  padding: 0;
}
.calc-label{
	color: #6b8aaa;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 8px;
}
.calc-title {
      color: #f0f6ff;
      font-size: 36px;
      font-weight: 300;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .calc-desc {
      color: #6b8aaa;
      font-size: 14px;
      font-weight: 300;
    }
@media (min-width: 1200px) {
    .page-id-971 .wpb-content--blank .wpb-content-wrapper {
        max-width: 1200px !important;
    }
}

/* CALCULATOR PAGE */

.mc2-hero {
  background: #0d1b2a;
  padding: 60px 40px;
}

.mc2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0px;
}
.mc2-wrap {
  display: flex;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
	align-items: flex-start;
}

/* SIDEBAR */
.mc2-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  align-self: flex-start;
  position: sticky;
  top: 20px;
}
.mc2-sidebar-title {
  background: #0d1b2a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 16px;
}
.mc2-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.mc2-sidebar-item:last-child {
  border-bottom: none;
}
.mc2-sidebar-item:hover {
  background: #f8fafc;
  color: #0f172a;
}
.mc2-sidebar-item.active {
  background: #0f172a;
  color: #fff;
  font-weight: 500;
}
.mc2-sidebar-item .si-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mc2-sidebar-item .si-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mc2-sidebar-item .arrow {
  margin-left: auto;
  font-size: 16px;
  opacity: 0.5;
}

/* MAIN */
.mc2-main {
  flex: 1;
  min-width: 0;
	width: 100%;
}
.mc2-panel {
  display: none;
}
.mc2-panel.active {
  display: block;
}

/* BREADCRUMB */
.mc2-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
}
.mc2-breadcrumb .bc-icon {
  width: 16px;
  height: 16px;
}
.mc2-breadcrumb .bc-icon svg {
  width: 16px;
  height: 16px;
  stroke: #64748b;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mc2-breadcrumb .sep {
  color: #cbd5e1;
}
.mc2-breadcrumb .sub {
  color: #0f172a;
  font-weight: 500;
}

/* CARD */
.mc2-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.mc2-card-header {
  background: #0d1b2a;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
}
.mc2-card-body {
  padding: 24px;
}

/* FORM */
.mc2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.mc2-form-row.cols3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.mc2-form-group label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}
.mc2-form-group input,
.mc2-form-group select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 13px;
  color: #334155;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
  font-family: sans-serif;
  appearance: none;
  -webkit-appearance: none;
}
.mc2-form-group input:focus,
.mc2-form-group select:focus {
  border-color: #475569;
}
.mc2-sel-wrap {
  position: relative;
}
.mc2-sel-wrap::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
  font-size: 12px;
}
.mc2-sel-wrap select {
  padding-right: 28px;
}

/* AREA ROWS */
.mc2-area-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
  font-weight: 500;
}
.mc2-area-rows {
  margin-bottom: 10px;
}
.mc2-area-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 8px;
}
.mc2-area-row .rn {
  font-size: 13px;
  color: #94a3b8;
  padding-bottom: 10px;
  min-width: 18px;
}
.mc2-area-row .half {
  flex: 1;
}
.mc2-area-row .half label {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 4px;
}
.mc2-area-row .half input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 13px;
  color: #334155;
  outline: none;
  box-sizing: border-box;
  font-family: sans-serif;
}
.mc2-area-row .half input:focus {
  border-color: #475569;
}
.mc2-del-btn {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  padding: 6px 8px;
  cursor: pointer;
  color: #ef4444;
  display: flex;
  align-items: center;
  margin-bottom: 1px;
}
.mc2-del-btn:hover {
  background: #fef2f2;
}
.mc2-del-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mc2-add-btn {
  background: none;
  border: 1px dashed #cbd5e1;
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 12px;
  color: #64748b;
  cursor: pointer;
  margin-bottom: 20px;
  font-family: sans-serif;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.mc2-add-btn:hover {
  border-color: #475569;
  color: #0f172a;
}

/* RESULTS TABLE */
.mc2-results {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.mc2-results tr td {
  padding: 10px 16px;
  font-size: 13px;
  border: 1px solid #e2e8f0;
}
.mc2-results tr td:first-child {
  background: #0d1b2a;
  color: #fff;
  font-weight: 500;
  width: 55%;
}
.mc2-results tr td:last-child {
  background: #f8fafc;
  color: #334155;
  font-weight: 500;
  text-align: center;
}

/* BUTTON */
.mc2-btn-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.mc2-calc-btn {
  background: #0d1b2a;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 11px 32px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: sans-serif;
  transition: background 0.2s;
}
.mc2-calc-btn:hover {
  background: #1e293b;
}

/* NOTE */
.mc2-note {
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 860px) {
	.mc2-container {
    padding: 30px 20px;
}
  .mc2-wrap {
    flex-direction: column;
  }
  .mc2-sidebar {
    width: 100%;
    position: static;
  }
  .mc2-form-row,
  .mc2-form-row.cols3 {
    grid-template-columns: 1fr;
  }
}
.page-id-971 .mc2-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #0d1b2a;
  padding: 60px 0;
}

/* CENTER CONTENT PROPERLY */
.page-id-971 .mc2-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.woocommerce-cart .quantity,
.woocommerce-cart .qib-button-wrapper {
    display: none !important;
}
.cart-price {
  display: none !important;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-title{
	margin-bottom:20px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

/* IMPORTANT FIX */
.blog-content p {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

/* button always visible */
.blog-btn {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: #0ea5e9;
  display: inline-block;
}

.blog-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-card:hover .blog-btn {
  transform: translateX(5px);
}

/* MOBILE */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
	.bestselling-inner {
	    padding: 0px 30px !important;
}

}

.tinv-wishlist .cart-empty,
.tinv-wishlist .return-to-shop {
    display: none !important;
}

.custom-empty-wishlist {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    text-align: center;
    padding: 0px 40px 60px;
}

.custom-empty-wishlist img {
    display: block;
	width: 120px;
    margin: 0 auto 20px;  
}

.custom-empty-wishlist h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.custom-empty-wishlist p {
    color: #777;
    margin-bottom: 35px;
}

.custom-empty-wishlist a {
    background: #0f172a;
    color: #fff;
    padding: 12px 32px;
    border-radius: 999px;
    text-decoration: none;
}
.custom-empty-wishlist a:hover {
   background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #0d1b2a;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.brochure-btn svg {
  width: 16px;
  height: 16px;
}

.brochure-btn:hover {
  background: #1b263b;
}
body:not(.logged-in) .tinvwl_add_to_wishlist_button,
body:not(.logged-in) .tinv-wishlist {
    display: none !important;
}
.qty-title{
	color: #0f172b;
    font-weight: 500;
    font-size: 14px;
}
.bags {
    display: flex;
/*     align-items: center; */
    gap: 10px;
	    flex-direction: column;
}

.qty-unit {
    font-size: 14px;
    color: #64748b;
	    position: relative;
    margin-bottom: 2%;
}
.qib-button-wrapper {
    margin: 10px 0px 20px !important;
}
.section-divider {
    border-bottom: 1px solid #e2e8f0;
}
.add-div{
	margin: 10px 0px 20px;
}
.tinv-wishlist{
	padding: unset !important;
}
/* .tinv-wishlist-clear{
	    padding: 40px 40px 0px !important;
} */
.tinvwl_add_to_wishlist_button {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #0f172a;
    cursor: pointer;
}

/* Desktop only center logo */


  .yb-topbar {
    position: relative;
  }

  .yb-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }


.form-group P{
	width: 100%;
}
.single-product .bestselling,
.single-product .yb-footer{
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}
/* Single Product Only */
.single-product .detail-wrapper{
    padding-bottom: 0 !important;
}

.single-product .yb-footer{
    margin-top: 0 !important;
}