/*
Theme Name: Babuji Namkeen
Theme URI: https://babujinamkeen.com
Author: FREELANCE YOUR WORK
Author URI: https://freelanceyourwork.com/
Description: Premium WooCommerce theme for Babuji Namkeen. Fully responsive (mobile/tablet/desktop), dark/light mode, live AJAX search, mobile hamburger menu, 3-tier pricing display, real WhatsApp & phone SVG buttons, optimized for performance.
Version: 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: babuji-namkeen
Tags: e-commerce, woocommerce, responsive, dark-mode, mobile-friendly
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,700;0,900;1,700;1,900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #fbf6ee; --bg-alt: #fff8ed; --text: #1a1208; --text-soft: #4a3822;
  --border: #e9dcc5; --card: #ffffff; --accent: #c2410c; --accent-2: #f97316;
  --green: #15803d; --whatsapp: #25D366;
  color-scheme: light;
}
html.dark {
  --bg: #0b0806; --bg-alt: #0f0a06; --text: #f5ead8; --text-soft: #c9b695;
  --border: #2a1f14; --card: #1a1208;
  color-scheme: dark;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  transition: background .35s, color .35s;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4 { font-weight: 900; letter-spacing: -.5px; margin: 0; }
em, .italic { font-style: italic; color: var(--accent); }

/* ==================== MARQUEE ==================== */
.bn-marquee { background: var(--text); color: #fff8ed; overflow: hidden; border-bottom: 2px solid var(--accent); }
html.dark .bn-marquee { background: var(--accent); }
.bn-marquee-track { display: flex; gap: 3rem; white-space: nowrap; padding: 9px 0; font-size: 13px; letter-spacing: .4px; animation: bn-marquee 40s linear infinite; }
@keyframes bn-marquee { from{transform:translateX(0)} to{transform:translateX(-33.33%)} }

/* ==================== HEADER ==================== */
.bn-header { position: sticky; top: 0; z-index: 40; background: rgba(251,246,238,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
html.dark .bn-header { background: rgba(11,8,6,.94); }
.bn-header-inner { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.bn-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; flex-shrink: 0; }
.bn-logo-dot { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,#f97316,#c2410c); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 17px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(194,65,12,.3); }
.bn-logo-text { display: flex; flex-direction: column; }
.bn-logo-name { font-weight: 900; font-size: 19px; line-height: 1.05; }
.bn-logo-sub { font-size: 11px; opacity: .65; font-style: italic; }

.bn-search { flex: 1; max-width: 480px; position: relative; margin: 0; }
.bn-search input { width: 100%; padding: 11px 16px 11px 42px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--bg-alt); color: inherit; font-family: "Inter",sans-serif; font-size: 14px; outline: none; transition: border .2s; }
.bn-search input:focus { border-color: var(--accent); }
.bn-search::before { content: "🔍"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 15px; pointer-events: none; }
.bn-search-mobile { display: none; }

.bn-nav { display: flex; gap: 18px; align-items: center; }
.bn-nav-link { text-decoration: none; font-size: 14px; font-weight: 600; color: inherit; }
.bn-nav-link:hover { color: var(--accent); }

.bn-theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg-alt); cursor: pointer; font-size: 16px; color: inherit; transition: transform .3s; flex-shrink: 0; }
.bn-theme-toggle:hover { transform: rotate(20deg); }

.bn-cart-btn { position: relative; padding: 9px 16px; border-radius: 999px; background: var(--accent); color: #fff; border: none; cursor: pointer; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; flex-shrink: 0; font-family: "Inter",sans-serif; }
.bn-cart-btn:hover { background: var(--text); }
.bn-cart-btn svg { stroke: #fff; }
.bn-cart-count { background: #fff; color: var(--accent); border-radius: 999px; padding: 2px 8px; font-size: 12px; font-weight: 900; min-width: 22px; text-align: center; }

.bn-burger { display: none; width: 42px; height: 42px; background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; padding: 10px 8px; flex-shrink: 0; flex-direction: column; gap: 4px; align-items: stretch; }
.bn-burger span { display: block; height: 2.5px; background: var(--text); border-radius: 2px; }

/* ==================== MOBILE MENU ==================== */
.bn-mobile-menu { position: fixed; inset: 0; z-index: 100; display: flex; }
.bn-mobile-menu-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); animation: bn-fade .25s; }
.bn-mobile-menu-panel { position: relative; background: var(--bg); width: min(85vw, 340px); margin-left: auto; padding: 20px; box-shadow: -10px 0 30px rgba(0,0,0,.2); animation: bn-slide .25s; display: flex; flex-direction: column; }
@keyframes bn-fade { from{opacity:0} to{opacity:1} }
@keyframes bn-slide { from{transform:translateX(100%)} to{transform:translateX(0)} }
.bn-mobile-menu-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.bn-mobile-close { background: none; border: none; font-size: 32px; cursor: pointer; color: inherit; line-height: 1; padding: 0 8px; }
.bn-mobile-nav { display: flex; flex-direction: column; gap: 4px; font-family: "Inter",sans-serif; }
.bn-mobile-nav a { padding: 14px 12px; border-radius: 8px; text-decoration: none; color: inherit; font-size: 15px; font-weight: 600; transition: background .15s; }
.bn-mobile-nav a:hover { background: var(--bg-alt); }

/* ==================== HERO ==================== */
.bn-hero { position: relative; overflow: hidden; min-height: 580px; }
.bn-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s; }
.bn-hero-bg.active { opacity: 1; }
.bn-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(251,246,238,.92) 35%, rgba(251,246,238,.4) 100%); }
html.dark .bn-hero-bg::after { background: linear-gradient(105deg, rgba(11,8,6,.92) 35%, rgba(11,8,6,.4) 100%); }
.bn-hero-content { position: relative; padding: 80px 0 100px; max-width: 720px; }
.bn-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: #fff2e0; border: 1.5px solid var(--accent); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 24px; font-family: "Inter",sans-serif; }
html.dark .bn-hero-badge { background: rgba(249,115,22,.15); }
.bn-hero-title { font-size: clamp(36px, 7vw, 80px); line-height: .98; letter-spacing: -1.5px; margin-bottom: 18px; }
.bn-hero-sub { font-family: "Inter",sans-serif; font-size: clamp(16px, 2vw, 19px); max-width: 560px; line-height: 1.55; opacity: .85; margin-bottom: 32px; }
.bn-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.bn-btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; background: var(--text); color: var(--bg-alt); border-radius: 6px; font-weight: 800; text-decoration: none; font-size: 15px; box-shadow: 5px 5px 0 var(--accent); transition: all .2s; letter-spacing: .5px; font-family: "Inter",sans-serif; border: none; cursor: pointer; }
.bn-btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--accent); }
.bn-btn-wa { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: var(--whatsapp); color: #fff; border-radius: 6px; font-weight: 800; text-decoration: none; font-size: 15px; font-family: "Inter",sans-serif; }
.bn-btn-wa svg { width: 20px; height: 20px; }
.bn-hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.bn-hero-dot { width: 10px; height: 10px; border-radius: 999px; background: #d4c4a8; border: none; cursor: pointer; transition: all .3s; padding: 0; }
.bn-hero-dot.active { width: 32px; background: var(--accent); }

/* ==================== FEATURES ==================== */
.bn-features { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bn-features-grid { padding: 28px 0; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.bn-feature { display: flex; gap: 14px; align-items: center; }
.bn-feature-icon { font-size: 28px; flex-shrink: 0; }
.bn-feature-title { font-weight: 800; font-size: 15px; font-family: "Inter",sans-serif; }
.bn-feature-desc { opacity: .65; font-size: 13px; font-family: "Inter",sans-serif; }

/* ==================== SECTION ==================== */
.bn-section { padding: 80px 0; }
.bn-section.alt { background: var(--bg-alt); }
.bn-eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 800; margin-bottom: 8px; font-family: "Inter",sans-serif; }
.bn-h2 { font-size: clamp(28px, 5vw, 50px); letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 36px; }

/* ==================== WOOCOMMERCE GRID ==================== */
.woocommerce ul.products,
.woocommerce-page ul.products,
.bn-products {
  display: grid !important;
  gap: 18px !important;
  grid-template-columns: repeat(auto-fill, minmax(230px,1fr)) !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  width: auto !important; margin: 0 !important; float: none !important; clear: none !important;
  background: var(--card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s; display: flex !important; flex-direction: column;
  padding: 0 !important;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(26,18,8,.12); }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { padding: 0 !important; display: block; }
.woocommerce ul.products li.product img { aspect-ratio: 1/1; object-fit: cover; width: 100% !important; margin: 0 !important; padding: 0 !important; box-shadow: none !important; transition: transform .5s; }
.woocommerce ul.products li.product:hover img { transform: scale(1.06); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 12px 14px 4px !important; font-size: 15px !important; font-weight: 800 !important; line-height: 1.25 !important; min-height: 40px; font-family: "Fraunces",serif !important; }
.woocommerce ul.products li.product .price { padding: 0 14px; font-size: 22px !important; font-weight: 900 !important; color: var(--accent) !important; font-family: "Inter",sans-serif !important; margin-bottom: 4px; }
.woocommerce ul.products li.product .price del { font-size: 13px; opacity: .55; font-weight: 500; margin-right: 6px; }
.woocommerce ul.products li.product .price ins { text-decoration: none; color: var(--accent); }
.woocommerce ul.products li.product .price .woocommerce-Price-amount { font-weight: 900; }
.woocommerce ul.products li.product .button,
.woocommerce a.button.add_to_cart_button {
  margin: 10px 14px 14px !important; padding: 10px 14px !important;
  background: var(--text) !important; color: var(--bg-alt) !important;
  border-radius: 6px !important; font-weight: 800 !important; font-size: 13px !important;
  letter-spacing: .5px; text-transform: uppercase; border: none; cursor: pointer;
  display: block; text-align: center; transition: background .2s;
  font-family: "Inter",sans-serif !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--accent) !important; }
.woocommerce span.onsale { background: var(--accent) !important; color: #fff !important; border-radius: 4px !important; padding: 4px 10px !important; font-size: 11px !important; font-weight: 800 !important; top: 12px !important; right: 12px !important; left: auto !important; min-height: 0 !important; line-height: 1.2 !important; box-shadow: 0 4px 10px rgba(194,65,12,.3); }

/* Special discount banner on product card */
.bn-special-tag { background: var(--green); color: #fff; padding: 6px 12px; font-size: 11px; font-weight: 800; text-align: center; letter-spacing: .5px; font-family: "Inter",sans-serif; }

/* ==================== SINGLE PRODUCT PAGE ==================== */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .woocommerce div.product { grid-template-columns: 1fr; gap: 24px; } }
.woocommerce div.product .images,
.woocommerce div.product div.images { float: none !important; width: 100% !important; }
.woocommerce div.product .summary,
.woocommerce div.product div.summary { float: none !important; width: 100% !important; margin-bottom: 0 !important; }
.woocommerce div.product .product_title { font-size: clamp(24px, 4vw, 40px) !important; letter-spacing: -1px; margin-bottom: 14px !important; }
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--accent) !important; font-size: 30px !important; font-weight: 900 !important;
  font-family: "Inter",sans-serif !important; margin: 12px 0 16px !important;
}
.woocommerce div.product p.price del { color: var(--text-soft) !important; opacity: .6; font-size: 18px !important; margin-right: 10px; }
.woocommerce div.product p.price ins { background: transparent !important; text-decoration: none; }

/* 3-tier pricing block */
.bn-pricing-tiers { background: linear-gradient(135deg, #fff2e0 0%, #ffe9d0 100%); border: 2px solid var(--accent); border-radius: 12px; padding: 18px 20px; margin: 16px 0 22px; font-family: "Inter",sans-serif; }
html.dark .bn-pricing-tiers { background: linear-gradient(135deg, rgba(249,115,22,.12) 0%, rgba(194,65,12,.18) 100%); }
.bn-tier { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.bn-tier-label { font-size: 13px; opacity: .8; font-weight: 600; }
.bn-tier-value { font-weight: 900; font-size: 17px; color: var(--text); }
.bn-tier-mrp .bn-tier-value { text-decoration: line-through; opacity: .55; font-size: 15px; }
.bn-tier-sale .bn-tier-value { color: var(--accent); font-size: 22px; }
.bn-tier-special { border-top: 1.5px dashed var(--accent); margin-top: 6px; padding-top: 10px; }
.bn-tier-special .bn-tier-value { color: var(--green); font-size: 26px; }
.bn-special-code { background: var(--text); color: #fff; padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; margin-left: 8px; }
.bn-tier-savings { background: var(--green); color: #fff; padding: 8px 14px; border-radius: 8px; text-align: center; font-weight: 800; font-size: 14px; margin-top: 10px; }

/* Quantity + Add to Cart + Buy Now */
.woocommerce div.product form.cart { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; margin: 18px 0 20px !important; }
.woocommerce div.product form.cart .quantity { margin: 0 !important; }
.woocommerce .quantity .qty { width: 70px !important; padding: 14px 8px !important; border: 1.5px solid var(--border) !important; border-radius: 6px !important; background: var(--bg-alt) !important; color: inherit !important; font-size: 16px !important; font-family: "Inter",sans-serif !important; text-align: center; }
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit, .woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--text) !important; color: var(--bg-alt) !important; border-radius: 6px !important;
  padding: 14px 28px !important; font-weight: 800 !important; font-size: 14px !important;
  letter-spacing: .5px; text-transform: uppercase; border: none !important; cursor: pointer;
  font-family: "Inter",sans-serif !important; transition: background .2s;
}
.woocommerce div.product form.cart .button:hover { background: var(--accent) !important; }

.bn-buy-now { background: var(--accent) !important; color: #fff !important; padding: 14px 28px !important; border-radius: 6px !important; font-weight: 800 !important; font-size: 14px !important; text-transform: uppercase; letter-spacing: .5px; text-decoration: none; font-family: "Inter",sans-serif !important; border: none; cursor: pointer; }
.bn-buy-now:hover { background: var(--text) !important; color: #fff !important; }
.bn-buy-wa { background: var(--whatsapp) !important; color: #fff !important; padding: 14px 28px !important; border-radius: 6px !important; font-weight: 800 !important; font-size: 14px !important; text-transform: uppercase; letter-spacing: .5px; text-decoration: none; font-family: "Inter",sans-serif !important; display: inline-flex; align-items: center; gap: 8px; }
.bn-buy-wa svg { width: 18px; height: 18px; fill: #fff; }

.woocommerce div.product .woocommerce-product-details__short-description { font-family: "Inter",sans-serif; font-size: 15px; line-height: 1.6; opacity: .9; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0 !important; margin-bottom: 24px !important; border-bottom: 2px solid var(--border) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: transparent !important; border: none !important; border-radius: 0 !important; margin: 0 4px -2px 0 !important; padding: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 12px 20px !important; font-weight: 800 !important; color: var(--text-soft) !important; border-bottom: 3px solid transparent !important; font-family: "Inter",sans-serif !important; text-transform: uppercase; font-size: 13px; letter-spacing: .5px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--accent) !important; border-bottom-color: var(--accent) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none !important; }
.woocommerce div.product .woocommerce-tabs .panel { padding: 16px 0; font-family: "Inter",sans-serif; font-size: 15px; line-height: 1.7; }
.woocommerce div.product .woocommerce-tabs .panel h2 { font-size: 22px; font-family: "Fraunces",serif; margin-bottom: 12px; }
.woocommerce div.product .product_meta { font-family: "Inter",sans-serif; font-size: 13px; padding: 16px 0; border-top: 1px solid var(--border); margin-top: 20px; }
.woocommerce div.product .product_meta a { color: var(--accent); text-decoration: none; }

/* Product image gallery */
.woocommerce-product-gallery { position: relative; border-radius: 12px; overflow: hidden; }
.woocommerce-product-gallery .woocommerce-product-gallery__image img { border-radius: 12px; }
.flex-control-thumbs { display: flex !important; gap: 8px !important; margin-top: 12px !important; flex-wrap: wrap; }
.flex-control-thumbs li { width: calc(20% - 7px) !important; }
.flex-control-thumbs li img { border-radius: 6px; cursor: pointer; opacity: .7; transition: opacity .2s; }
.flex-control-thumbs li img.flex-active, .flex-control-thumbs li img:hover { opacity: 1; box-shadow: 0 0 0 2px var(--accent); }

/* Shop page header */
.woocommerce .woocommerce-breadcrumb { font-family: "Inter",sans-serif; font-size: 13px; opacity: .7; padding: 16px 0; }
.woocommerce .woocommerce-breadcrumb a { color: var(--accent); text-decoration: none; }
.woocommerce-products-header { padding: 12px 0 24px; }
.woocommerce-products-header__title { font-size: clamp(28px, 5vw, 48px); letter-spacing: -1.5px; font-weight: 900; }
.woocommerce-result-count { font-family: "Inter",sans-serif; font-size: 13px; opacity: .7; }
.woocommerce-ordering select { font-family: "Inter",sans-serif; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--bg-alt); color: inherit; }

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background: var(--bg-alt) !important; border-top: 3px solid var(--accent) !important;
  font-family: "Inter",sans-serif !important; padding: 14px 18px !important; border-radius: 8px !important;
  color: var(--text) !important;
}
.woocommerce-message a.button { background: var(--accent) !important; color: #fff !important; padding: 8px 16px !important; border-radius: 6px !important; }

/* ==================== CART PAGE ==================== */
.woocommerce table.shop_table { border-collapse: collapse; width: 100%; font-family: "Inter",sans-serif; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 14px !important; border-color: var(--border) !important; }
.woocommerce-cart .cart-collaterals .cart_totals h2 { font-size: 20px; margin-bottom: 16px; }
.woocommerce a.remove { color: var(--accent) !important; }

/* ==================== CATEGORIES ==================== */
.bn-cats-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); }
.bn-cat { position: relative; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background-size: cover; background-position: center; text-decoration: none; display: block; border: 1px solid var(--border); transition: transform .3s; }
.bn-cat:hover { transform: translateY(-6px); }
.bn-cat::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1) 40%, rgba(26,18,8,.92) 100%); }
.bn-cat-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; color: #fff; }
.bn-cat-tag { font-family: "Inter",sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .8; margin-bottom: 4px; }
.bn-cat-name { font-size: 24px; font-weight: 900; }
.bn-cat-cta { font-family: "Inter",sans-serif; font-size: 12px; color: var(--accent-2); margin-top: 8px; font-weight: 700; }

/* ==================== PROMO ==================== */
.bn-promo { background: linear-gradient(105deg, #c2410c 0%, #f97316 100%); border-radius: 16px; padding: 50px 36px; color: #fff8ed; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden; }
.bn-promo::before { content: ""; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.1); }
.bn-promo-title { font-size: clamp(24px, 4vw, 40px); letter-spacing: -1px; line-height: 1.05; margin-bottom: 8px; }
.bn-promo code { background: var(--text); padding: 4px 12px; border-radius: 4px; letter-spacing: 2px; color: #fff; font-family: "Inter",monospace; }

/* ==================== TIMELINE ==================== */
.bn-timeline { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.bn-milestone { padding: 22px; background: var(--card); border-radius: 10px; border-left: 3px solid var(--accent); transition: all .3s; }
.bn-milestone:hover { transform: translateX(4px); border-left-width: 6px; }
.bn-milestone-year { font-size: 38px; font-weight: 900; color: var(--accent); line-height: 1; letter-spacing: -2px; font-family: "Inter",sans-serif; }
.bn-milestone-title { font-weight: 800; font-size: 16px; margin-top: 10px; }
.bn-milestone-desc { font-family: "Inter",sans-serif; font-size: 13px; opacity: .7; margin-top: 6px; line-height: 1.5; }

/* ==================== FOOTER ==================== */
.bn-footer { background: #0b0806; color: #f5ead8; padding: 50px 0 24px; border-top: 2px solid var(--accent); }
.bn-footer-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.bn-footer-brand { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.bn-footer-about { font-family: "Inter",sans-serif; font-size: 13px; opacity: .7; line-height: 1.55; }
.bn-footer h4 { font-family: "Inter",sans-serif; font-weight: 800; font-size: 13px; margin-bottom: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent-2); }
.bn-footer a { display: block; color: #f5ead8; text-decoration: none; font-size: 14px; padding: 5px 0; opacity: .75; font-family: "Inter",sans-serif; }
.bn-footer a:hover { opacity: 1; color: var(--accent-2); }
.bn-footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid #2a1f14; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; opacity: .7; font-family: "Inter",sans-serif; }
.bn-fyw { color: #f97316 !important; font-weight: 800; opacity: 1 !important; display: inline !important; padding: 0 !important; }

/* ==================== FLOATING BUTTONS ==================== */
.bn-float { position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 12px; z-index: 50; }
.bn-float a { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.bn-float-wa { background: var(--whatsapp); box-shadow: 0 6px 20px rgba(37,211,102,.5); animation: bn-wa-pulse 2.4s infinite; }
.bn-float-call { background: var(--accent); box-shadow: 0 6px 20px rgba(194,65,12,.5); }
@keyframes bn-wa-pulse { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 6px 20px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); } }

/* ==================== SEARCH SUGGESTIONS ==================== */
.bn-search-suggest { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--card); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 20px 50px rgba(0,0,0,.15); max-height: 380px; overflow-y: auto; z-index: 100; }
.bn-suggest-row { display: flex; gap: 10px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; font-family: "Inter",sans-serif; font-size: 14px; transition: background .15s; }
.bn-suggest-row:last-child { border-bottom: none; }
.bn-suggest-row:hover { background: var(--bg-alt); }
.bn-suggest-row img { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.bn-suggest-ph { width: 48px; height: 48px; border-radius: 6px; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); font-size: 22px; flex-shrink: 0; }
.bn-suggest-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.bn-suggest-title { font-weight: 700; font-size: 14px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bn-suggest-url { font-size: 11px; opacity: .55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bn-suggest-meta { text-align: right; flex-shrink: 0; display: flex; flex-direction: column; gap: 2px; }
.bn-suggest-price { color: var(--accent); font-weight: 800; font-size: 13px; white-space: nowrap; }
.bn-suggest-cat { font-size: 10px; opacity: .6; text-transform: uppercase; letter-spacing: .5px; }
.bn-suggest-empty { padding: 20px; text-align: center; font-size: 13px; opacity: .6; font-family: "Inter",sans-serif; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .bn-section { padding: 60px 0; }
  .bn-features-grid { padding: 22px 0; }
  .container { padding: 0 18px; }
}

@media (max-width: 768px) {
  .bn-marquee-track { font-size: 12px; gap: 2rem; padding: 8px 0; }
  .bn-header-inner { gap: 8px; padding: 10px 0; flex-wrap: wrap; }
  .bn-logo-dot { width: 38px; height: 38px; font-size: 15px; }
  .bn-logo-name { font-size: 16px; }
  .bn-logo-sub { font-size: 10px; }
  .bn-search-desktop, .bn-nav, .bn-theme-toggle { display: none !important; }
  .bn-search-mobile { display: block; padding: 10px 18px 12px; max-width: none; }
  .bn-search-mobile input { padding: 10px 14px 10px 38px; font-size: 14px; }
  .bn-cart-btn { padding: 8px 12px; font-size: 13px; margin-left: auto; }
  .bn-cart-label { display: none; }
  .bn-burger { display: flex; }
  .bn-hero { min-height: 480px; }
  .bn-hero-content { padding: 48px 0 64px; }
  .bn-hero-title { font-size: clamp(28px, 9vw, 44px); letter-spacing: -1px; }
  .bn-hero-sub { font-size: 15px; }
  .bn-hero-actions .bn-btn-primary, .bn-hero-actions .bn-btn-wa { width: 100%; padding: 14px 20px; font-size: 14px; box-shadow: 4px 4px 0 var(--accent); }
  .bn-h2 { font-size: clamp(24px, 6.5vw, 36px); margin-bottom: 24px; }
  .bn-section { padding: 48px 0; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 13px !important; min-height: 32px; padding: 10px 10px 4px !important; }
  .woocommerce ul.products li.product .price { font-size: 17px !important; padding: 0 10px; }
  .woocommerce ul.products li.product .price del { font-size: 11px; }
  .woocommerce ul.products li.product .button { font-size: 11px !important; padding: 8px !important; margin: 8px 10px 12px !important; }
  .woocommerce span.onsale { font-size: 9px !important; padding: 3px 7px !important; top: 8px !important; right: 8px !important; }
  .bn-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bn-cat-name { font-size: 18px; }
  .bn-cat-info { padding: 12px; }
  .bn-promo { padding: 30px 20px; text-align: center; flex-direction: column; }
  .bn-float a { width: 52px; height: 52px; }
  .bn-float-wa svg { width: 26px; height: 26px; }
  .bn-float-call svg { width: 22px; height: 22px; }
  .bn-pricing-tiers { padding: 14px 16px; }
  .bn-tier-special .bn-tier-value { font-size: 22px; }
  .woocommerce div.product form.cart { gap: 8px; }
  .woocommerce div.product form.cart .button, .bn-buy-now, .bn-buy-wa { padding: 12px 18px !important; font-size: 12px !important; flex: 1 1 calc(50% - 4px); text-align: center; justify-content: center; }
  .woocommerce-tabs ul.tabs li a { padding: 10px 12px !important; font-size: 11px !important; }
  .bn-footer { padding: 36px 0 16px; }
  .bn-footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

@media (max-width: 380px) {
  .bn-cart-btn { padding: 7px 10px; }
  .bn-cart-count { padding: 1px 6px; font-size: 11px; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

@media print {
  .bn-marquee, .bn-float, .bn-burger, .bn-mobile-menu, .bn-search { display: none !important; }
}
