/* =====================================================================
   Parkingbox custom product template CSS
   Versiunea: 1.0.0  ·  Generat din parkingbox-simple.html
   Scope: încărcat doar pe single-product cu _pb_use_template != 'none'
   ===================================================================== */

  :root {
    /* Brand — extins din v1, dar push pe contrast și textură */
    --cream:        #f6efe4;
    --cream-deep:   #ebe0cd;
    --cream-light:  #fbf6ed;
    --paper:        #fffaf2;
    --ink:          #141210;
    --ink-soft:     #2c2925;
    --ink-mid:      #4a4640;
    --muted:        #8a847a;
    --line:         #ddd0bb;
    --line-soft:    #ece2cf;

    --orange:       #ee6c1a;
    --orange-deep:  #c8551a;
    --orange-soft:  #ffe9d4;
    --orange-glow:  rgba(238, 108, 26, 0.18);

    --green:        #4a8b2c;
    --green-deep:   #3a6e21;
    --green-soft:   #e3f0d6;

    --red:          #c8392c;
    --white:        #ffffff;

    --font-display: 'Space Grotesk', 'Inter Tight', system-ui, sans-serif;
    --font-body:    'Inter Tight', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Background pattern foarte subtil — paper noise */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(20, 18, 16, 0.025) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }

  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.04;
  }

  .container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 36px;
    position: relative;
    z-index: 1;
  }

  .mono {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  /* ========================================================= */
  /* TOP UTILITY BAR                                           */
  /* ========================================================= */
  .util-bar {
    background: var(--ink);
    color: var(--cream);
    padding: 9px 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .util-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .util-bar a { color: var(--cream); text-decoration: none; opacity: 0.85; }
  .util-bar a:hover { color: var(--orange); opacity: 1; }
  .util-bar-left, .util-bar-right { display: flex; gap: 28px; align-items: center; }
  .util-dot::before {
    content: '●';
    color: var(--orange);
    margin-right: 8px;
    font-size: 0.7em;
    vertical-align: 1px;
  }

  /* ========================================================= */
  /* HEADER                                                    */
  /* ========================================================= */
  header.main-nav {
    background: rgba(246, 239, 228, 0.92);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-mark {
    width: 34px;
    height: 34px;
    background: var(--ink);
    color: var(--cream);
    display: grid;
    place-items: center;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 2px;
    position: relative;
  }
  .logo-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--orange);
    border-radius: 1px;
  }
  .logo .brand-orange { color: var(--orange); font-style: italic; font-weight: 700; }
  nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }
  nav a {
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 4px 0;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--orange);
    transition: width 0.3s ease;
  }
  nav a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 11px 22px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.2s;
    border-radius: 2px;
  }
  .nav-cta::after { display: none; }
  .nav-cta:hover { background: var(--orange); }

  /* ========================================================= */
  /* BREADCRUMB                                                */
  /* ========================================================= */
  .breadcrumb-wrap { background: var(--cream); border-bottom: 1px solid var(--line-soft); }
  .breadcrumb {
    padding: 16px 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .breadcrumb a { color: var(--muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--ink); }
  .breadcrumb .sep { margin: 0 12px; opacity: 0.4; }
  .breadcrumb .current { color: var(--ink); }

  /* ========================================================= */
  /* HERO                                                      */
  /* ========================================================= */
  .hero { padding: 24px 0 48px; position: relative; }
  .hero::before {
    content: 'PARKINGBOX';
    position: absolute;
    top: 40px; right: -20px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.6;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
  }

  /* --- Gallery --- */
  .hero-img-wrap { position: relative; }
  .hero-img-frame {
    background: var(--paper);
    padding: 28px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 5/6;
    border: 1px solid var(--line);
  }
  .hero-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(20, 18, 16, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(20, 18, 16, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  .hero-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, transparent 0%, transparent 60%, rgba(238, 108, 26, 0.04) 100%);
    pointer-events: none;
  }
  .hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }
  .hero-img-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--ink);
    color: var(--cream);
    padding: 7px 12px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 2px;
  }
  .hero-img-tag.orange { background: var(--orange); color: var(--white); }
  .hero-img-dim {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: var(--paper);
    color: var(--ink);
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    z-index: 2;
    border: 1px solid var(--line);
    border-radius: 2px;
    letter-spacing: 0.06em;
  }
  .hero-img-corner {
    position: absolute;
    width: 16px; height: 16px;
    border: 1px solid var(--orange);
    z-index: 3;
  }
  .hero-img-corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
  .hero-img-corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
  .hero-img-corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
  .hero-img-corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

  .thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 12px;
  }
  .thumb {
    aspect-ratio: 1;
    background: var(--paper);
    cursor: pointer;
    transition: all 0.2s;
    padding: 8px;
    border: 1px solid var(--line);
    position: relative;
  }
  .thumb img { width: 100%; height: 100%; object-fit: contain; }
  .thumb:hover { border-color: var(--ink); }
  .thumb.active { border-color: var(--orange); border-width: 2px; padding: 7px; }

  /* --- Info column --- */
  .hero-info { padding-top: 4px; }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--orange-deep);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 12px 6px 14px;
    background: var(--orange-soft);
    border-left: 2px solid var(--orange);
  }

  h1.product-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.25rem, 4.2vw, 3.55rem);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 12px;
    color: var(--ink);
  }
  /* Global rule: pentru cuvintele de accent .italic folosim Inter Tight italic
     (italic real, nu falsificat de browser pe Space Grotesk) — păstrează
     distincția tipografică între titluri (Space Grotesk) și accent (Inter Tight italic) */
  .italic {
    font-family: var(--font-body) !important;
    font-style: italic !important;
    font-weight: 600 !important;
    letter-spacing: -0.015em;
  }
  /* Toate elementele decorative cu italic primesc Inter Tight italic real */
  .desc-side-quote,
  .section-num-big,
  .reviews-score-num,
  .tbi-tier-rate,
  .compare-price,
  .price-finance-text strong,
  .dims-info-card .value,
  .review-card::before,
  .persona-card-num,
  .tbi-section::before,
  .final-cta::after,
  .logo .brand-orange,
  .dims-fit-note strong,
  .tbi-logo {
    font-family: var(--font-body) !important;
  }
  h1.product-title .italic {
    font-style: italic;
    font-weight: 600;
    color: var(--orange);
  }
  /* Suffix afișat dinamic când selectezi variația (Maro · Cu spate · ...) */
  .product-title-suffix {
    display: block;
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--ink-soft);
    letter-spacing: -0.005em;
    margin-top: 8px;
    line-height: 1.3;
  }
  .product-sub {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-mid);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
  }
  .product-sub strong { color: var(--ink); font-weight: 700; }

  /* Rating row */
  .rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.92rem;
  }
  .stars { color: var(--orange); letter-spacing: 2px; font-size: 1.1rem; }
  .rating-meta { color: var(--ink-soft); }
  .rating-meta a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }

  /* Rating CTA — clickable variant: bigger, hoverable */
  .rating-row--cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.18s;
    margin-bottom: 16px;
  }
  .rating-row--cta:hover {
    border-color: var(--orange);
    background: var(--orange-soft);
    transform: translateY(-1px);
  }
  .rating-row--cta .rating-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1;
  }
  .rating-row--cta .rating-meta {
    color: var(--ink-soft);
    font-size: 0.86rem;
  }
  .rating-row--cta .rating-meta strong {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
  }
  .rating-row--cta:hover .rating-meta strong { border-color: var(--orange); }
  .rating-row--cta .rating-arrow {
    font-family: var(--font-mono);
    color: var(--orange-deep);
    font-weight: 700;
    transition: transform 0.18s;
    margin-left: auto;
  }
  .rating-row--cta:hover .rating-arrow { transform: translateX(4px); }

  /* HERO KEY BENEFITS — checkmark bullets sub rating */
  .hero-key-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 7px;
  }
  .hero-key-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--ink-soft);
  }
  .hero-key-benefits li strong {
    color: var(--ink);
    font-weight: 700;
  }
  .hero-key-benefits .hkb-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--green);
    background: var(--green-soft);
    border-radius: 50%;
    padding: 3px;
    box-sizing: border-box;
  }

  /* HERO BENEFIT BANNER — Fără autorizație */
  .hero-benefit {
    background: var(--ink);
    color: var(--cream);
    padding: 16px 20px;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero-benefit::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(238, 108, 26, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(238, 108, 26, 0.08) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
  }
  .hero-benefit-icon {
    width: 38px; height: 38px;
    background: var(--orange);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .hero-benefit-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2.5; }
  .hero-benefit-text {
    position: relative;
    z-index: 1;
  }
  .hero-benefit-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.2;
    font-style: italic;
  }
  .hero-benefit-sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(246, 239, 228, 0.65);
    margin-top: 3px;
    letter-spacing: 0.02em;
  }

  /* Price block */
  .price-block {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 20px 22px;
    margin-bottom: 18px;
    position: relative;
  }
  .price-block::before {
    content: 'PREȚ';
    position: absolute;
    top: -8px; left: 18px;
    background: var(--cream);
    padding: 0 8px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.2em;
  }
  .price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .price-main {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
  }
  .price-currency {
    font-size: 1.05rem;
    margin-left: 2px;
    font-weight: 600;
    font-family: var(--font-body);
  }
  .price-vat {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .price-ttc {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
  }
  .price-ttc strong { color: var(--ink); font-weight: 700; }

  .price-finance {
    border-top: 1px dashed var(--line);
    margin-top: 14px;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .price-finance-text {
    font-size: 0.88rem;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .price-finance-icon {
    width: 18px;
    height: 18px;
    color: var(--orange-deep);
    flex-shrink: 0;
  }
  .price-finance-text strong {
    color: var(--ink);
    font-weight: 700;
  }
  .price-finance-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s;
  }
  .price-finance-link:hover { color: var(--orange); border-color: var(--orange); }

  /* Configurator (compact in hero) */
  .option-group { margin-bottom: 18px; }
  .option-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .option-label .selected-value {
    color: var(--ink);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
  }
  .option-choices { display: flex; gap: 8px; flex-wrap: wrap; }
  .option-pill {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.15s;
    color: var(--ink-soft);
  }
  .option-pill:hover { border-color: var(--ink); color: var(--ink); }
  .option-pill.selected {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--cream);
  }

  /* Color swatches */
  .color-swatches { display: flex; gap: 10px; }
  .color-swatch {
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px var(--line);
    transition: all 0.15s;
    position: relative;
  }
  .color-swatch:hover { transform: scale(1.05); }
  .color-swatch.selected {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
  }
  .color-swatch[data-color="antracit"] { background: #2d2f31; }
  .color-swatch[data-color="alb"] { background: #f0ede5; }
  .color-swatch[data-color="gri-argintiu"] { background: #8c8f94; }
  .color-swatch[data-color="maro"] { background: #5c3d27; }

  /* CTA */
  .cta-row {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 10px;
    margin: 18px 0 18px;
  }

  /* WooCommerce form.cart styling inside our .cta-row */
  .cta-row form.cart {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0;
  }
  .cta-row form.cart .quantity {
    flex: 0 0 76px;
    margin: 0;
    position: relative;
  }
  .cta-row form.cart .quantity input.qty {
    width: 100%;
    height: 100%;
    min-height: 56px;
    padding: 0 8px;
    border: 1.5px solid var(--ink);
    background: var(--paper);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    color: var(--ink);
    border-radius: 2px;
    appearance: textfield;
    -moz-appearance: textfield;
    box-sizing: border-box;
  }
  .cta-row form.cart .quantity input.qty::-webkit-outer-spin-button,
  .cta-row form.cart .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .cta-row form.cart .quantity input.qty:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
  }
  .cta-row form.cart button.single_add_to_cart_button {
    flex: 1;
    background: var(--green);
    color: var(--white) !important;
    padding: 18px 22px;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: -0.005em;
    position: relative;
    overflow: hidden;
    min-width: 0;
    line-height: 1.2;
  }
  .cta-row form.cart button.single_add_to_cart_button::after {
    content: ' →';
    transition: transform 0.2s;
    display: inline-block;
    margin-left: 4px;
  }
  .cta-row form.cart button.single_add_to_cart_button:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -6px rgba(74, 139, 44, 0.5);
  }
  .cta-row form.cart button.single_add_to_cart_button:hover::after {
    transform: translateX(3px);
  }

  /* WhatsApp cell inside cta-row */
  .cta-row .cta-whatsapp {
    margin: 0;
    min-height: 56px;
    padding: 16px 18px;
    font-size: 0.94rem;
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
  }
  .cta-row .cta-whatsapp .btn-whatsapp-icon {
    width: 19px;
    height: 19px;
    color: var(--green);
  }
  .cta-row .cta-whatsapp:hover .btn-whatsapp-icon { color: var(--cream); }

  /* Form occupies grid column 1, allow widgets injected by plugins below */
  .cta-row form.cart { grid-column: 1; grid-row: 1; }

  /* Hide auto-injected widgets in hero CTA — TBI + BT Direct + Stripe wcpay + hidden inputs.
     Păstrate în DOM (necesare pentru JS-ul pbCopyTbiContent + init plugin-uri),
     dar mutate off-screen. Linkul "Vezi opțiuni →" duce la S07 unde sunt vizibile. */
  .cta-row .wcpay-express-checkout-wrapper {
    display: none !important;
  }
  /* Hide ALL non-essential direct children of form.cart (simple products) */
  .cta-row form.cart > *:not(.quantity):not(.single_add_to_cart_button):not(.variations_form):not(.variations):not(.single_variation_wrap) {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
  /* Same hide for variations_button children (variable products) */
  .cta-row form.variations_form .variations_button > *:not(.quantity):not(.single_add_to_cart_button) {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }

  /* ========================================================= */
  /* VARIABLE PRODUCT — variations form layout                  */
  /* ========================================================= */
  /* Variable products: form takes full cta-row width, WhatsApp jos.
     Override display:flex moștenit de la .cta-row form.cart */
  .cta-row form.variations_form {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    display: block !important;
  }
  .cta-row form.variations_form ~ .cta-whatsapp,
  .hero-info .cta-row > .cta-whatsapp:has(~ form.variations_form),
  .hero-info form.variations_form ~ .cta-whatsapp {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-top: 4px;
  }

  /* Variations table — verticală, fiecare attribute pe propriul rând */
  .variations,
  table.variations {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    display: block !important;
    table-layout: fixed !important;
  }
  .variations tbody { display: block !important; width: 100% !important; }
  .variations tr {
    display: block !important;
    width: 100% !important;
    margin-bottom: 16px !important;
  }
  .cfvsw-label-none table.variations tr th.label,
  .variations th.label {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 0 8px !important;
    text-align: left;
    font-weight: 500;
    border: none;
    width: 100% !important;
    visibility: visible !important;
  }
  .variations th.label label {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
  }
  .variations th.label .cfvsw-selected-label {
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0;
    text-transform: none;
    margin-left: 8px;
  }
  .variations td.value {
    padding: 0;
    border: none;
    display: block;
  }
  .variations .cfvsw-hidden-select { display: none !important; }

  /* Counter pentru numerotare atribute: 01· / 02· / 03· */
  .variations tbody { counter-reset: pb-attr; }
  .variations tr { counter-increment: pb-attr; }
  .variations th.label label::before {
    content: "0" counter(pb-attr) " · ";
    color: var(--muted);
    font-weight: 500;
    margin-right: 2px;
  }

  /* CULOARE — 4 swatches circulare, full width */
  .cfvsw-swatches-container[swatches-attr="attribute_pa_culoare"] {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    margin: 0 !important;
  }
  .cfvsw-swatches-container[swatches-attr="attribute_pa_culoare"] .cfvsw-swatches-option {
    aspect-ratio: 1 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 56px !important;
    min-width: 56px !important;
    border-radius: 50% !important;
    border: 2px solid var(--line) !important;
    cursor: pointer;
    transition: all 0.18s;
    position: relative;
    box-shadow: 0 0 0 1px transparent;
    padding: 0 !important;
    box-sizing: border-box;
  }
  .cfvsw-swatches-container[swatches-attr="attribute_pa_culoare"] .cfvsw-swatches-option:hover {
    transform: scale(1.05);
    border-color: var(--ink);
  }
  .cfvsw-swatches-container[swatches-attr="attribute_pa_culoare"] .cfvsw-swatch-inner {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
  }
  /* Culori — backgrounds per slug (lowercase) */
  .cfvsw-swatches-option[data-slug="gri-antracit"] { background: #2d2f31 !important; }
  .cfvsw-swatches-option[data-slug="alb"] { background: #f0ede5 !important; }
  .cfvsw-swatches-option[data-slug="gri-argintiu"] { background: #8c8f94 !important; }
  .cfvsw-swatches-option[data-slug="maro"] { background: #5c3d27 !important; }
  /* Selected state — culoare */
  .cfvsw-swatches-container[swatches-attr="attribute_pa_culoare"] .cfvsw-selected-swatch {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 2px var(--orange) !important;
  }

  /* SPATE + RAFT METALIC — 2 pills full-width */
  .cfvsw-swatches-container[swatches-attr="attribute_pa_spate"],
  .cfvsw-swatches-container[swatches-attr="attribute_pa_raft-metalic"] {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin: 0 !important;
  }
  .cfvsw-swatches-container[swatches-attr="attribute_pa_spate"] .cfvsw-swatches-option,
  .cfvsw-swatches-container[swatches-attr="attribute_pa_raft-metalic"] .cfvsw-swatches-option {
    padding: 13px 16px !important;
    text-align: center;
    border: 1.5px solid var(--line) !important;
    cursor: pointer;
    transition: all 0.18s;
    background: var(--paper) !important;
    border-radius: 2px !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }
  .cfvsw-swatches-container[swatches-attr="attribute_pa_spate"] .cfvsw-swatches-option:hover,
  .cfvsw-swatches-container[swatches-attr="attribute_pa_raft-metalic"] .cfvsw-swatches-option:hover {
    border-color: var(--ink) !important;
  }
  .cfvsw-swatches-container[swatches-attr="attribute_pa_spate"] .cfvsw-swatch-inner,
  .cfvsw-swatches-container[swatches-attr="attribute_pa_raft-metalic"] .cfvsw-swatch-inner {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
  }
  .cfvsw-swatches-container[swatches-attr="attribute_pa_spate"] .cfvsw-selected-swatch,
  .cfvsw-swatches-container[swatches-attr="attribute_pa_raft-metalic"] .cfvsw-selected-swatch {
    border-color: var(--ink) !important;
    background: var(--ink) !important;
  }
  .cfvsw-swatches-container[swatches-attr="attribute_pa_spate"] .cfvsw-selected-swatch .cfvsw-swatch-inner,
  .cfvsw-swatches-container[swatches-attr="attribute_pa_raft-metalic"] .cfvsw-selected-swatch .cfvsw-swatch-inner {
    color: var(--cream);
  }

  /* Variations_button (qty + Adaugă în coș) — flex inline */
  .cta-row form.variations_form .variations_button,
  .cta-row form.variations_form .woocommerce-variation-add-to-cart {
    display: flex !important;
    gap: 8px;
    align-items: stretch;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0;
  }
  .cta-row form.variations_form .variations_button .quantity {
    flex: 0 0 76px;
    margin: 0;
    position: relative;
  }
  .cta-row form.variations_form .variations_button .quantity input.qty {
    width: 100%;
    height: 100%;
    min-height: 56px;
    padding: 0 8px;
    border: 1.5px solid var(--ink);
    background: var(--paper);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    color: var(--ink);
    border-radius: 2px;
    appearance: textfield;
    -moz-appearance: textfield;
    box-sizing: border-box;
  }
  .cta-row form.variations_form .variations_button .quantity input.qty::-webkit-outer-spin-button,
  .cta-row form.variations_form .variations_button .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .cta-row form.variations_form .variations_button button.single_add_to_cart_button {
    flex: 1;
    background: var(--green);
    color: var(--white) !important;
    padding: 18px 22px;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: -0.005em;
    min-width: 0;
    line-height: 1.2;
  }
  .cta-row form.variations_form .variations_button button.single_add_to_cart_button:not(.disabled):hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -6px rgba(74, 139, 44, 0.5);
  }
  .cta-row form.variations_form .variations_button button.single_add_to_cart_button.disabled,
  .cta-row form.variations_form .variations_button button.single_add_to_cart_button.wc-variation-selection-needed {
    background: var(--line) !important;
    color: var(--muted) !important;
    cursor: not-allowed;
    opacity: 0.7;
  }

  /* Reset variations link */
  .reset_variations {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
  }
  .reset_variations:hover { color: var(--orange); }

  /* Single variation display — when variation selected, shows price+stock */
  .woocommerce-variation { margin: 0 0 12px; min-height: 0; }
  .woocommerce-variation-price,
  .woocommerce-variation-availability { display: none; }  /* price already in hero block */
  .woocommerce-variation-description { font-size: 0.86rem; color: var(--ink-soft); }
  .btn {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 18px 26px;
    border-radius: 2px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: -0.005em;
  }
  .btn-primary {
    background: var(--green);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
  }
  .btn-primary:hover::before { left: 100%; }
  .btn-primary:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -6px rgba(74, 139, 44, 0.5);
  }
  .btn-primary .arrow { transition: transform 0.2s; font-size: 1.1em; }
  .btn-primary:hover .arrow { transform: translateX(3px); }
  .btn-secondary {
    background: var(--paper);
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
  }
  .btn-whatsapp-icon { width: 18px; height: 18px; fill: currentColor; }

  /* Trust strip */
  .trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: transparent;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    margin-top: 4px;
  }
  .trust-item {
    padding: 0 14px;
    border-right: 1px solid var(--line-soft);
    text-align: center;
  }
  .trust-item:last-child { border-right: none; }
  .trust-item-icon {
    width: 22px; height: 22px;
    margin: 0 auto 8px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    display: block;
  }
  .trust-item-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1px;
    line-height: 1.2;
  }
  .trust-item-sub {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  /* Compact variant — mai mic vertical, pentru folosire în hero */
  .trust-strip--compact {
    padding: 12px 0;
    margin-top: 2px;
  }
  .trust-strip--compact .trust-item { padding: 0 10px; }
  .trust-strip--compact .trust-item-icon {
    width: 18px; height: 18px;
    margin: 0 auto 5px;
  }
  .trust-strip--compact .trust-item-title { font-size: 0.74rem; }
  .trust-strip--compact .trust-item-sub { font-size: 0.6rem; }

  /* ========================================================= */
  /* STICKY CART BAR — apare la scroll past hero (desktop+mob)  */
  /* ========================================================= */
  .pb-sticky-cart {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 250, 242, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.12);
    z-index: 95;
    backdrop-filter: blur(12px);
    transform: translateY(-110%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .pb-sticky-cart.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .pb-sticky-cart-inner {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    padding: 10px 22px;
  }
  .pb-sticky-cart-img {
    width: 56px; height: 56px;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 4px;
    box-sizing: border-box;
  }
  .pb-sticky-cart-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }
  .pb-sticky-cart-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }
  .pb-sticky-cart-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pb-sticky-cart-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
  }
  .pb-sticky-cart-rating { color: var(--orange-deep); font-weight: 600; }
  .pb-sticky-cart-sep { color: var(--line); }
  .pb-sticky-cart-price {
    color: var(--ink);
    font-weight: 700;
    font-size: 0.88rem;
  }
  .pb-sticky-cart-price .amount { font-family: var(--font-display); font-size: 1rem; }
  .pb-sticky-cart-vat {
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .pb-sticky-cart-btn {
    background: var(--green);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 22px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .pb-sticky-cart-btn:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px -6px rgba(74, 139, 44, 0.5);
    color: var(--white);
  }
  .pb-sticky-cart-btn-arrow { transition: transform 0.2s; }
  .pb-sticky-cart-btn:hover .pb-sticky-cart-btn-arrow { transform: translateX(3px); }
  .pb-sticky-cart-wa {
    width: 44px; height: 44px;
    border: 1.5px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s;
  }
  .pb-sticky-cart-wa svg { width: 22px; height: 22px; }
  .pb-sticky-cart-wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
  }

  /* Sub-nav-ul nu este lipit de ecran; sticky cart-ul nu il muta. */
  body.pb-sticky-on .sub-nav { top: auto; }

  /* ========================================================= */
  /* PRODUCT SUB-NAV                                           */
  /* ========================================================= */
  /* ========================================================= */
  /* FULL-BLEED PENTRU SECȚIUNI — box-shadow trick             */
  /* Nu schimbăm lățimea reală a secțiunii (păstrează layout)  */
  /* doar EXTINDEM fundalul prin box-shadow pe orizontală.     */
  /* clip-path tăie shadow-ul vertical, păstrează orizontal.   */
  /* ========================================================= */
  section.hero,
  section.desc-section,
  section.dims-section,
  section.features-section,
  section.specs-section,
  section.vs-section,
  section.tbi-section,
  section.delivery-section,
  section.reviews-section,
  section.faq-section,
  section.final-cta {
    clip-path: inset(0 -100vw);
  }
  /* Light-bg sections: cream */
  section.hero,
  section.desc-section,
  section.dims-section,
  section.specs-section,
  section.delivery-section,
  section.reviews-section,
  section.faq-section {
    box-shadow: -100vw 0 0 var(--cream), 100vw 0 0 var(--cream);
  }
  /* Dark-bg sections: ink */
  section.features-section,
  section.final-cta,
  section.vs-section,
  section.tbi-section {
    box-shadow: -100vw 0 0 var(--ink), 100vw 0 0 var(--ink);
  }
  /* Sub-nav păstrează full-bleed via margin/width clasic (parent are wrapper diferit) */
  .sub-nav {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }
  /* Previne horizontal scrollbar din shadow-uri */
  body { overflow-x: hidden; }

  .sub-nav {
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: static;
    top: auto;
    z-index: 1;
    backdrop-filter: blur(10px);
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .sub-nav .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .sub-nav .container::-webkit-scrollbar { display: none; }
  .sub-nav a {
    padding: 16px 22px;
    color: var(--ink-soft);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    border-right: 1px solid var(--line-soft);
    transition: all 0.15s;
    position: relative;
  }
  .sub-nav a:first-child { padding-left: 0; }
  .sub-nav a:hover { color: var(--ink); background: var(--cream-light); }
  .sub-nav a.active { color: var(--orange-deep); background: var(--cream-light); }
  .sub-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 2px;
    background: var(--orange);
  }

  /* ========================================================= */
  /* SECTION SCAFFOLDING                                       */
  /* ========================================================= */
  section { padding: 90px 0; position: relative; }

  .section-header {
    display: block;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1.5px solid var(--ink);
  }
  /* Numerotarea ascunsă — păstrăm clase pentru posibile reactivări */
  .section-num,
  .section-num-big {
    display: none !important;
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    letter-spacing: -0.03em;
    line-height: 1.02;
    color: var(--ink);
  }
  .section-title .italic { font-style: italic; font-weight: 600; color: var(--orange); }
  .section-lead {
    font-size: 1.02rem;
    color: var(--ink-mid);
    max-width: 720px;
    margin-top: 20px;
    line-height: 1.6;
  }

  /* ========================================================= */
  /* SECTION 01 — DESPRE / PERSONAS                            */
  /* ========================================================= */
  .desc-section { background: var(--cream); }
  .desc-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
  }
  .desc-side {
    position: sticky;
    top: 160px;
  }
  .desc-side-quote {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 1.55rem;
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.02em;
    border-left: 3px solid var(--orange);
    padding-left: 22px;
    margin-bottom: 24px;
  }
  .desc-side-meta {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.9;
    letter-spacing: 0.02em;
  }
  .desc-side-meta strong { color: var(--ink); font-weight: 700; }
  .desc-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .desc-content p:first-child::first-letter {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: italic;
    font-size: 5rem;
    float: left;
    line-height: 0.82;
    margin: 8px 14px 0 0;
    color: var(--orange);
    letter-spacing: -0.04em;
  }

  /* PERSONAS BLOCK */
  .personas-block { margin-top: 60px; }
  .personas-block-title {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--orange-deep);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .personas-block-h {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 36px;
    max-width: 720px;
    letter-spacing: -0.025em;
  }
  .personas-block-h .italic { font-style: italic; color: var(--orange); }
  .personas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .persona-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 38px;
    position: relative;
    transition: all 0.25s;
  }
  .persona-card:hover {
    border-color: var(--ink);
    transform: translateY(-3px);
  }
  .persona-card-num {
    position: absolute;
    top: 24px; right: 28px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .persona-tag {
    display: inline-block;
    background: var(--ink);
    color: var(--cream);
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 2px;
  }
  .persona-card.house .persona-tag { background: var(--orange); color: var(--white); }
  .persona-h {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .persona-h .italic { font-style: italic; font-weight: 600; color: var(--orange); }
  .persona-quote {
    font-size: 0.98rem;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--line);
  }
  .persona-bullets { list-style: none; }
  .persona-bullets li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 6px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.45;
  }
  .persona-bullets li::before {
    content: '→';
    color: var(--orange);
    font-weight: 700;
  }
  .persona-bullets strong { color: var(--ink); font-weight: 700; }

  /* ========================================================= */
  /* SECTION 02 — CE ÎNCAPE                                    */
  /* ========================================================= */
  .fits-section { background: var(--cream-deep); position: relative; overflow: hidden; }
  .fits-section::before {
    content: '';
    position: absolute;
    top: 0; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
    pointer-events: none;
  }
  .fits-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .fits-diagram {
    background: var(--paper);
    border: 1px solid var(--line);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    padding: 40px;
  }
  .fits-diagram::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(20, 18, 16, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(20, 18, 16, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
  }
  .fits-diagram svg {
    position: relative;
    width: 100%; height: 100%;
    z-index: 1;
  }
  .fits-diagram-label {
    position: absolute;
    bottom: 14px; left: 14px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
    background: var(--paper);
    padding: 4px 8px;
    border: 1px solid var(--line);
  }
  .fits-items { padding-left: 12px; }
  .fits-items-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--orange-deep);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .fits-list { list-style: none; }
  .fits-list li {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
  }
  .fits-list li:last-child { border-bottom: none; }
  .fits-item-icon {
    width: 36px; height: 36px;
    background: var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  .fits-item-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
  .fits-item-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--ink);
  }
  .fits-item-detail {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--muted);
    margin-top: 2px;
    letter-spacing: 0.02em;
  }
  .fits-item-count {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--orange);
  }

  /* ========================================================= */
  /* SECTION 03 — DIMENSIUNI                                   */
  /* ========================================================= */
  .dims-section { background: var(--cream); }
  .dims-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .dims-diagram {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 50px;
    aspect-ratio: 4/3;
    position: relative;
  }
  .dims-diagram svg { width: 100%; height: 100%; }
  /* Layout fără imagine — doar cardurile de dimensiuni, aranjate pe bloc */
  .dims-grid--noimg { display: block; }
  .dims-grid--noimg .dims-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
  .dims-grid--noimg .dims-cards .dims-info-card { margin-bottom: 0; }
  .dims-grid--noimg .dims-cards .dims-fit-note { grid-column: 1 / -1; }
  .dims-info-card {
    background: var(--ink);
    color: var(--cream);
    padding: 32px;
    margin-bottom: 18px;
  }
  .dims-info-card .label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .dims-info-card .value {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--cream);
    letter-spacing: -0.02em;
  }
  .dims-info-card .desc {
    color: rgba(246, 239, 228, 0.75);
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .dims-fit-note {
    background: var(--orange-soft);
    padding: 20px 24px;
    border-left: 3px solid var(--orange);
  }
  .dims-fit-note strong { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--orange-deep); margin-bottom: 4px; }
  .dims-fit-note p { font-size: 0.9rem; color: var(--ink-soft); }

  /* ========================================================= */
  /* SECTION 04 — CONSTRUCȚIE (DARK)                           */
  /* ========================================================= */
  .features-section {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(238, 108, 26, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(238, 108, 26, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .features-section .section-title { color: var(--cream); }
  .features-section .section-title .italic { color: var(--orange); }
  .features-section .section-header { border-color: var(--orange); }
  .features-section .section-num-big { color: var(--cream); opacity: 0.15; }
  .features-section .section-lead { color: rgba(246, 239, 228, 0.7); }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .features-img-stage {
    background: linear-gradient(135deg, #2a2620 0%, #0a0908 100%);
    aspect-ratio: 1;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(238, 108, 26, 0.25);
    position: sticky;
    top: 160px;
  }
  .features-img-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(238, 108, 26, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(238, 108, 26, 0.07) 1px, transparent 1px);
    background-size: 36px 36px;
  }
  .features-img-stage img {
    width: 100%; height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }
  .features-stage-tag {
    position: absolute;
    bottom: 18px; left: 18px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
  }
  .feature-list { list-style: none; }
  .feature-item {
    padding: 26px 0;
    border-top: 1px solid rgba(246, 239, 228, 0.1);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    align-items: start;
  }
  .feature-item:last-child { border-bottom: 1px solid rgba(246, 239, 228, 0.1); }
  .feature-num {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--orange);
    padding-top: 6px;
    letter-spacing: 0.05em;
  }
  .feature-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .feature-title .italic { font-style: italic; color: var(--orange); font-weight: 600; }
  .feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(246, 239, 228, 0.72);
  }

  /* ========================================================= */
  /* SECTION 05 — SPECS                                        */
  /* ========================================================= */
  .specs-section { background: var(--cream-deep); }
  .specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--paper);
    border: 1px solid var(--line);
  }
  .spec-col {}
  .specs-grid > .spec-col:first-child {
    border-right: 1px solid var(--line);
  }
  .spec-row {
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid var(--line);
    padding: 20px 28px;
    align-items: center;
    transition: background 0.15s;
    gap: 12px;
  }
  .spec-row:hover { background: var(--cream-light); }
  .spec-row:last-of-type { border-bottom: none; }
  .spec-label {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.74rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .spec-value {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    text-align: right;
  }
  .spec-value .accent { color: var(--orange); }

  /* ========================================================= */
  /* SECTION 06 — COMPARAȚIE INTERNĂ                          */
  /* ========================================================= */
  .compare-section { background: var(--cream); }
  .compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .compare-col {
    padding: 38px 32px;
    position: relative;
    border-right: 1px solid var(--line);
  }
  .compare-col:last-child { border-right: none; }
  .compare-col.featured {
    background: var(--ink);
    color: var(--cream);
  }
  .compare-col.featured .compare-name { color: var(--cream); }
  .compare-col.featured .compare-price { color: var(--orange); }
  .compare-col.featured .compare-feature { color: rgba(246, 239, 228, 0.85); border-color: rgba(246, 239, 228, 0.12); }
  .compare-col.featured .compare-feature-label { color: rgba(246, 239, 228, 0.55); }
  .compare-col.featured .compare-cta {
    background: var(--orange);
    color: var(--white);
  }
  .compare-tag {
    display: inline-block;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    background: var(--cream-deep);
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .compare-col.featured .compare-tag {
    background: var(--orange);
    color: var(--white);
  }
  .compare-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .compare-name .italic { font-style: italic; color: var(--orange); }
  .compare-sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-bottom: 22px;
  }
  .compare-col.featured .compare-sub { color: rgba(246, 239, 228, 0.5); }
  .compare-price {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .compare-price-sub {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 26px;
    letter-spacing: 0.05em;
  }
  .compare-col.featured .compare-price-sub { color: rgba(246, 239, 228, 0.5); }
  .compare-features { list-style: none; margin-bottom: 26px; }
  .compare-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.88rem;
    color: var(--ink-soft);
    gap: 12px;
  }
  .compare-feature-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .compare-feature span:last-child {
    font-weight: 700;
    text-align: right;
    color: var(--ink);
  }
  .compare-col.featured .compare-feature span:last-child { color: var(--cream); }
  .compare-cta {
    display: block;
    text-align: center;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .compare-cta:hover { background: var(--orange); color: var(--white); }
  .compare-col.featured .compare-cta:hover { background: var(--cream); color: var(--ink); }

  /* ========================================================= */
  /* SECTION 07 — COMPARAȚIE EXTERNĂ                          */
  /* ========================================================= */
  .vs-section { background: var(--cream-deep); }
  .vs-table-wrap {
    background: var(--paper);
    border: 1px solid var(--line);
    overflow-x: auto;
  }
  .vs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 880px;
  }
  .vs-table th, .vs-table td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }
  .vs-table thead th {
    background: var(--cream);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
    font-weight: 500;
    padding: 22px;
    vertical-align: bottom;
  }
  .vs-product {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin-bottom: 4px;
  }
  .vs-product.us .italic {
    font-style: italic;
    color: var(--orange);
  }
  .vs-source {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .vs-price {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 6px;
  }
  .vs-price.us { color: var(--orange-deep); }
  .vs-table .us-col {
    background: var(--cream-light);
    border-left: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
  }
  .vs-table thead .us-col { border-top: 2px solid var(--orange); }
  .vs-table tbody tr:last-child td.us-col { border-bottom: 2px solid var(--orange); }
  .vs-row-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .vs-check {
    color: var(--green);
    font-weight: 700;
  }
  .vs-cross {
    color: var(--muted);
  }
  .vs-highlight {
    color: var(--orange-deep);
    font-weight: 700;
  }
  .vs-note {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-top: 18px;
    padding: 14px 18px;
    background: var(--paper);
    border-left: 3px solid var(--orange);
    line-height: 1.55;
  }

  /* ========================================================= */
  /* SECTION 08 — TBI FINANCING                                */
  /* ========================================================= */
  .tbi-section { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
  .tbi-section::before {
    content: 'tbi';
    position: absolute;
    bottom: -80px; right: -40px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28rem;
    color: var(--cream);
    opacity: 0.025;
    pointer-events: none;
    line-height: 1;
    font-weight: 800;
  }
  .tbi-section .section-title { color: var(--cream); }
  .tbi-section .section-title .italic { color: var(--orange); }
  .tbi-section .section-header { border-color: var(--orange); }
  .tbi-section .section-num-big { color: var(--cream); opacity: 0.15; }
  .tbi-section .section-lead { color: rgba(246, 239, 228, 0.7); }

  .tbi-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .tbi-info-card {
    background: rgba(246, 239, 228, 0.04);
    border: 1px solid rgba(246, 239, 228, 0.1);
    padding: 36px;
    position: sticky;
    top: 160px;
  }
  .tbi-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(246, 239, 228, 0.1);
  }
  .tbi-logo {
    background: var(--orange);
    color: var(--white);
    padding: 6px 12px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.05em;
    border-radius: 2px;
  }
  .tbi-logo-text {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(246, 239, 228, 0.65);
    letter-spacing: 0.05em;
    line-height: 1.4;
  }
  .tbi-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-weight: 700;
  }
  .tbi-info-card h3 .italic { font-style: italic; color: var(--orange); }
  .tbi-info-card > p {
    color: rgba(246, 239, 228, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .tbi-features { list-style: none; }
  .tbi-features li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: rgba(246, 239, 228, 0.85);
    line-height: 1.45;
  }
  .tbi-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
  }
  .tbi-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .tbi-tier {
    background: rgba(246, 239, 228, 0.04);
    border: 1px solid rgba(246, 239, 228, 0.1);
    padding: 26px 24px;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
  }
  .tbi-tier:hover {
    border-color: var(--orange);
    background: rgba(238, 108, 26, 0.08);
  }
  .tbi-tier.recommended {
    border-color: var(--orange);
    background: rgba(238, 108, 26, 0.1);
  }
  .tbi-tier.recommended::before {
    content: 'RECOMANDAT';
    position: absolute;
    top: -10px; left: 22px;
    background: var(--orange);
    color: var(--white);
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    border-radius: 2px;
  }
  .tbi-tier-term {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(246, 239, 228, 0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .tbi-tier-rate {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
  }
  .tbi-tier-rate-sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(246, 239, 228, 0.55);
    margin-bottom: 18px;
    letter-spacing: 0.05em;
  }
  .tbi-tier-detail {
    font-size: 0.82rem;
    color: rgba(246, 239, 228, 0.75);
    line-height: 1.5;
    padding-top: 14px;
    border-top: 1px solid rgba(246, 239, 228, 0.1);
  }
  .tbi-tier-detail strong { color: var(--cream); font-weight: 700; }
  .tbi-disclaimer {
    grid-column: 1 / -1;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(246, 239, 228, 0.4);
    margin-top: 16px;
    line-height: 1.55;
    letter-spacing: 0.02em;
  }

  /* ========================================================= */
  /* SECTION 09 — DELIVERY                                     */
  /* ========================================================= */
  .delivery-section { background: var(--cream); }
  .delivery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .delivery-card {
    background: var(--paper);
    padding: 38px 32px;
    border: 1px solid var(--line);
    transition: all 0.25s;
    position: relative;
  }
  .delivery-card:hover {
    border-color: var(--ink);
    transform: translateY(-3px);
  }
  .delivery-card.featured {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
  }
  .delivery-card.featured .delivery-region { color: var(--cream); }
  .delivery-card.featured .delivery-detail { color: rgba(246, 239, 228, 0.72); }
  .delivery-card.featured .delivery-tag { background: var(--orange); color: var(--white); }
  .delivery-card.featured .delivery-price { color: var(--orange); }
  .delivery-tag {
    display: inline-block;
    background: var(--orange-soft);
    color: var(--orange-deep);
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 26px;
  }
  .delivery-region {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.05;
    color: var(--ink);
  }
  .delivery-region .italic { font-style: italic; color: var(--orange); }
  .delivery-price {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--orange-deep);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
  }
  .delivery-detail {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .delivery-timeline {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .delivery-card.featured .delivery-timeline { border-color: rgba(246, 239, 228, 0.12); }
  .delivery-step {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .delivery-card.featured .delivery-step { color: rgba(246, 239, 228, 0.5); }

  /* ========================================================= */
  /* SECTION 10 — REVIEWS                                      */
  /* ========================================================= */
  .reviews-section { background: var(--cream-deep); }
  .reviews-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    margin-bottom: 48px;
    align-items: center;
    padding: 40px;
    background: var(--paper);
    border: 1px solid var(--line);
  }
  .reviews-score {
    text-align: left;
  }
  .reviews-score-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 5.5rem;
    color: var(--orange);
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
  }
  .reviews-score-stars {
    color: var(--orange);
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }
  .reviews-score-count {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .reviews-bars { display: grid; gap: 8px; }
  .reviews-bar-row {
    display: grid;
    grid-template-columns: 50px 1fr 40px;
    gap: 12px;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
  }
  .reviews-bar {
    height: 8px;
    background: var(--cream-deep);
    overflow: hidden;
    border-radius: 2px;
  }
  .reviews-bar-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 2px;
  }
  .reviews-bar-count { color: var(--muted); text-align: right; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .review-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 28px;
    position: relative;
  }
  .review-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 22px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 4.5rem;
    color: var(--orange);
    opacity: 0.2;
    line-height: 1;
  }
  .review-stars {
    color: var(--orange);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 22px;
  }
  .review-author {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
  }
  .review-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ink);
  }
  .review-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 2px;
    letter-spacing: 0.02em;
  }
  .review-verified {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ========================================================= */
  /* SECTION 11 — FAQ                                          */
  /* ========================================================= */
  .faq-section { background: var(--cream); }
  .faq-list {
    border-top: 1px solid var(--ink);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
    transition: background 0.15s;
  }
  .faq-item:hover { background: var(--paper); }
  .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 0;
    text-align: left;
    cursor: pointer;
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    gap: 20px;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.3;
  }
  .faq-num {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--orange);
    letter-spacing: 0.1em;
  }
  .faq-toggle {
    width: 32px; height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
    color: var(--ink);
    transition: all 0.2s;
    background: var(--paper);
  }
  .faq-item:hover .faq-toggle { border-color: var(--orange); color: var(--orange); }
  .faq-item.open .faq-toggle {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-item.open .faq-answer { max-height: 600px; }
  .faq-answer-inner {
    padding: 0 60px 32px 80px;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.98rem;
  }
  .faq-answer-inner p { margin-bottom: 12px; }
  .faq-answer-inner strong { color: var(--ink); font-weight: 700; }
  .faq-answer-inner .answer-highlight {
    background: var(--orange-soft);
    padding: 14px 18px;
    margin-top: 14px;
    border-left: 3px solid var(--orange);
    font-size: 0.92rem;
  }

  /* ========================================================= */
  /* SECTION 12 — FINAL CTA                                    */
  /* ========================================================= */
  .final-cta {
    background: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .final-cta::after {
    content: '→';
    position: absolute;
    top: 40%;
    right: -60px;
    font-family: var(--font-display);
    font-size: 22rem;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .final-cta .container { position: relative; z-index: 1; }
  .final-cta-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .final-cta h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.035em;
    max-width: 900px;
    margin: 0 auto 24px;
    color: var(--white);
  }
  .final-cta h2 .italic {
    font-style: italic;
    font-weight: 600;
    color: var(--ink);
  }
  .final-cta p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.55;
  }
  .final-cta-btns {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .final-cta-btn {
    background: var(--ink);
    color: var(--cream);
    padding: 20px 36px;
    font-size: 0.98rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .final-cta-btn.outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
  }
  .final-cta-btn:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-2px);
  }
  .final-cta-btn.outline:hover {
    background: var(--white);
    color: var(--orange-deep);
    border-color: var(--white);
  }

  /* ========================================================= */
  /* STICKY MOBILE CTA BAR                                     */
  /* ========================================================= */
  .mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    z-index: 100;
    box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.1);
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    backdrop-filter: blur(10px);
  }
  .mobile-sticky-img {
    width: 48px; height: 48px;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 4px;
  }
  .mobile-sticky-img img { width: 100%; height: 100%; object-fit: contain; }
  .mobile-sticky-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .mobile-sticky-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.1;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-sticky-price {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--orange-deep);
  }
  .mobile-sticky-btn {
    background: var(--green);
    color: var(--white);
    padding: 14px 18px;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
  }

  /* ========================================================= */
  /* FOOTER                                                    */
  /* ========================================================= */
  footer {
    background: var(--ink);
    color: rgba(246, 239, 228, 0.7);
    padding: 50px 0 30px;
    font-size: 0.88rem;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: end;
  }
  footer a { color: var(--cream); text-decoration: none; opacity: 0.8; }
  footer a:hover { opacity: 1; color: var(--orange); }
  .footer-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    margin-top: 6px;
    opacity: 0.6;
  }

  /* ========================================================= */
  /* RESPONSIVE                                                */
  /* ========================================================= */
  @media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .section-header { grid-template-columns: 160px 1fr; gap: 32px; }
  }

  @media (max-width: 900px) {
    .container { padding: 0 22px; }
    nav ul { display: none; }
    .util-bar-left { display: none; }
    .hero-grid,
    .desc-intro,
    .features-grid,
    .fits-layout,
    .dims-grid,
    .tbi-layout { grid-template-columns: 1fr; gap: 40px; }
    .use-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid,
    .delivery-cards,
    .reviews-grid,
    .personas-grid { grid-template-columns: 1fr; }
    .reviews-top { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
    .specs-grid { grid-template-columns: 1fr; }
    .dims-grid--noimg .dims-cards { grid-template-columns: 1fr; }
    .specs-grid > .spec-col:first-child { border-right: none; border-bottom: 1px solid var(--line); }
    .tbi-tiers { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    .desc-side, .features-img-stage, .tbi-info-card { position: static; }
    .section-header {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 44px;
    }
    .section-num-big { display: none; }
    body { padding-bottom: 78px; }
    .faq-answer-inner { padding: 0 0 28px 0; }
    .faq-question { grid-template-columns: auto 1fr 32px; gap: 12px; font-size: 1rem; }
    .cta-row { grid-template-columns: 1fr; }
    .cta-row form.cart { grid-column: 1; grid-row: 1; }
    .cta-row form.cart .quantity { flex: 0 0 68px; }
    .cta-row .cta-whatsapp {
      width: 100%;
      grid-column: 1;
      grid-row: 2;
      align-self: stretch;
    }
    .hero-benefit { grid-template-columns: auto 1fr; text-align: left; }
    .hero-benefit-icon { margin: 0; }
    h1.product-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .reviews-score-num { font-size: 4.2rem; }
    .sub-nav { top: auto; }

    /* Trust strip — 2x2 grid pe mobil ca să nu fie 4 stack-uri */
    .trust-strip,
    .trust-strip--compact {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 0;
    }
    .trust-strip .trust-item:nth-child(2n),
    .trust-strip--compact .trust-item:nth-child(2n) { border-right: none; }
    .trust-strip .trust-item:nth-child(-n+2),
    .trust-strip--compact .trust-item:nth-child(-n+2) {
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line-soft);
    }

    /* Sticky cart bar — mod mobile (bottom fixed, compact, fără thumb) */
    .pb-sticky-cart {
      top: auto;
      bottom: 0;
      transform: translateY(110%);
      border-top: 1px solid var(--line);
      border-bottom: none;
      box-shadow: 0 -8px 24px -10px rgba(0, 0, 0, 0.12);
    }
    .pb-sticky-cart.is-visible { transform: translateY(0); }
    .pb-sticky-cart-inner {
      grid-template-columns: minmax(0, 1fr) auto auto;
      gap: 10px;
      padding: 10px 14px;
    }
    .pb-sticky-cart-img { display: none; }
    .pb-sticky-cart-name {
      font-size: 0.82rem;
      max-width: 100%;
    }
    .pb-sticky-cart-meta { font-size: 0.72rem; gap: 6px; }
    .pb-sticky-cart-rating .label-text { display: none; }
    .pb-sticky-cart-price .pb-sticky-cart-vat { display: none; }
    .pb-sticky-cart-btn {
      padding: 12px 16px;
      font-size: 0.86rem;
    }
    .pb-sticky-cart-btn-text-mobile-short { display: inline; }
    .pb-sticky-cart-wa {
      width: 40px; height: 40px;
    }
    .pb-sticky-cart-wa svg { width: 20px; height: 20px; }

    body.pb-sticky-on .sub-nav { top: auto; }
  }

  /* ========================================================= */
  /* ANIMATIONS                                                */
  /* ========================================================= */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-info > * { animation: fadeUp 0.6s ease forwards; opacity: 0; }
  .hero-info > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-info > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-info > *:nth-child(3) { animation-delay: 0.19s; }
  .hero-info > *:nth-child(4) { animation-delay: 0.26s; }
  .hero-info > *:nth-child(5) { animation-delay: 0.33s; }
  .hero-info > *:nth-child(6) { animation-delay: 0.4s; }
  .hero-info > *:nth-child(7) { animation-delay: 0.47s; }
  .hero-info > *:nth-child(8) { animation-delay: 0.54s; }
  .hero-info > *:nth-child(9) { animation-delay: 0.61s; }
  .hero-info > *:nth-child(10) { animation-delay: 0.68s; }
  .hero-img-wrap { animation: fadeUp 0.8s ease 0.1s forwards; opacity: 0; }
</style>

  /* ========================================================= */
  /* SECTION 07 — RATE: 2 carduri cu widget-uri native plugin   */
  /* v1.4 — simple, side-by-side, plugin widgets in cards       */
  /* ========================================================= */

  .pb-credit-lead {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
    color: rgba(246, 239, 228, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }
  .pb-credit-lead strong { color: var(--cream); }

  /* Grid 2 col — forțat pentru a evita override-uri plugin */
  .tbi-section .pb-credit-cards {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 20px !important;
    position: relative;
    z-index: 1;
  }

  /* Card simplu */
  .pb-credit-card {
    background: rgba(246, 239, 228, 0.04);
    border: 1px solid rgba(246, 239, 228, 0.14);
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 0;
  }
  .pb-credit-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 14px 30px -14px rgba(238, 108, 26, 0.4);
  }
  .pb-credit-card--bt:hover {
    border-color: #00497b;
    box-shadow: 0 14px 30px -14px rgba(0, 73, 123, 0.4);
  }
  .pb-credit-card:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
  }

  /* Header card */
  .pb-credit-card-head {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(246, 239, 228, 0.1);
  }
  .pb-credit-card-bank {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0;
  }
  .pb-credit-card-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(246, 239, 228, 0.55);
    letter-spacing: 0.04em;
    margin: 6px 0 0;
  }

  /* Features */
  .pb-credit-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
  }
  .pb-credit-card-features li {
    position: relative;
    padding-left: 26px;
    font-size: 0.92rem;
    line-height: 1.4;
    color: rgba(246, 239, 228, 0.82);
  }
  .pb-credit-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px; height: 8px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
  }
  .pb-credit-card--bt .pb-credit-card-features li::before {
    border-color: #5fb3ff;
  }

  /* Container widget plugin la baza card-ului */
  .pb-credit-card-widget {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(246, 239, 228, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
  }
  .pb-credit-card-placeholder {
    color: rgba(246, 239, 228, 0.5);
    font-style: italic;
  }

  /* TBI widget — restilizat în carcasa card-ului nostru */
  .pb-credit-card-widget--tbi .tbi_button_logo2 {
    background: var(--ink) !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
    width: 56px !important;
    height: auto !important;
    flex-shrink: 0 !important;
  }
  .pb-credit-card-widget--tbi {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .pb-credit-card-widget--tbi .tbi_button_line {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: var(--cream) !important;
    line-height: 1.3 !important;
  }
  .pb-credit-card-widget--tbi .tbi_button_line .text-orange {
    font-family: var(--font-display) !important;
    font-style: italic !important;
    font-weight: 700 !important;
    color: var(--orange) !important;
    font-size: 1.4rem !important;
    display: block !important;
    margin-top: 4px !important;
  }

  /* BT Direct widget — wrapper styling (web component) */
  .pb-credit-card-widget--bt bt-direct-widget {
    display: block;
    width: 100%;
    --primary-color: var(--orange);
  }

  /* Disclaimer */
  .pb-credit-disclaimer {
    margin: 28px auto 0;
    max-width: 700px;
    padding: 14px 18px;
    background: rgba(246, 239, 228, 0.03);
    border-left: 2px solid var(--orange);
    color: rgba(246, 239, 228, 0.6);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.55;
    text-align: left;
    position: relative;
    z-index: 1;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .tbi-section .pb-credit-cards {
      grid-template-columns: 1fr !important;
    }
    .pb-credit-card { padding: 24px 20px 20px; }
  }

/* =========================================================
   VARIATIONS / VARIABLE PRODUCT TEMPLATE
   ========================================================= */
.pb-variable-form-wrap {
  margin-top: 24px;
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(20,18,16,0.05);
}

.pb-variable-form-wrap form.variations_form {
  margin-bottom: 0;
}

.pb-variable-form-wrap table.variations {
  width: 100%;
  border: none;
  margin-bottom: 24px;
}

.pb-variable-form-wrap table.variations tbody tr {
  display: block;
  margin-bottom: 16px;
}

.pb-variable-form-wrap table.variations td.label {
  display: block;
  padding: 0 0 8px 0;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.pb-variable-form-wrap table.variations td.value {
  display: block;
  padding: 0;
  border: none;
  background: none;
}

/* Stil pentru Select-uri */
.pb-variable-form-wrap table.variations select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(20,18,16,0.15);
  border-radius: 8px;
  background-color: #fff;
  font-size: 15px;
  color: var(--text-dark);
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23141210" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.2s;
  cursor: pointer;
}

.pb-variable-form-wrap table.variations select:focus {
  outline: none;
  border-color: var(--orange);
}

.pb-variable-form-wrap a.reset_variations {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
}

/* Pretul de la variatie */
.woocommerce-variation-price {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(20,18,16,0.05);
}

.woocommerce-variation-price .price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.woocommerce-variation-availability {
  font-size: 13px;
  margin-bottom: 16px;
}

/* =========================================================
   SPLIT-SCREEN VARIABLE PRODUCT TEMPLATE
   ========================================================= */

/* Structura Grid */
.pb-split-template {
  background: #ffffff;
  padding: 60px 0;
}

.pb-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: flex-start; /* Important pt sticky */
}

/* Stanga: Galerie */
.pb-split-gallery {
  position: relative;
  height: 100%;
}

.pb-gallery-sticky {
  position: sticky;
  top: 100px; /* Offset de la header */
}

.pb-split-gallery .woocommerce-product-gallery {
  opacity: 1 !important;
  transition: opacity 0.3s ease;
}

/* Dreapta: Summary */
.pb-split-summary {
  display: flex;
  flex-direction: column;
}

.pb-product-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.pb-product-price-wrap {
  margin-bottom: 24px;
}

.pb-product-price-wrap .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--orange, #f37021);
}

.pb-product-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

.pb-divider {
  border: 0;
  height: 1px;
  background: rgba(20,18,16,0.1);
  margin: 32px 0;
}

/* Stiluri NOI pentru formularul de Variatii */
.pb-variable-form-container .variations_form {
  margin-bottom: 0;
}

.pb-variable-form-container table.variations {
  width: 100%;
  border: none;
  margin-bottom: 32px;
}

.pb-variable-form-container table.variations tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.pb-variable-form-container table.variations td.label {
  display: block;
  padding: 0 0 12px 0;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pb-variable-form-container table.variations td.value {
  display: block;
  padding: 0;
  border: none;
  background: none;
}

/* Ascundem select-ul nativ si vom folosi butoane din JS 
   sau il pastram ca un buton foarte mare momentan pt siguranta nativa */
.pb-variable-form-container table.variations select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(20,18,16,0.1);
  border-radius: 12px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23141210" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pb-variable-form-container table.variations select:focus,
.pb-variable-form-container table.variations select:hover {
  outline: none;
  border-color: var(--orange, #f37021);
  box-shadow: 0 4px 12px rgba(243,112,33,0.1);
}

.pb-variable-form-container a.reset_variations {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #888;
  text-decoration: underline;
  transition: color 0.2s;
}

.pb-variable-form-container a.reset_variations:hover {
  color: var(--orange, #f37021);
}

/* Buton Add to Cart */
.pb-variable-form-container .single_variation_wrap {
  background: #fdfaf7; /* Crem deschis */
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(243,112,33,0.15);
  margin-top: 16px;
}

.pb-variable-form-container .woocommerce-variation-price {
  margin-bottom: 20px;
}

.pb-variable-form-container .woocommerce-variation-price .price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.pb-variable-form-container button.single_add_to_cart_button {
  background: var(--orange, #f37021);
  color: #fff;
  width: 100%;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.pb-variable-form-container button.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243,112,33,0.3);
  background: #e06015;
}

/* Trust Strip */
.pb-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(20,18,16,0.1);
}

.pb-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.pb-trust-item svg {
  color: var(--orange, #f37021);
  width: 28px;
  height: 28px;
}

.pb-trust-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Accordions */
.pb-product-accordions {
  margin-top: 40px;
}

.pb-accordion {
  border-bottom: 1px solid rgba(20,18,16,0.1);
}

.pb-accordion summary {
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pb-accordion summary::-webkit-details-marker {
  display: none;
}

.pb-acc-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--orange, #f37021);
  transition: transform 0.3s;
}

.pb-accordion[open] .pb-acc-icon {
  transform: rotate(45deg);
}

.pb-acc-content {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 992px) {
  .pb-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  .pb-gallery-sticky {
    position: relative;
    top: 0;
  }
  
  .pb-product-title {
    font-size: 32px;
  }
  
  .pb-trust-strip {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pb-trust-item {
    flex-direction: row;
    text-align: left;
  }
}

/* =========================================================
   CUSTOM GALLERY STYLING
   ========================================================= */
.pb-main-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  background: #fdfaf7;
}

.pb-main-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pb-thumbnails-wrap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.pb-thumbnails-wrap::-webkit-scrollbar {
  display: none;
}

.pb-thumbnail {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fdfaf7;
}

.pb-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pb-thumbnail.active {
  border-color: var(--orange, #f37021);
}

.pb-thumbnail:hover {
  transform: translateY(-2px);
}


/* =========================================================
   CFVSW SWATCHES STYLING (Override Plugin)
   ========================================================= */
.pb-variable-form-container .cfvsw-swatches-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.pb-variable-form-container .cfvsw-swatches-option {
  min-width: unset !important;
  min-height: unset !important;
  padding: 12px 20px !important;
  background: #fff;
  border: 2px solid rgba(20,18,16,0.1) !important;
  border-radius: 12px !important;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}

.pb-variable-form-container .cfvsw-swatch-inner {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.pb-variable-form-container .cfvsw-swatches-option:hover {
  border-color: rgba(243,112,33,0.5) !important;
  background: #fff;
}

.pb-variable-form-container .cfvsw-swatches-option.cfvsw-selected-swatch {
  border-color: var(--orange, #f37021) !important;
  background: rgba(243,112,33,0.05);
}

.pb-variable-form-container .cfvsw-swatches-option.cfvsw-selected-swatch .cfvsw-swatch-inner {
  color: var(--orange, #f37021);
}

/* Fix for standard tables if CFVSW changes it */
.pb-variable-form-container table.variations {
  width: 100%;
  display: block;
}
.pb-variable-form-container table.variations tbody {
  display: block;
  width: 100%;
}

/* =========================================================
   HIDE UGLY AUTO-INJECTED FINANCING WIDGETS
   ========================================================= */
/* Ascunde calculatorul urias BT din formular */
.pb-variable-form-container bt-direct-widget {
  display: none !important;
}

/* Stil pentru sectiunea eleganta de rate */
.pb-elegant-financing {
  margin-top: 24px;
  padding: 20px;
  border-radius: 12px;
  background: #fdfaf7;
  border: 1px solid rgba(243,112,33,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pb-financing-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pb-financing-title svg {
  color: var(--orange, #f37021);
}

.pb-financing-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Fortam butonul BT sa arate ok daca are nevoie */
.pb-elegant-financing bt-direct-widget {
  display: inline-block !important;
}

/* =========================================================
   TABS FINANTARE (TBI + BT DIRECT)
   ========================================================= */
.pb-financing-tabs-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
}

.pb-financing-tabs-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pb-financing-tabs-title svg {
  color: var(--orange, #f37021);
}

.pb-financing-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pb-finance-tab {
  background: #fdfaf7;
  border: 1px solid rgba(243,112,33,0.15);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pb-finance-tab:hover {
  border-color: var(--orange, #f37021);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243,112,33,0.1);
}

.pb-tab-bank {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.pb-tab-action {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange, #f37021);
  text-transform: uppercase;
}

/* Hide native widgets but keep them clickable via JS */
.pb-variable-form-container bt-direct-widget {
  display: none !important;
}

/* FIX (15 iun): pluginul BT Direct auto-injecteaza widget-uri in hero/summary
   (dupa #tbi_button si dupa express-checkout), peste cardul nostru din S07.
   Containerul .pb-variable-form-container nu exista in acest template, deci
   regulile scoped de mai sus nu prindeau widget-urile auto-injectate -> dublare.
   Ascundem orice bt-direct-widget IN AFARA cardului din S07 (#pb_bt_section7). */
bt-direct-widget:not(#pb_bt_section7) {
  display: none !important;
}
/* Cardul intentionat din S07 ramane vizibil */
.pb-credit-card-widget--bt #pb_bt_section7 {
  display: block !important;
}

/* Ascundem TBI-ul nativ sa nu mai ocupe spatiu, il lasam in DOM pentru click */
#tbi_button, 
.tbi-calculator-wrapper {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* =========================================================
   FIX ADD TO CART LAYOUT & HIDDEN WIDGETS
   ========================================================= */
/* Fix Add To Cart Row */
.pb-variable-form-container .woocommerce-variation-add-to-cart {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 24px !important;
}

.pb-variable-form-container .quantity {
  margin: 0 !important;
  float: none !important;
}

.pb-variable-form-container .quantity input.qty {
  height: 54px !important;
  width: 80px !important;
  border-radius: 12px !important;
  border: 2px solid rgba(20,18,16,0.1) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 0 !important;
}

.pb-variable-form-container button.single_add_to_cart_button {
  flex: 1 !important;
  margin: 0 !important;
  height: 54px !important;
  border-radius: 12px !important;
}

/* Fix Hidden Widgets so they can still receive clicks */
#tbi_button, 
.tbi-calculator-wrapper {
  position: absolute !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.pb-hidden-widget-wrap {
  position: absolute !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* =========================================================
   BT DIRECT — POPUP MODAL (click pe card -> popup, ca la TBI)
   (top-level, in afara oricarui @media, ca sa mearga pe toate viewport-urile)
   ========================================================= */
.pb-credit-card--bt .pb-credit-card-placeholder {
  color: #5fb3ff !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.pb-bt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pb-bt-modal.open { display: flex; }
.pb-bt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.72);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.pb-bt-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
.pb-bt-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(20, 18, 16, 0.06);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: #141210;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}
.pb-bt-modal-close:hover { background: rgba(20, 18, 16, 0.13); }
.pb-bt-modal-widget { width: 100%; }
.pb-bt-modal-widget bt-direct-widget {
  display: block !important;
  width: 100%;
}
