/*
Theme Name: Left Right Footwear B2B
Theme URI: https://leftrightfootwear.in
Author: Left Right Footwear
Author URI: https://leftrightfootwear.in
Description: A professional B2B wholesale footwear theme built for WooCommerce and fully editable with Elementor. Features bulk pricing tiers, WhatsApp ordering, MOQ management and GST invoice support.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leftright
WC requires at least: 7.0
WC tested up to: 8.5
Tags: woocommerce, elementor, b2b, wholesale, ecommerce, one-column, two-columns, custom-menu, featured-images, threaded-comments
*/

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --lr-primary: #2563EB;
  --lr-primary-dark: #1d4ed8;
  --lr-dark: #1E293B;
  --lr-bg: #F8FAFC;
  --lr-white: #ffffff;
  --lr-border: #e2e8f0;
  --lr-light: #f1f5f9;
  --lr-blue-light: #EFF6FF;
  --lr-green: #25D366;
  --lr-green-dark: #1ebe5a;
  --lr-text: #475569;
  --lr-muted: #94a3b8;
  --lr-heading: #1E293B;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--lr-bg);
  color: var(--lr-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

/* Strip any WooCommerce / Elementor / plugin content wrappers on front page */
.home .entry-content,
.home .page-content,
.woocommerce-page.home .woocommerce,
.elementor-section-wrap,
.elementor-inner,
.page-template-default.home .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* All homepage v2 sections are always 100vw */
.v2-hero,
.v2-collections,
.v2-promo-banner,
.v2-most-wanted,
.v2-products-section,
.v2-new-arrivals,
.v2-trust,
.v2-testimonials,
.v2-brand-strip,
.v2-cta-section,
.v2-hero-marquee {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  float: none;
  clear: both;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lr-primary); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--lr-primary-dark); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--lr-heading);
  line-height: 1.3;
}
h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.25rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; color: var(--lr-text); }

/* ===== UTILITY CLASSES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 52px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lr-border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--lr-dark);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--lr-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.site-logo span { color: var(--lr-primary); }

/* Main Navigation */
.main-navigation { display: flex; align-items: center; gap: 4px; }
.main-navigation ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-navigation ul li { position: relative; }
.main-navigation ul li a {
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 7px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-menu-parent > a {
  background: var(--lr-blue-light);
  color: var(--lr-primary);
}
.main-navigation ul li ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  min-width: 210px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--lr-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  flex-direction: column;
}
.main-navigation ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation ul li ul a {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
}
.header-whatsapp {
  background: #25D366;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.header-whatsapp:hover { background: #1ebe5a !important; color: #fff !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger-menu span { width: 22px; height: 2px; background: var(--lr-dark); display: block; transition: all 0.3s; }

/* ===================================================================
   GLOBAL HEADER — lr-topbar + lr-header (used on ALL pages)
   =================================================================== */

/* Topbar */
.lr-topbar {
  background: #1A2B57;
  color: rgba(255,255,255,.82);
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .3px;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.lr-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lr-tb-item { display: flex; align-items: center; gap: 6px; }
.lr-tb-sep  { opacity: .3; }
.lr-tb-btn  { cursor: pointer; transition: color .18s; }
.lr-tb-btn:hover { color: #fff; }
a.lr-tb-btn { text-decoration: none; }

/* Site header */
.lr-header {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .25s;
  font-family: 'Poppins', sans-serif;
}
.lr-hdr-scrolled { box-shadow: 0 2px 16px rgba(26,43,87,.1); }
.lr-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
  overflow: hidden;
}

/* Logo */
.lr-logo { flex-shrink: 0; text-decoration: none; line-height: 0; }
.lr-logo-img,
.custom-logo,
.custom-logo-link img,
.site-logo img,
.navbar-brand img,
.wp-custom-logo .custom-logo {
  max-height: 52px !important;
  height: auto !important;
  width: auto !important;
  max-width: 200px !important;
  display: block !important;
  object-fit: contain !important;
}
.lr-logo-box { display: flex; align-items: center; gap: 10px; }
.lr-logo-lr {
  background: #1A2B57;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.lr-logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.lr-logo-words strong { font-size: 13px; font-weight: 800; color: #1A2B57; letter-spacing: .5px; }
.lr-logo-words small  { font-size: 9px;  font-weight: 600; color: #64748B; letter-spacing: 2px; }

/* Nav */
.lr-nav { flex: 1; min-width: 0; }
.lr-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0; padding: 0;
}
.lr-nav-list li a,
.lr-nav-list > li > a {
  display: block;
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1A2B57;
  letter-spacing: .4px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .18s, color .18s;
  text-decoration: none;
  white-space: nowrap;
}
.lr-nav-list li a:hover,
.lr-nav-list > li.current-menu-item > a,
.lr-nav-list > li.current-menu-parent > a {
  color: #2457C5;
  background: #EBF2FF;
}

/* Phone */
.lr-header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #1A2B57;
}
.lr-header-phone strong { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.lr-header-phone small  { display: block; font-size: 10.5px; color: #64748B; font-weight: 400; }

/* Hamburger */
.lr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.lr-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A2B57;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.lr-hamburger.lr-ham-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lr-hamburger.lr-ham-open span:nth-child(2) { opacity: 0; }
.lr-hamburger.lr-ham-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .lr-topbar-inner { gap: 12px; }
  .lr-tb-sep       { display: none; }
  .lr-header-phone { display: none; }
  .lr-hamburger    { display: flex; }
  .lr-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    z-index: 500;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .lr-nav.lr-nav-open { display: block; }
  .lr-nav-list { flex-direction: column; gap: 0; padding: 8px 0; }
  .lr-nav-list li a { padding: 12px 24px; border-radius: 0; font-size: 13px; }
}
@media (max-width: 600px) {
  .lr-topbar-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 16px; }
  .lr-tb-sep       { display: none; }
  .lr-header-inner { height: 62px; padding: 0 16px; gap: 16px; }
  .lr-logo-img     { height: 42px; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-wrapper {
  background: var(--lr-white);
  border-bottom: 1px solid var(--lr-border);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--lr-muted);
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: #64748b; }
.breadcrumb-inner a:hover { color: var(--lr-primary); }
.breadcrumb-inner .sep { color: #cbd5e1; }
.breadcrumb-inner .current { color: var(--lr-dark); font-weight: 600; }

/* ===== WOOCOMMERCE PRODUCT PAGE ===== */
.product-section { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Gallery */
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.main-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--lr-border);
  aspect-ratio: 1;
  background: var(--lr-light);
}
.main-image-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 0.3s; }
.main-image-wrap:hover img { transform: scale(1.04); }
.thumbnail-row { display: flex; gap: 10px; flex-wrap: wrap; }
.thumb-item {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--lr-border);
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
  background: var(--lr-light);
}
.thumb-item:hover, .thumb-item.active { border-color: var(--lr-primary); }
.thumb-item img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

/* Product Info */
.product-info-wrap { padding-top: 4px; }
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge-wholesale { background: #dbeafe; color: var(--lr-primary); }
.badge-gst { background: #d1fae5; color: #065f46; }
.badge-india { background: #fef3c7; color: #92400e; }
.badge-iso { background: #f3e8ff; color: #6b21a8; }

.product-code { font-size: 12px; color: var(--lr-muted); font-weight: 600; letter-spacing: 1px; margin-bottom: 6px; }
.product-code a { color: var(--lr-primary); }
.product-title { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; color: var(--lr-dark); line-height: 1.25; margin-bottom: 6px; }
.product-by { font-size: 13px; color: #64748b; margin-bottom: 20px; }
.product-by a { color: var(--lr-primary); }

/* Pricing Block */
.pricing-block {
  background: var(--lr-blue-light);
  border: 1.5px solid rgba(37,99,235,0.15);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.price-main { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 10px; }
.b2b-price { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 900; color: var(--lr-dark); line-height: 1; }
.b2b-price small { font-size: 14px; font-weight: 500; color: #64748b; }
.b2b-label {
  background: var(--lr-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: center;
  font-family: 'Poppins', sans-serif;
}
.mrp-row { display: flex; align-items: center; gap: 10px; }
.mrp-price { font-size: 15px; color: var(--lr-muted); text-decoration: line-through; }
.saving-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.moq-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(37,99,235,0.12);
}
.moq-label { font-size: 12px; color: #64748b; font-weight: 600; }
.moq-value { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--lr-dark); }

/* Bulk Pricing Tiers */
.bulk-tiers-wrap { margin-bottom: 24px; }
.bulk-tiers-wrap h4 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--lr-dark); margin-bottom: 12px; }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.tier-item {
  background: var(--lr-white);
  border: 1.5px solid var(--lr-border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  transition: border-color 0.2s;
}
.tier-item:hover { border-color: var(--lr-primary); }
.tier-qty { font-size: 11px; color: #64748b; font-weight: 600; margin-bottom: 4px; }
.tier-price { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800; color: var(--lr-primary); }
.tier-note { font-size: 10px; color: var(--lr-muted); margin-top: 2px; }

/* Size Options */
.option-group { margin-bottom: 20px; }
.option-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.option-label .selected-val { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--lr-dark); font-size: 13px; text-transform: none; letter-spacing: 0; }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--lr-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  color: var(--lr-dark);
}
.size-btn:hover, .size-btn.active {
  border-color: var(--lr-primary);
  background: var(--lr-primary);
  color: #fff;
}
.color-grid { display: flex; gap: 8px; }
.color-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.color-btn:hover, .color-btn.active { border-color: var(--lr-primary); }

/* Qty Row */
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-label { font-size: 12px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .5px; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--lr-border);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  color: var(--lr-dark);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--lr-blue-light); }
.qty-input {
  width: 60px;
  height: 36px;
  border: none;
  border-left: 1px solid var(--lr-border);
  border-right: 1px solid var(--lr-border);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  color: var(--lr-dark);
}
.qty-note { font-size: 11px; color: var(--lr-muted); }

/* Action Buttons */
.action-row { display: flex; gap: 10px; margin-bottom: 20px; }
.wa-order-btn {
  flex: 1;
  background: var(--lr-green);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.wa-order-btn:hover { background: var(--lr-green-dark); color: #fff; }
.cat-btn {
  flex: 1;
  background: var(--lr-blue-light);
  color: var(--lr-primary);
  border: 1.5px solid rgba(37,99,235,0.2);
  padding: 14px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.cat-btn:hover { background: var(--lr-primary); color: #fff; border-color: var(--lr-primary); }

/* Trust Row */
.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px;
  background: var(--lr-light);
  border-radius: 10px;
}
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #64748b; font-weight: 500; }

/* ===== PRODUCT TABS ===== */
.product-tabs-section {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0 24px 56px;
  background: #fff;
}
.tabs-header {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--lr-border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-btn {
  padding: 14px 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 8px 8px 0 0;
}
.tab-btn:hover { color: var(--lr-dark); background: var(--lr-light); }
.tab-btn.active { color: var(--lr-primary); border-bottom-color: var(--lr-primary); background: #eff6ff; }
.tab-panel { display: none; animation: tabFade 0.25s ease; }
.tab-panel.active { display: block; }
@keyframes tabFade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.desc-text { font-size: 14px; color: var(--lr-text); line-height: 1.9; max-width: 820px; }
.desc-text h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--lr-dark); margin: 24px 0 10px; }
.desc-text ul { padding-left: 22px; margin-top: 8px; }
.desc-text ul li { margin-bottom: 7px; }

/* Size Chart Table */
.size-chart-wrap { overflow-x: auto; border-radius: 12px; border: 1.5px solid var(--lr-border); }
.size-chart-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.size-chart-table th {
  background: var(--lr-dark);
  color: #fff;
  padding: 12px 18px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.size-chart-table td { padding: 12px 18px; border-bottom: 1px solid var(--lr-border); color: var(--lr-text); font-size: 13px; }
.size-chart-table tbody tr:last-child td { border-bottom: none; }
.size-chart-table tbody tr:hover td { background: #f8fafc; }
.size-chart-note { font-size: 12px; color: #94a3b8; margin-top: 12px; }

/* Pricing Table */
.pricing-table-wrap { overflow-x: auto; border-radius: 12px; border: 1.5px solid var(--lr-border); }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pricing-table th {
  background: var(--lr-primary);
  color: #fff;
  padding: 13px 18px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.pricing-table td { padding: 13px 18px; border-bottom: 1px solid var(--lr-border); color: var(--lr-text); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: #eff6ff; }
.pricing-table .highlight td { background: #dbeafe; font-weight: 700; color: var(--lr-primary); }

/* Shipping Grid */
.shipping-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.shipping-card {
  background: var(--lr-light);
  border-radius: 14px;
  padding: 22px;
  border: 1.5px solid var(--lr-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shipping-card:hover { border-color: var(--lr-primary); box-shadow: 0 4px 16px rgba(37,99,235,0.08); }
.shipping-card .icon { font-size: 30px; margin-bottom: 12px; display: block; }
.shipping-card h4 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--lr-dark); margin-bottom: 6px; }
.shipping-card p { font-size: 13px; color: #64748b; line-height: 1.65; margin: 0; }

/* ===== RELATED PRODUCTS ===== */
.related-products-section { background: var(--lr-light); padding: 52px 0; }
.related-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.related-inner h2 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--lr-dark); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 18px; }
.product-card {
  background: var(--lr-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--lr-border);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.product-card:hover { border-color: var(--lr-primary); box-shadow: 0 8px 24px rgba(37,99,235,0.1); transform: translateY(-3px); }
.product-card-img { height: 180px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-info { padding: 14px; }
.product-card-code { font-size: 10px; color: var(--lr-primary); font-weight: 700; letter-spacing: .5px; margin-bottom: 4px; }
.product-card-name { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--lr-dark); margin-bottom: 8px; }
.product-card-price { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 800; color: var(--lr-primary); }
.product-card-mrp { font-size: 11px; color: #cbd5e1; text-decoration: line-through; margin-left: 6px; }

/* ===== SHOP / ARCHIVE ===== */
.shop-section { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }
.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.shop-header h1 { font-size: 24px; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 20px; }
.woocommerce-loop-product__title { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--lr-dark); }
.price { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--lr-primary); }

/* ===== FOOTER ===== */
.site-footer { background: var(--lr-dark); color: #fff; padding: 48px 0 20px; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-logo span { color: #60a5fa; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 12px; line-height: 1.65; margin: 0; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; margin-bottom: 14px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: .5px; }
.footer-col a, .footer-col p, .footer-col li {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
  transition: color 0.2s;
  list-style: none;
}
.footer-col a:hover { color: #60a5fa; }
.footer-col ul { list-style: none; }
.footer-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 16px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); margin: 0; }

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: waPulse 2.5s infinite;
}
.float-whatsapp svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.75); }
}

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; }
.btn-primary { background: var(--lr-primary); color: #fff; }
.btn-primary:hover { background: var(--lr-primary-dark); color: #fff; }
.btn-whatsapp { background: var(--lr-green); color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { background: var(--lr-green-dark); color: #fff; }
.btn-outline { background: var(--lr-blue-light); color: var(--lr-primary); border: 1.5px solid rgba(37,99,235,0.2); }
.btn-outline:hover { background: var(--lr-primary); color: #fff; }

/* ===== FORMS ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--lr-border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--lr-dark);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
input:focus, textarea:focus, select:focus { border-color: var(--lr-primary); }

/* ===== WOOCOMMERCE OVERRIDES ===== */
.woocommerce div.product .woocommerce-product-gallery { float: none; width: 100%; }
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--lr-primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 24px;
  transition: background 0.2s;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--lr-primary-dark);
  color: #fff;
}
.woocommerce .star-rating span { color: var(--lr-primary); }

/* ===== ELEMENTOR COMPATIBILITY ===== */
.elementor-section { width: 100%; }
.elementor-widget-wrap { padding: 0; }
.e-con { padding: 0; }

/* ===== PAGE CONTENT ===== */
.page-content { max-width: 1280px; margin: 0 auto; padding: 48px 24px; }
.entry-content { font-size: 15px; line-height: 1.8; color: var(--lr-text); }
.entry-content h1, .entry-content h2, .entry-content h3 { margin-bottom: 16px; margin-top: 32px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .main-navigation { display: none; }
  .main-navigation.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--lr-border);
    padding: 16px 24px;
    gap: 8px;
    z-index: 999;
  }
  .main-navigation.nav-open ul { flex-direction: column; }
  .main-navigation.nav-open ul li ul { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .hamburger-menu { display: flex; }
  .header-whatsapp { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .tabs-header { overflow-x: auto; }
  .tab-btn { font-size: 13px; padding: 12px 16px; }
  .action-row { flex-direction: column; }
  .product-title { font-size: 22px; }
  .b2b-price { font-size: 28px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: repeat(2,1fr); }
  .trust-row { gap: 10px; }
  .trust-item { font-size: 11px; }
}
