/* =========================================================
   PARKINGBOX — Home page styles (PB Home Canvas template)
   Originally inline in page-pb-home.php, extracted to file.
   Header/logo/nav rules removed (now using Astra global header).
   Utility bar styles kept (injected via wp_body_open hook).
   ========================================================= */

/* ------ ASTRA WRAPPER RESET (page-builder layout) ------
   Astra adauga .ast-container display:flex care colapseaza copii.
   Resetam la block + full width pe template-ul nostru. */
body.page-template-page-pb-home #content,
body.page-template-page-pb-home #content > .ast-container,
body.page-template-page-pb-home .ast-page-builder-template .site-content {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: none !important;
}
body.page-template-page-pb-home #page { overflow-x: hidden; }

  :root {
    --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-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;
  }
  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;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ============== 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;
    position: relative;
    z-index: 50;
  }
  .util-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .util-left, .util-right { display: flex; gap: 28px; align-items: center; }
  .util-bar .dot { color: var(--orange); }
  .util-bar a:hover { color: var(--orange); }

    /* ============== HERO ============== */
  .hero {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange-glow), transparent 65%);
    z-index: 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    color: var(--ink-mid);
  }
  .hero-eyebrow .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 var(--green);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 139, 44, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(74, 139, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 139, 44, 0); }
  }
  .hero h1 {
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
    margin-bottom: 22px;
  }
  .hero h1 .italic { font-style: italic; font-weight: 500; color: var(--orange); }
  .hero h1 .accent {
    display: inline-block;
    position: relative;
    background: linear-gradient(180deg, transparent 62%, var(--orange-soft) 62%);
    padding: 0 4px;
  }
  .hero-lead {
    font-size: 1.18rem;
    color: var(--ink-mid);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.55;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 24px -8px var(--orange);
  }
  .btn-primary:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px var(--orange);
  }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--cream); }
  .btn-arrow::after { content: '→'; transition: transform 0.2s; }
  .btn:hover .btn-arrow::after { transform: translateX(4px); }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
  }
  .stat-num .unit { font-size: 1rem; color: var(--muted); font-weight: 500; }
  .stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.06em;
  }

  /* Hero visual */
  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .hero-visual::before {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 8%;
    right: 8%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(20,18,16,0.18), transparent 70%);
    filter: blur(8px);
    z-index: 0;
  }
  .hero-video,
  .hero-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .hero-video {
    display: block;
    object-fit: contain;
    transform: scale(1.5);
    transform-origin: center;
  }
  .hero-svg {
    overflow: visible;
  }
  .hero-svg--legacy {
    display: none;
  }
  .hero-video-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(20,18,16,0.18);
  }
  .hero-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .hero-video-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: var(--ink);
  }
  .hero-video-trigger img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(238, 108, 26, 0.92);
    color: #fff;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .hero-play-icon svg { width: 32px; height: 32px; margin-left: 4px; }
  .hero-video-trigger:hover .hero-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--orange);
  }

  /* ===== VIDEO LIGHTBOX ===== */
  .pb-video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 8, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .pb-video-lightbox.is-open { display: flex; }
  .pb-video-lightbox__inner {
    position: relative;
    width: min(92vw, 1100px);
    aspect-ratio: 16 / 9;
  }
  .pb-video-lightbox__frame,
  .pb-video-lightbox__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
  }
  .pb-video-lightbox__close {
    position: absolute;
    top: -46px;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(246,239,228,0.12);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
  }
  .pb-video-lightbox__close:hover { background: var(--orange); }

  /* Animații elemente box */
  @keyframes shutterRoll {
    0% { transform: translateY(60%); }
    100% { transform: translateY(0); }
  }
  @keyframes dropIn {
    0% { transform: translateY(-30px); opacity: 0; }
    60% { transform: translateY(4px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
  }
  @keyframes rollIn {
    0% { transform: translateX(-180px) rotate(-30deg); opacity: 0; }
    100% { transform: translateX(0) rotate(0); opacity: 1; }
  }
  @keyframes rollInRight {
    0% { transform: translateX(180px) rotate(30deg); opacity: 0; }
    100% { transform: translateX(0) rotate(0); opacity: 1; }
  }
  @keyframes wheelSpin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }
  @keyframes fadeUp {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
  }

  .anim-box-frame { animation: fadeUp 0.8s 0.1s both; transform-origin: bottom center; }
  .anim-shutter { animation: shutterRoll 1.2s 0.9s cubic-bezier(0.4, 0, 0.2, 1) both; transform-origin: top center; }
  .anim-shelf-top { animation: fadeUp 0.5s 1.6s both; }
  .anim-shelf-bot { animation: fadeUp 0.5s 1.8s both; }
  .anim-item-1 { animation: dropIn 0.6s 2.1s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  .anim-item-2 { animation: dropIn 0.6s 2.3s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  .anim-item-3 { animation: dropIn 0.6s 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  .anim-item-4 { animation: dropIn 0.6s 2.4s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  .anim-item-5 { animation: dropIn 0.6s 2.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  .anim-item-6 { animation: dropIn 0.6s 2.7s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  .anim-tire { animation: dropIn 0.6s 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  .anim-bike-1 { animation: rollIn 1s 3.1s cubic-bezier(0.4, 0, 0.2, 1) both; }
  .anim-bike-2 { animation: rollInRight 1s 3.4s cubic-bezier(0.4, 0, 0.2, 1) both; }
  .anim-wheel { animation: wheelSpin 1s 3.1s linear; transform-origin: center; transform-box: fill-box; }
  .anim-float { animation: floatY 3s 4.5s ease-in-out infinite; }
  .anim-checkmark { animation: fadeUp 0.5s 4.2s both; }
  .anim-line { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawLine 1.2s 4.5s forwards; }
  @keyframes drawLine {
    to { stroke-dashoffset: 0; }
  }

  /* Floating decorative tags */
  .float-tag {
    position: absolute;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    box-shadow: 0 8px 20px -8px rgba(20,18,16,0.2);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .float-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
  }
  .float-tag-1 {
    top: 12%;
    left: -8%;
    animation: fadeUp 0.6s 4s both, floatY 4s 5s ease-in-out infinite;
  }
  .float-tag-2 {
    top: 42%;
    right: -10%;
    animation: fadeUp 0.6s 4.4s both, floatY 4s 5.5s ease-in-out infinite;
  }
  .float-tag-2::before { background: var(--orange); }
  .float-tag-3 {
    bottom: 18%;
    left: -6%;
    animation: fadeUp 0.6s 4.8s both, floatY 4s 6s ease-in-out infinite;
  }
  .float-tag-4 {
    bottom: 10%;
    right: -4%;
    animation: fadeUp 0.6s 5s both, floatY 4s 6.2s ease-in-out infinite;
  }
  .float-tag-4::before { background: var(--orange); }

  /* ============== TRUST STRIP ============== */
  .trust-strip {
    background: var(--ink);
    color: var(--cream);
    padding: 38px 0;
    position: relative;
    z-index: 2;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(238, 108, 26, 0.15);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .trust-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
  .trust-sub { font-size: 0.85rem; color: var(--cream-deep); opacity: 0.7; }

  /* ============== OFERTE SLIDER ============== */
  .offers-slider-section {
    position: relative;
    z-index: 2;
    padding: 0;
    width: 100%;
  }
  .offers-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .offers-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  .offer-slide {
    min-width: 100%;
  }
  .offer-slide--alert { background: linear-gradient(90deg, var(--orange-soft) 0%, var(--cream-light) 100%); }
  .offer-slide--tbi { background: linear-gradient(90deg, var(--cream-light) 0%, var(--cream-deep) 100%); }
  .offer-slide__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .offer-slide__media {
    flex: 0 0 150px;
    width: 150px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20,18,16,0.14);
  }
  .offer-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .offer-slide__media--logo {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
  }
  .offer-slide__media--logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .offer-slide__body {
    flex: 1;
    min-width: 0;
  }
  .offer-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--orange);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
  }
  .offer-badge--bank { background: var(--ink); }
  .offer-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
    margin: 0 0 3px;
    line-height: 1.2;
  }
  .offer-sub { color: var(--ink-mid); font-size: 0.95rem; margin: 0; }
  .offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--white);
    background: var(--orange);
    padding: 10px 18px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s ease;
  }
  .offer-cta:hover { background: var(--orange-deep); color: var(--white); }
  .offer-cta--end { margin-left: auto; flex-shrink: 0; }
  .offers-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0 16px;
    background: var(--cream-light);
  }
  .offers-arrow {
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink-mid);
    cursor: pointer;
    padding: 2px 8px;
  }
  .offers-dots { display: flex; gap: 6px; }
  .offers-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--line); border: none; cursor: pointer; padding: 0;
  }
  .offers-dot.active { background: var(--orange); }

  @media (max-width: 720px) {
    .offer-slide__inner { flex-direction: column; text-align: center; padding: 26px 24px; gap: 18px; }
    .offer-slide__media { width: 100%; height: 150px; }
  }

  /* ============== SECTION TITLES ============== */
  .section {
    padding: 90px 0;
    position: relative;
    z-index: 2;
  }
  .section-head {
    max-width: 720px;
    margin-bottom: 50px;
  }
  .section-head.centered { margin: 0 auto 50px; text-align: center; }
  .eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 14px;
  }
  .eyebrow-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--orange);
  }
  .section-head h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    margin-bottom: 14px;
  }
  .section-head h2 .italic { font-style: italic; font-weight: 500; color: var(--orange); }
  .section-head p {
    font-size: 1.08rem;
    color: var(--ink-mid);
    max-width: 600px;
  }
  .section-head.centered p { margin: 0 auto; }

  /* ============== CATEGORIES (compact 4-col grid) ============== */
  .cat-section { background: var(--paper); }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .cat-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream-deep);
    cursor: pointer;
    transition: transform 0.3s;
  }
  .cat-card:hover { transform: translateY(-4px); }
  .cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .cat-card:hover img { transform: scale(1.06); }
  .cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(20,18,16,0.88) 100%);
  }
  .cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    color: var(--white);
    z-index: 2;
  }
  .cat-info .label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 4px;
    display: block;
  }
  .cat-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--white);
    line-height: 1.15;
  }
  .cat-info p {
    font-size: 0.78rem;
    opacity: 0.85;
    line-height: 1.4;
  }
  .cat-count {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,250,242,0.95);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    z-index: 2;
  }
  /* Card "Accesorii" — illustration variant, fără foto */
  .cat-card.accesorii {
    background: linear-gradient(135deg, var(--ink) 0%, #2c2925 100%);
    display: flex;
    align-items: flex-end;
  }
  .cat-card.accesorii::after { display: none; }
  .cat-accesorii-illustration {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1;
  }
  .cat-accesorii-illustration svg {
    width: 70%;
    height: auto;
    opacity: 0.95;
  }
  .cat-card.accesorii .cat-info { padding: 18px; }
  .cat-card.accesorii .cat-info .label { color: var(--orange); }
  .cat-card.accesorii:hover .cat-accesorii-illustration { transform: scale(1.05); transition: transform 0.4s; }

  /* ============== PRODUCTS GRID ============== */
  .cat-products-section { background: var(--cream); }
  .cat-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .cat-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s;
  }
  .cat-tab.active, .cat-tab:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }
  .cat-tab-count {
    font-size: 0.75rem;
    opacity: 0.65;
  }
  .cat-tab.active .cat-tab-count { opacity: 0.8; }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .product-card {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
  }
  .product-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 12px 32px -12px rgba(20,18,16,0.18);
  }
  .product-img {
    aspect-ratio: 1/1;
    background: var(--cream-light);
    overflow: hidden;
    position: relative;
  }
  .product-img img { width: 100%; height: 100%; object-fit: cover; }
  .product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
  }
  .product-tag.green { background: var(--green); }
  .product-tag.ink { background: var(--ink); }
  .product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
  .product-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--ink);
    min-height: 2.5em;
  }
  .product-desc {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
  }
  .product-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
  }
  .product-price .lei { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-left: 2px; }
  .product-price .rate { font-size: 0.7rem; color: var(--orange); font-weight: 500; display: block; margin-top: 2px; }
  .product-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    display: grid;
    place-items: center;
    transition: all 0.2s;
  }
  .product-card:hover .product-link {
    background: var(--orange);
    transform: rotate(-45deg);
  }

  /* ============== WHY US ============== */
  .why-section { background: var(--paper); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }
  .why-visual {
    aspect-ratio: 4/5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .why-visual::before {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 15%;
    right: 15%;
    height: 24px;
    background: radial-gradient(ellipse at center, rgba(20,18,16,0.15), transparent 70%);
    filter: blur(6px);
    z-index: 0;
  }
  .why-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .why-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
  }
  .why-stat-card {
    position: absolute;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 14px 30px -10px rgba(20,18,16,0.18);
    z-index: 3;
  }
  .why-stat-card .num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .why-stat-card .lbl {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 4px;
  }
  .why-stat-1 { top: 8%; left: 0; }
  .why-stat-2 { bottom: 18%; right: 0; }
  .why-stat-2 .num { color: var(--ink); }

  .why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .why-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .why-item:last-child { border-bottom: none; }
  .why-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-top: 4px;
  }
  .why-item h3 { font-size: 1.25rem; margin-bottom: 6px; }
  .why-item p { color: var(--ink-mid); font-size: 0.95rem; line-height: 1.55; }

  /* ============== ABOUT US / STORY ============== */
  .about-section { background: var(--cream); position: relative; overflow: hidden; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
  }
  .about-left .about-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }
  .about-meta-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }
  .about-meta-row:last-child { border-bottom: 1px solid var(--line); }
  .about-meta-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }
  .about-meta-val { font-size: 0.95rem; color: var(--ink); }
  .about-meta-val strong { font-family: var(--font-display); font-weight: 600; }

  .timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 12px;
  }
  .timeline-item {
    padding: 24px 20px;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    position: relative;
    transition: all 0.25s;
  }
  .timeline-item:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20px;
    width: 28px;
    height: 3px;
    background: var(--orange);
    border-radius: 0 0 2px 2px;
  }
  .timeline-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .timeline-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .timeline-desc {
    font-size: 0.82rem;
    color: var(--ink-mid);
    line-height: 1.45;
  }
  .about-quote {
    background: var(--ink);
    color: var(--cream);
    padding: 28px;
    border-radius: 14px;
    margin-top: 14px;
    position: relative;
  }
  .about-quote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 18px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
  }
  .about-quote p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 14px;
    color: var(--cream);
    font-style: italic;
  }
  .about-quote .author {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(246,239,228,0.15);
  }
  .about-quote .author-name { font-weight: 600; font-size: 0.92rem; font-style: normal; }
  .about-quote .author-role { font-size: 0.78rem; color: rgba(246,239,228,0.6); font-style: normal; }

  .about-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
  }
  .location-card {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: 20px;
  }
  .location-card .city {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .location-card .city::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
  }
  .location-card .addr { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.5; }

  /* ============== GALERIE ============== */
  .gallery-section { background: var(--paper); }
  .gallery-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .gallery-feature .gallery-item:first-child { aspect-ratio: 1/1; }
  .gallery-feature .gallery-item:last-child { aspect-ratio: 1/1; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  .gallery-item {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream-deep);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .gallery-item:hover { transform: translateY(-3px); }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(20,18,16,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-item .meta {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 2;
  }
  .gallery-item:hover .meta { opacity: 1; transform: translateY(0); }
  .gallery-cta {
    margin-top: 32px;
    text-align: center;
  }

  /* ============== STEPS ============== */
  .steps-section { background: var(--ink); color: var(--cream); }
  .steps-section .section-head h2 { color: var(--white); }
  .steps-section .section-head p { color: rgba(246,239,228,0.7); }
  .steps-section .eyebrow-tag { color: var(--orange); }
  .steps-section .eyebrow-tag::before { background: var(--orange); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  .step {
    position: relative;
    padding: 28px 24px;
    background: rgba(246,239,228,0.04);
    border: 1px solid rgba(246,239,228,0.1);
    border-radius: 14px;
  }
  .step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    opacity: 0.85;
  }
  .step h3 { font-size: 1.18rem; color: var(--white); margin-bottom: 8px; }
  .step p { color: rgba(246,239,228,0.7); font-size: 0.9rem; line-height: 1.5; }

  /* ============== LEAD FORM ============== */
  .lead-section { background: var(--cream); position: relative; overflow: hidden; }
  .lead-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-glow), transparent 60%);
    z-index: 0;
  }
  .lead-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
  }
  .lead-checks {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .lead-checks li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.98rem;
    color: var(--ink-mid);
  }
  .lead-checks li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
  }
  .lead-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 48px -20px rgba(20,18,16,0.15);
  }
  .lead-form h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  .lead-form .form-sub {
    color: var(--ink-mid);
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .form-row { margin-bottom: 16px; }
  .form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--cream-light);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.2s;
  }
  .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
  }
  .form-row textarea { resize: vertical; min-height: 90px; }
  .form-submit {
    width: 100%;
    padding: 16px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--orange); color: var(--white); }
  .form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 12px;
  }

  /* ============== TESTIMONIALS ============== */
  .testi-section { background: var(--paper); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testi-card {
    background: var(--cream-light);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 32px;
    display: flex;
    flex-direction: column;
  }
  .testi-stars {
    color: var(--orange);
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .testi-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 22px;
    flex: 1;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
  }
  .testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-family: var(--font-display);
  }
  .testi-name { font-weight: 600; font-size: 0.95rem; }
  .testi-meta { font-size: 0.78rem; color: var(--muted); }

  /* ============== FAQ ============== */
  .faq-section { background: var(--cream); }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: flex-start;
  }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .faq-item {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item[open] { border-color: var(--orange); }
  .faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--ink);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-answer {
    padding: 0 26px 22px;
    color: var(--ink-mid);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .faq-side .faq-card {
    background: var(--ink);
    color: var(--cream);
    border-radius: 14px;
    padding: 32px;
  }
  .faq-side h3 { font-size: 1.35rem; color: var(--white); margin-bottom: 10px; }
  .faq-side p { font-size: 0.92rem; color: rgba(246,239,228,0.7); margin-bottom: 20px; line-height: 1.55; }
  .faq-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .faq-cta a {
    padding: 14px 18px;
    background: rgba(238,108,26,0.15);
    border: 1px solid var(--orange);
    color: var(--cream);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: center;
    transition: all 0.2s;
  }
  .faq-cta a:hover { background: var(--orange); color: var(--white); }
  .faq-cta a.wa { background: rgba(74,139,44,0.15); border-color: var(--green); }
  .faq-cta a.wa:hover { background: var(--green); }

  /* ============== FINAL CTA ============== */
  .final-cta {
    background: var(--ink);
    color: var(--cream);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--orange-glow), transparent 60%);
    z-index: 0;
  }
  .final-cta .container { text-align: center; position: relative; z-index: 2; }
  .final-cta h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
  }
  .final-cta h2 .italic { font-style: italic; font-weight: 500; color: var(--orange); }
  .final-cta p {
    font-size: 1.18rem;
    color: rgba(246,239,228,0.75);
    max-width: 620px;
    margin: 0 auto 36px;
  }
  .final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .final-cta .btn-primary {
    background: var(--orange);
  }
  .final-cta .btn-ghost {
    color: var(--cream);
    border-color: rgba(246,239,228,0.3);
  }
  .final-cta .btn-ghost:hover { background: var(--cream); color: var(--ink); }

  /* ============== FOOTER ============== */
  .footer {
    background: #0c0a08;
    color: var(--cream-deep);
    padding: 70px 0 30px;
    font-size: 0.92rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
  }
  .footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: rgba(246,239,228,0.65); transition: color 0.2s; }
  .footer-col a:hover { color: var(--orange); }
  .footer-logo {
    display: inline-block;
    margin-bottom: 14px;
    line-height: 0;
  }
  .footer-logo img { height: 46px; width: auto; display: block; }
  .footer-logo span { color: var(--orange); }
  .footer-desc { color: rgba(246,239,228,0.55); line-height: 1.55; margin-bottom: 18px; max-width: 320px; }
  .footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; color: rgba(246,239,228,0.7); }
  .footer-contact strong { color: var(--white); font-weight: 600; }
  .footer-bottom {
    border-top: 1px solid rgba(246,239,228,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(246,239,228,0.5);
  }
  .footer-payments {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .pay-badge {
    padding: 4px 8px;
    background: rgba(246,239,228,0.05);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(246,239,228,0.7);
  }

  /* ============== RESPONSIVE ============== */
  @media (max-width: 1024px) {
    .hero-grid, .why-grid, .lead-grid, .faq-grid, .about-grid, .gallery-feature { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 640px) {
    .container { padding: 0 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-tabs { gap: 6px; }
    .hero { padding: 40px 0 60px; }
    /* hero compact pe mobil: video lipit de text, fără spațiu gol */
    .hero-grid { gap: 20px !important; }
    .hero-visual { aspect-ratio: auto; padding: 0; }
    .hero-visual::before { display: none; }
    .section { padding: 60px 0; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-num { font-size: 1.7rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .lead-form { padding: 24px; }
    .util-left .hide-sm, .util-right .hide-sm { display: none; }
    .timeline-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-info h3 { font-size: 0.95rem; }
  }

  /* ============== FOOTER — redesign (brand band + social + catalog) ============== */
  .footer-brand { max-width: 340px; }
  .footer-brand .footer-desc { margin-bottom: 0; }
  .footer-social { display: flex; gap: 12px; margin-top: 20px; }
  .footer-social a {
    width: 38px; height: 38px; display: grid; place-items: center;
    border-radius: 50%; background: rgba(246,239,228,0.06);
    color: rgba(246,239,228,0.75); transition: background 0.2s, color 0.2s;
  }
  .footer-social a:hover { background: var(--orange); color: #fff; }
  .footer-social svg { width: 18px; height: 18px; fill: currentColor; }
  .footer-col--contact .footer-contact { margin-top: 2px; }
  .footer-contact a { color: rgba(246,239,228,0.7); transition: color 0.2s; }
  .footer-contact a:hover { color: var(--orange); }
  .footer-catalog {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
    padding: 10px 16px; border: 1px solid rgba(246,239,228,0.22);
    border-radius: 8px; color: var(--cream); font-size: 0.84rem; font-weight: 500;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .footer-catalog svg { fill: currentColor; }
  /* higher specificity to beat .footer-col a / a:hover (which forced orange-on-orange) */
  .footer-col--contact .footer-catalog { color: var(--cream); }
  .footer-col--contact .footer-catalog:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
  .footer-col--contact .footer-catalog:hover svg { fill: #fff; }

  /* Hide duplicate global Elementor footer (#1406) on the PB Home template only */
  body.page-template-page-pb-home .elementor-location-footer { display: none !important; }

  /* Hero — imagine produs decupată (fundal alb eliminat), așezată pe cream */
  .hero-visual { background: var(--cream) !important; }
  .hero-img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.35); position: relative; z-index: 1; }
