/*
Theme Name: BYNOX
Theme URI: https://bynox.com
Author: BYNOX Team
Author URI: https://bynox.com
Description: Premium WordPress + WooCommerce theme for BYNOX — Smart Living. Better Everyday.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: bynox
*/

/* ============================================================
   BYNOX DESIGN SYSTEM — CSS VARIABLES
   ============================================================ */
:root {
  --bynox-black:      #0B0B0F;
  --bynox-blue:       #2563EB;
  --bynox-cyan:       #00D4FF;
  --bynox-text:       #F5F7FA;
  --bynox-text-muted: #6B7280;
  --bynox-bg-dark:    #111827;
  --bynox-bg-card:    #1F2937;
  --bynox-blue-hover:  #1D4ED8;
  --bynox-cyan-hover:  #00B8E0;
  --bynox-border:      rgba(255,255,255,0.08);
  --bynox-shadow:      0 4px 24px rgba(0,0,0,0.4);
  --bynox-shadow-lg:   0 8px 48px rgba(0,0,0,0.6);
  --bynox-glow-blue:   0 0 24px rgba(37,99,235,0.3);
  --bynox-glow-cyan:   0 0 24px rgba(0,212,255,0.3);
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
  --section-py: clamp(64px, 8vw, 120px);
  --container:  1320px;
  --gap:        clamp(16px, 2vw, 24px);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --duration:   0.3s;
}

/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--bynox-black);
  color: var(--bynox-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Layout ───────────────────────────────────────────────── */
.bynox-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(16px, 4vw, 48px); }
.bynox-section { padding-block: var(--section-py); }
.bynox-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.bynox-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.bynox-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.bynox-flex    { display: flex; align-items: center; }
.bynox-flex-col { display: flex; flex-direction: column; }
.bynox-center  { text-align: center; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--bynox-text); }
.bynox-h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.bynox-h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.bynox-h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
.bynox-h4 { font-size: 1.25rem; }
.bynox-section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bynox-cyan); margin-bottom: 12px; }
.bynox-section-heading { margin-bottom: 16px; }
.bynox-section-sub { color: var(--bynox-text-muted); font-size: 1.1rem; max-width: 560px; margin-inline: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.bynox-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; transition: all var(--duration) var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.bynox-btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0); transition: background var(--duration) var(--ease); }
.bynox-btn:hover::after { background: rgba(255,255,255,0.06); }
.bynox-btn-primary { background: var(--bynox-blue); color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,0.35); }
.bynox-btn-primary:hover { background: var(--bynox-blue-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.5); }
.bynox-btn-secondary { background: transparent; color: var(--bynox-text); border: 1.5px solid var(--bynox-border); }
.bynox-btn-secondary:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.bynox-btn-outline-cyan { background: transparent; color: var(--bynox-cyan); border: 1.5px solid var(--bynox-cyan); }
.bynox-btn-outline-cyan:hover { background: var(--bynox-cyan); color: var(--bynox-black); }
.bynox-btn-lg  { padding: 18px 36px; font-size: 1.05rem; }
.bynox-btn-sm  { padding: 10px 20px; font-size: 0.85rem; }
.bynox-btn-full { width: 100%; }

/* ── Badge ────────────────────────────────────────────────── */
.bynox-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; font-family: var(--font-heading); border: 1px solid var(--bynox-border); background: rgba(255,255,255,0.04); color: var(--bynox-text-muted); white-space: nowrap; }
.bynox-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bynox-cyan); flex-shrink: 0; }

/* ── Cards ────────────────────────────────────────────────── */
.bynox-card { background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease); }
.bynox-card:hover { transform: translateY(-4px); box-shadow: var(--bynox-shadow-lg); border-color: rgba(37,99,235,0.3); }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.bynox-header { position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: 72px; display: flex; align-items: center; border-bottom: 1px solid transparent; transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease); }
.bynox-header.scrolled { background: rgba(11,11,15,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: var(--bynox-border); }
.bynox-header-inner { display: flex; align-items: center; gap: 24px; width: 100%; }
.bynox-logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--bynox-text); }
.bynox-logo img { height: 36px; width: auto; }
.bynox-logo-mark { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--bynox-cyan); margin-left: 2px; }
.bynox-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.bynox-nav a { padding: 8px 14px; font-size: 0.9rem; font-weight: 500; color: var(--bynox-text-muted); border-radius: var(--radius-sm); transition: color var(--duration) var(--ease), background var(--duration) var(--ease); }
.bynox-nav a:hover, .bynox-nav a.current-menu-item { color: var(--bynox-text); }
.bynox-header-actions { display: flex; align-items: center; gap: 4px; margin-left: 16px; }
.bynox-header-action { position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--bynox-text-muted); transition: color var(--duration) var(--ease), background var(--duration) var(--ease); }
.bynox-header-action:hover { background: rgba(255,255,255,0.06); color: var(--bynox-text); }
.bynox-cart-count { position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; border-radius: 999px; background: var(--bynox-blue); color: #fff; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 4px; pointer-events: none; }
.bynox-cart-count:empty { display: none; }
.bynox-search-bar { flex: 1; max-width: 340px; position: relative; }
.bynox-search-bar input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--bynox-border); border-radius: var(--radius-md); padding: 9px 14px 9px 38px; color: var(--bynox-text); font-family: var(--font-body); font-size: 0.875rem; transition: border-color var(--duration) var(--ease); outline: none; }
.bynox-search-bar input::placeholder { color: var(--bynox-text-muted); }
.bynox-search-bar input:focus { border-color: var(--bynox-blue); background: rgba(255,255,255,0.07); }
.bynox-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--bynox-text-muted); font-size: 0.9rem; pointer-events: none; }
.bynox-hamburger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--bynox-text); }
.bynox-hamburger span { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease); }
.bynox-mobile-nav { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--bynox-black); z-index: 850; padding: 32px clamp(16px,4vw,48px); display: flex; flex-direction: column; gap: 8px; transform: translateX(-100%); transition: transform var(--duration) var(--ease); overflow-y: auto; }
.bynox-mobile-nav.open { transform: translateX(0); }
.bynox-mobile-nav a { display: block; padding: 14px 0; font-size: 1.25rem; font-family: var(--font-heading); font-weight: 600; border-bottom: 1px solid var(--bynox-border); color: var(--bynox-text-muted); transition: color var(--duration) var(--ease); }
.bynox-mobile-nav a:hover { color: var(--bynox-text); }

/* ═══════════════════════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════════════════════ */
.bynox-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 990; opacity: 0; pointer-events: none; transition: opacity var(--duration) var(--ease); }
.bynox-cart-overlay.open { opacity: 1; pointer-events: all; }
.bynox-cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(480px, 100vw); background: var(--bynox-bg-dark); border-left: 1px solid var(--bynox-border); z-index: 995; display: flex; flex-direction: column; transform: translateX(100%); transition: transform var(--duration) var(--ease); }
.bynox-cart-drawer.open { transform: translateX(0); }
.bynox-cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--bynox-border); }
.bynox-cart-header h2 { font-size: 1.25rem; }
.bynox-cart-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--bynox-text-muted); transition: background var(--duration) var(--ease), color var(--duration) var(--ease); }
.bynox-cart-close:hover { background: rgba(255,255,255,0.06); color: var(--bynox-text); }
.bynox-cart-items { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.bynox-cart-item { display: flex; gap: 16px; padding: 16px; background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-md); }
.bynox-cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--bynox-black); }
.bynox-cart-item-info { flex: 1; min-width: 0; }
.bynox-cart-item-name { font-weight: 600; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bynox-cart-item-price { color: var(--bynox-cyan); font-weight: 700; font-size: 0.95rem; margin-top: 4px; }
.bynox-cart-item-qty { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.bynox-qty-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); color: var(--bynox-text); font-size: 1rem; transition: background var(--duration) var(--ease); }
.bynox-qty-btn:hover { background: var(--bynox-blue); }
.bynox-qty-num { font-weight: 600; min-width: 20px; text-align: center; }
.bynox-cart-remove { font-size: 0.75rem; color: var(--bynox-text-muted); text-decoration: underline; cursor: pointer; transition: color var(--duration) var(--ease); background: none; border: none; }
.bynox-cart-remove:hover { color: #ef4444; }
.bynox-cart-footer { padding: 24px; border-top: 1px solid var(--bynox-border); display: flex; flex-direction: column; gap: 12px; }
.bynox-cart-subtotal { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 600; }
.bynox-cart-subtotal span:last-child { color: var(--bynox-cyan); }
.bynox-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--bynox-text-muted); text-align: center; padding: 48px 24px; }
.bynox-cart-empty-icon { font-size: 3rem; opacity: 0.3; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.bynox-hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 72px; }
.bynox-hero-bg { position: absolute; inset: 0; z-index: 0; }
.bynox-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bynox-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(11,11,15,0.92) 0%, rgba(11,11,15,0.7) 50%, rgba(11,11,15,0.3) 100%); }
.bynox-hero-gradient {
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(37,99,235,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(0,212,255,0.12) 0%, transparent 50%),
    var(--bynox-black);
}
.bynox-hero-content { position: relative; z-index: 1; max-width: 680px; }
.bynox-hero-pretitle { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.bynox-hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 24px; }
.bynox-hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--bynox-blue), var(--bynox-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bynox-hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--bynox-text-muted); margin-bottom: 40px; line-height: 1.6; }
.bynox-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.bynox-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.bynox-scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--bynox-text-muted); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; animation: bynox-bounce 2s ease-in-out infinite; }
.bynox-scroll-hint::after { content: '↓'; font-size: 1rem; }
@keyframes bynox-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════ */
.bynox-announcement { background: var(--bynox-blue); color: #fff; text-align: center; padding: 10px 16px; font-size: 0.875rem; font-weight: 500; position: relative; z-index: 905; }

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════════ */
.bynox-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--gap); }
.bynox-product-card { background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease); display: flex; flex-direction: column; }
.bynox-product-card:hover { transform: translateY(-6px); box-shadow: var(--bynox-shadow-lg); border-color: rgba(37,99,235,0.4); }
.bynox-product-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bynox-black); }
.bynox-product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.bynox-product-card:hover .bynox-product-thumb img { transform: scale(1.06); }
.bynox-product-thumb-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.bynox-product-thumb-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 0.7rem; font-weight: 700; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em; }
.bynox-badge-new  { background: var(--bynox-cyan); color: var(--bynox-black); }
.bynox-badge-sale { background: #ef4444; color: #fff; }
.bynox-badge-hot  { background: var(--bynox-blue); color: #fff; }
.bynox-product-wishlist { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: rgba(11,11,15,0.7); backdrop-filter: blur(8px); color: var(--bynox-text-muted); font-size: 1rem; transition: color var(--duration) var(--ease), background var(--duration) var(--ease); z-index: 2; }
.bynox-product-wishlist:hover { color: #ef4444; background: rgba(239,68,68,0.15); }
.bynox-product-wishlist.active { color: #ef4444; }
.bynox-product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.bynox-product-category { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bynox-text-muted); margin-bottom: 6px; }
.bynox-product-title { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; line-height: 1.3; color: var(--bynox-text); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bynox-product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.bynox-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; }
.bynox-rating-count { font-size: 0.75rem; color: var(--bynox-text-muted); }
.bynox-product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--bynox-border); gap: 12px; }
.bynox-product-price { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--bynox-text); }
.bynox-product-price del { font-weight: 400; font-size: 0.9rem; color: var(--bynox-text-muted); margin-right: 6px; }
.bynox-product-price ins { text-decoration: none; color: var(--bynox-cyan); }
.bynox-add-to-cart-btn { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: var(--bynox-blue); color: #fff; font-size: 1.1rem; transition: background var(--duration) var(--ease), transform var(--duration) var(--ease); }
.bynox-add-to-cart-btn:hover { background: var(--bynox-blue-hover); transform: scale(1.08); }
.bynox-add-to-cart-btn.loading { pointer-events: none; opacity: 0.7; }

/* ── Section Headers ──────────────────────────────────────── */
.bynox-section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 56px); }
.bynox-section-header-right { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════════ */
.bynox-categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--gap); }
.bynox-category-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; display: block; }
.bynox-category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.bynox-category-card:hover img { transform: scale(1.08); }
.bynox-category-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,15,0.85) 0%, transparent 60%); transition: opacity var(--duration) var(--ease); }
.bynox-category-card:hover::after { opacity: 0.9; }
.bynox-category-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 1; }
.bynox-category-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--bynox-text); }
.bynox-category-count { font-size: 0.8rem; color: var(--bynox-text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════════════ */
.bynox-benefits { background: var(--bynox-bg-dark); }
.bynox-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap); }
.bynox-benefit-item { padding: 32px 24px; border-radius: var(--radius-lg); border: 1px solid var(--bynox-border); background: var(--bynox-bg-card); transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease); }
.bynox-benefit-item:hover { border-color: rgba(0,212,255,0.3); box-shadow: 0 0 24px rgba(0,212,255,0.08); }
.bynox-benefit-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.bynox-benefit-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.bynox-benefit-desc { font-size: 0.9rem; color: var(--bynox-text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.bynox-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 64px); position: relative; }
.bynox-how-grid::before { content: ''; position: absolute; top: 60px; left: calc(33% + 20px); right: calc(33% + 20px); height: 1px; background: linear-gradient(90deg, transparent, var(--bynox-border), transparent); }
.bynox-how-step { text-align: center; }
.bynox-how-step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--bynox-blue), var(--bynox-cyan)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: #fff; margin: 0 auto 24px; box-shadow: var(--bynox-glow-blue); }
.bynox-how-step-img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-md); object-fit: cover; margin-bottom: 24px; border: 1px solid var(--bynox-border); }
.bynox-how-step-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.bynox-how-step-desc  { font-size: 0.9rem; color: var(--bynox-text-muted); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.bynox-testimonials { background: var(--bynox-bg-dark); overflow: hidden; }
.bynox-testimonial-card { background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-lg); padding: 32px; height: 100%; }
.bynox-testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.bynox-testimonial-text  { font-size: 1rem; line-height: 1.7; color: var(--bynox-text-muted); margin-bottom: 24px; font-style: italic; }
.bynox-testimonial-author { display: flex; align-items: center; gap: 12px; }
.bynox-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bynox-border); }
.bynox-testimonial-name     { font-weight: 600; font-size: 0.9rem; }
.bynox-testimonial-location { font-size: 0.78rem; color: var(--bynox-text-muted); }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.bynox-faq { max-width: 800px; margin-inline: auto; }
.bynox-faq-item { border: 1px solid var(--bynox-border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 12px; transition: border-color var(--duration) var(--ease); }
.bynox-faq-item.open { border-color: rgba(37,99,235,0.4); }
.bynox-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: var(--bynox-bg-card); text-align: left; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--bynox-text); gap: 16px; transition: background var(--duration) var(--ease); }
.bynox-faq-question:hover { background: rgba(255,255,255,0.04); }
.bynox-faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--bynox-border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--bynox-text-muted); transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease); }
.bynox-faq-item.open .bynox-faq-icon { transform: rotate(45deg); border-color: var(--bynox-blue); color: var(--bynox-blue); }
.bynox-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.bynox-faq-answer-inner { padding: 0 24px 20px; font-size: 0.95rem; color: var(--bynox-text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.bynox-cta-section { background: linear-gradient(135deg, var(--bynox-bg-dark) 0%, rgba(37,99,235,0.1) 50%, var(--bynox-bg-dark) 100%); border-top: 1px solid var(--bynox-border); border-bottom: 1px solid var(--bynox-border); text-align: center; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.bynox-footer { background: var(--bynox-black); border-top: 1px solid var(--bynox-border); padding-top: var(--section-py); }
.bynox-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 64px); margin-bottom: clamp(40px, 6vw, 80px); }
.bynox-footer-brand-tagline { font-size: 0.9rem; color: var(--bynox-text-muted); margin-top: 12px; line-height: 1.6; max-width: 260px; }
.bynox-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.bynox-social-link { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid var(--bynox-border); color: var(--bynox-text-muted); transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease); }
.bynox-social-link:hover { background: var(--bynox-blue); border-color: var(--bynox-blue); color: #fff; }
.bynox-footer-col-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bynox-text); margin-bottom: 20px; }
.bynox-footer-links { display: flex; flex-direction: column; gap: 10px; }
.bynox-footer-links a { font-size: 0.9rem; color: var(--bynox-text-muted); transition: color var(--duration) var(--ease); }
.bynox-footer-links a:hover { color: var(--bynox-text); }
.bynox-newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.bynox-newsletter-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--bynox-border); border-radius: var(--radius-md); padding: 12px 16px; color: var(--bynox-text); font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color var(--duration) var(--ease); min-width: 0; }
.bynox-newsletter-input::placeholder { color: var(--bynox-text-muted); }
.bynox-newsletter-input:focus { border-color: var(--bynox-blue); }
.bynox-footer-bottom { border-top: 1px solid var(--bynox-border); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 0.8rem; color: var(--bynox-text-muted); flex-wrap: wrap; }
.bynox-footer-payments { display: flex; gap: 8px; align-items: center; }
.bynox-payment-icon { padding: 4px 10px; border-radius: 4px; background: rgba(255,255,255,0.06); border: 1px solid var(--bynox-border); font-size: 0.7rem; font-weight: 600; color: var(--bynox-text-muted); letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════════════════
   WooCommerce — Shop / Archive
   ═══════════════════════════════════════════════════════════ */
.bynox-woo-main { padding-top: calc(72px + var(--section-py)); padding-bottom: var(--section-py); }
.bynox-shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.bynox-shop-sidebar { background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 88px; }
.bynox-widget-title { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--bynox-border); }
.bynox-shop-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-md); margin-bottom: 24px; gap: 16px; }
.woocommerce-result-count { font-size: 0.9rem; color: var(--bynox-text-muted); }
.woocommerce-ordering select { background: rgba(255,255,255,0.05); border: 1px solid var(--bynox-border); border-radius: var(--radius-sm); color: var(--bynox-text); padding: 8px 12px; font-family: var(--font-body); font-size: 0.875rem; cursor: pointer; outline: none; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--gap); margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products li.product { margin: 0 !important; }
.woocommerce-pagination ul { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.woocommerce-pagination ul li a, .woocommerce-pagination ul li span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--bynox-border); background: var(--bynox-bg-card); color: var(--bynox-text-muted); font-size: 0.9rem; transition: all var(--duration) var(--ease); }
.woocommerce-pagination ul li a:hover, .woocommerce-pagination ul li span.current { background: var(--bynox-blue); border-color: var(--bynox-blue); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   WooCommerce — Single Product
   ═══════════════════════════════════════════════════════════ */
.bynox-single-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; padding-top: 40px; }
.bynox-product-gallery { position: sticky; top: 88px; }
.bynox-gallery-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); margin-bottom: 16px; aspect-ratio: 1/1; }
.bynox-gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.bynox-gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.bynox-gallery-thumbs::-webkit-scrollbar { display: none; }
.bynox-gallery-thumb { flex-shrink: 0; width: 72px; height: 72px; border-radius: var(--radius-sm); border: 2px solid var(--bynox-border); overflow: hidden; cursor: pointer; transition: border-color var(--duration) var(--ease); }
.bynox-gallery-thumb.active, .bynox-gallery-thumb:hover { border-color: var(--bynox-blue); }
.bynox-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bynox-product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.bynox-single-title { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.bynox-single-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.bynox-single-price-wrap { margin-bottom: 28px; }
.bynox-single-price { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--bynox-text); }
.bynox-single-price del { font-size: 1.1rem; color: var(--bynox-text-muted); font-weight: 400; margin-right: 8px; }
.bynox-single-price ins { text-decoration: none; color: var(--bynox-cyan); }
.bynox-single-excerpt { font-size: 1rem; color: var(--bynox-text-muted); line-height: 1.7; margin-bottom: 28px; }
.variations { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.variations td { padding: 8px 0; }
.variations .label { width: 100px; font-weight: 600; font-size: 0.9rem; }
.variations select { width: 100%; }
.bynox-atc-form { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.bynox-qty-wrap { display: flex; align-items: center; border: 1px solid var(--bynox-border); border-radius: var(--radius-md); overflow: hidden; background: var(--bynox-bg-card); }
.bynox-qty-ctrl { width: 44px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--bynox-text-muted); transition: background var(--duration) var(--ease), color var(--duration) var(--ease); }
.bynox-qty-ctrl:hover { background: rgba(255,255,255,0.06); color: var(--bynox-text); }
.bynox-qty-input { width: 56px; text-align: center; background: transparent; border: none; outline: none; color: var(--bynox-text); font-family: var(--font-heading); font-size: 1rem; font-weight: 600; -moz-appearance: textfield; }
.bynox-qty-input::-webkit-outer-spin-button, .bynox-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.bynox-single-atc { flex: 1; min-width: 180px; height: 52px; border-radius: var(--radius-md); background: var(--bynox-blue); color: #fff; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background var(--duration) var(--ease), transform var(--duration) var(--ease); box-shadow: 0 4px 16px rgba(37,99,235,0.4); }
.bynox-single-atc:hover { background: var(--bynox-blue-hover); transform: translateY(-1px); }
.bynox-buy-now { width: 100%; height: 52px; border-radius: var(--radius-md); background: transparent; color: var(--bynox-cyan); border: 1.5px solid var(--bynox-cyan); font-family: var(--font-heading); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all var(--duration) var(--ease); margin-bottom: 24px; }
.bynox-buy-now:hover { background: var(--bynox-cyan); color: var(--bynox-black); }
.bynox-trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 20px; background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-md); margin-bottom: 24px; }
.bynox-trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.bynox-trust-icon { font-size: 1.4rem; }
.bynox-trust-label { font-size: 0.72rem; color: var(--bynox-text-muted); font-weight: 500; }
.bynox-product-tabs { margin-top: 40px; }
.bynox-tabs-nav { display: flex; border-bottom: 1px solid var(--bynox-border); margin-bottom: 32px; overflow-x: auto; scrollbar-width: none; }
.bynox-tabs-nav::-webkit-scrollbar { display: none; }
.bynox-tab-btn { padding: 14px 24px; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: var(--bynox-text-muted); border-bottom: 2px solid transparent; transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease); white-space: nowrap; }
.bynox-tab-btn:hover { color: var(--bynox-text); }
.bynox-tab-btn.active { color: var(--bynox-text); border-color: var(--bynox-blue); }
.bynox-tab-pane { display: none; }
.bynox-tab-pane.active { display: block; }

/* ── Reviews ──────────────────────────────────────────────── */
#reviews, #comments { padding: 0; }
.woocommerce-Reviews-title { font-size: 1.25rem; margin-bottom: 24px; }
.commentlist { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px !important; }
.review { background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-md); padding: 24px; }
.comment-text p { color: var(--bynox-text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── Cart / Checkout ──────────────────────────────────────── */
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 16px; border-bottom: 1px solid var(--bynox-border); vertical-align: middle; }
.woocommerce table.shop_table thead th { font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bynox-text-muted); }
.woocommerce-checkout .form-row { margin-bottom: 20px; }
.woocommerce-checkout label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 6px; color: var(--bynox-text); }
.woocommerce-checkout input[type="text"], .woocommerce-checkout input[type="email"], .woocommerce-checkout input[type="tel"], .woocommerce-checkout select, .woocommerce-checkout textarea { width: 100%; background: var(--bynox-bg-card); border: 1px solid var(--bynox-border); border-radius: var(--radius-md); padding: 12px 16px; color: var(--bynox-text); font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color var(--duration) var(--ease); }
.woocommerce-checkout input:focus, .woocommerce-checkout select:focus, .woocommerce-checkout textarea:focus { border-color: var(--bynox-blue); }
#place_order { background: var(--bynox-blue) !important; color: #fff !important; border: none !important; border-radius: var(--radius-md) !important; padding: 16px 32px !important; font-family: var(--font-heading) !important; font-size: 1rem !important; font-weight: 700 !important; width: 100% !important; cursor: pointer !important; }
#place_order:hover { background: var(--bynox-blue-hover) !important; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.bynox-breadcrumb { padding: 16px 0; font-size: 0.8rem; color: var(--bynox-text-muted); }
.bynox-breadcrumb ul { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bynox-breadcrumb li { display: flex; align-items: center; gap: 8px; }
.bynox-breadcrumb a { color: var(--bynox-text-muted); transition: color var(--duration) var(--ease); }
.bynox-breadcrumb a:hover { color: var(--bynox-text); }

/* ── Swiper ───────────────────────────────────────────────── */
.bynox-swiper { overflow: visible; }
.bynox-swiper .swiper-wrapper { align-items: stretch; }
.bynox-swiper .swiper-slide { height: auto; }
.bynox-swiper-nav { display: flex; gap: 8px; align-items: center; }
.bynox-swiper-btn { width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1px solid var(--bynox-border); background: var(--bynox-bg-card); color: var(--bynox-text-muted); display: flex; align-items: center; justify-content: center; transition: all var(--duration) var(--ease); }
.bynox-swiper-btn:hover { background: var(--bynox-blue); border-color: var(--bynox-blue); color: #fff; }
.bynox-swiper-btn.swiper-button-disabled { opacity: 0.3; pointer-events: none; }

/* ── Main / Notices ───────────────────────────────────────── */
.bynox-main { padding-top: 72px; }
.bynox-main:not(.bynox-woo-main) { min-height: 60vh; }
.woocommerce-message, .woocommerce-error, .woocommerce-info { border-radius: var(--radius-md) !important; border: 1px solid var(--bynox-border) !important; padding: 16px 20px !important; margin-bottom: 24px !important; font-size: 0.9rem !important; list-style: none !important; }
.woocommerce-message { background: rgba(0,212,255,0.08) !important; border-color: rgba(0,212,255,0.3) !important; color: var(--bynox-text) !important; }
.woocommerce-error   { background: rgba(239,68,68,0.08) !important; border-color: rgba(239,68,68,0.3) !important; color: var(--bynox-text) !important; }
.woocommerce-info    { background: rgba(37,99,235,0.08) !important; border-color: rgba(37,99,235,0.3) !important; color: var(--bynox-text) !important; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes bynox-fadein { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Reveal: sólo activo si JS ya cargó (clase .js-ready en <body>) */
.js-ready [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js-ready [data-reveal].revealed { opacity: 1; transform: translateY(0); }
.js-ready [data-reveal-delay="1"] { transition-delay: 0.1s; }
.js-ready [data-reveal-delay="2"] { transition-delay: 0.2s; }
.js-ready [data-reveal-delay="3"] { transition-delay: 0.3s; }
.js-ready [data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .bynox-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bynox-shop-layout { grid-template-columns: 240px 1fr; }
}
@media (max-width: 1024px) {
  .bynox-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bynox-how-grid { grid-template-columns: 1fr; gap: 40px; }
  .bynox-how-grid::before { display: none; }
  .bynox-single-product-layout { grid-template-columns: 1fr; }
  .bynox-product-gallery { position: static; }
}
@media (max-width: 768px) {
  .bynox-nav, .bynox-search-bar { display: none; }
  .bynox-hamburger { display: flex; }
  .bynox-grid-2, .bynox-grid-3 { grid-template-columns: 1fr; }
  .bynox-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bynox-shop-layout { grid-template-columns: 1fr; }
  .bynox-shop-sidebar { position: static; }
  .bynox-footer-grid { grid-template-columns: 1fr; }
  .bynox-footer-bottom { flex-direction: column; text-align: center; }
  .bynox-section-header { flex-direction: column; align-items: flex-start; }
  .bynox-hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .bynox-grid-4 { grid-template-columns: 1fr; }
  .bynox-products-grid { grid-template-columns: repeat(2, 1fr); }
  .bynox-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .bynox-atc-form { flex-direction: column; }
  .bynox-single-atc { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   v1.1 — Hero glows, testimonios, CTA, CRO
   ═══════════════════════════════════════════════════════════ */
.bynox-hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.bynox-hero-glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%); top: -100px; right: -100px; }
.bynox-hero-glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%); bottom: -50px; right: 200px; }

.bynox-testimonial-text { font-size: 0.95rem; color: var(--bynox-text-muted); line-height: 1.7; margin: 14px 0 20px; font-style: italic; }
.bynox-testimonial-author { display: flex; align-items: center; gap: 12px; }
.bynox-testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bynox-border); }
.bynox-testimonial-initial { width: 44px; height: 44px; border-radius: 50%; background: var(--bynox-blue); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.bynox-testimonial-name { font-weight: 600; font-size: 0.875rem; }
.bynox-testimonial-location { font-size: 0.75rem; color: var(--bynox-text-muted); }

.bynox-cta-heading { font-weight: 800; margin: 12px auto 16px; max-width: 640px; }
.bynox-cta-sub { margin-bottom: 40px; }

/* ── CRO: urgencia de stock ─────────────────────────────── */
.bynox-stock-urgency { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-sm); background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #f87171; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; }
.bynox-stock-urgency::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: bynox-pulse 1.5s ease-in-out infinite; }
@keyframes bynox-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── CRO: métodos de pago en producto ───────────────────── */
.bynox-payment-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.bynox-payment-row-label { font-size: 0.75rem; color: var(--bynox-text-muted); margin-right: 4px; }

/* ── CRO: barra sticky añadir al carrito (móvil) ────────── */
.bynox-sticky-atc { position: fixed; bottom: 0; left: 0; right: 0; z-index: 940; display: none; align-items: center; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(11,11,15,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--bynox-border); }
.bynox-sticky-atc-info { flex: 1; min-width: 0; }
.bynox-sticky-atc-name { font-size: 0.8rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bynox-sticky-atc-price { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--bynox-cyan); }
.bynox-sticky-atc .bynox-btn { flex-shrink: 0; padding: 12px 22px; font-size: 0.9rem; }
@media (max-width: 768px) {
  .bynox-sticky-atc.visible { display: flex; }
  body.single-product { padding-bottom: 76px; }
}
