    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-deep:   #448243;
      --green-mid:    #356634;
      --green-light:  #6ea86d;
      --gold:         #448243;
      --gold-light:   #356634;
      --gold-bright:  #A8DA7C;
      --gold-deep:    #448243;
      --cream:        #F4F1EA;
      --cream-dark:   #EAE6DC;
      --white:        #FFFFFF;
      --ink:          #1A1A1A;
      --ink-soft:     #4A4A44;
      --ink-muted:    #7A7A72;
      --radius-xl:    2rem;
      --radius-lg:    1.25rem;
      --radius-md:    0.75rem;
      --ease-spring:  cubic-bezier(0.32, 0.72, 0, 1);
      --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── GRAIN OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 100;
      pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    /* ─── ANNOUNCEMENT BAR ─── */
    :root {
      --announce-h: 40px;
      --navbar-h: 70px;
      --nav-total: 110px;
    }

    .announcement-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--announce-h);
      background: var(--gold);
      z-index: 60;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      padding: 0 1rem;
    }

    .announce-text {
      font-size: 0.875rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.02em;
      text-align: center;
    }

    .announce-text a {
      color: var(--green-deep);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .announce-close {
      position: absolute;
      right: 1rem;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--ink);
      opacity: 0.6;
      display: flex;
      align-items: center;
      transition: opacity 0.2s;
    }

    .announce-close:hover { opacity: 1; }

    @media (max-width: 900px) {
      :root { --announce-h: 32px; }
      .announcement-bar { background: var(--green-mid); }
      .announce-prefix, .announce-suffix { display: none; }
      .announce-close { display: none; }
      .announce-text { font-size: 0.845rem; }
      .announce-text a { color: #fff; font-weight: 700; text-decoration: none; }
    }

    /* ─── FULL-WIDTH NAVBAR ─── */
    .navbar {
      position: fixed;
      top: var(--announce-h);
      left: 0; right: 0;
      height: var(--navbar-h);
      background: var(--green-deep);
      z-index: 55;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      box-shadow: 0 2px 24px rgba(0,0,0,0.18);
    }

    .navbar-inner {
      max-width: 1400px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      align-items: center;
      padding: 0 2rem;
      gap: 2rem;
    }

    .nav-logo { flex-shrink: 0; }
    .nav-logo img {
      height: 38px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.95;
      display: block;
    }

    .nav-divider {
      width: 1px;
      height: 24px;
      background: rgba(255,255,255,0.15);
      flex-shrink: 0;
    }

    /* ─── NAV LINKS WITH MEGA TRIGGER ─── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
      flex: 1;
    }

    .nav-item { position: static; }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      color: rgba(255,255,255,0.72);
      text-decoration: none;
      font-size: 0.9375rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: all 0.2s var(--ease-out);
      white-space: nowrap;
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'Montserrat', sans-serif;
    }

    .nav-link svg { transition: transform 0.25s var(--ease-out); }
    .nav-item.open .nav-link { color: #fff; background: rgba(255,255,255,0.1); }
    .nav-item.open .nav-link svg { transform: rotate(180deg); }
    .nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }

    /* ─── MEGA MENU PANEL ─── */
    .mega-panel {
      position: fixed;
      top: var(--nav-total);
      left: 0; right: 0;
      background: #fff;
      z-index: 54;
      border-top: 3px solid var(--gold);
      box-shadow: 0 24px 80px rgba(0,0,0,0.15);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
      transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
    }

    .mega-panel.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mega-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2.5rem 2rem;
    }

    /* Group label inside mega */
    .mega-group-label {
      font-size: 0.775rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 1.25rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    /* 60×60 category square cards */
    .mega-cats {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .mega-cat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.25s var(--ease-out);
      width: 108px;
    }

    .mega-cat:hover { transform: translateY(-4px); }

    .mega-cat-img {
      width: 96px;
      height: 96px;
      border-radius: 14px;
      object-fit: cover;
      display: block;
      border: 2px solid transparent;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s var(--ease-out);
    }

    .mega-cat:hover .mega-cat-img {
      border-color: var(--gold);
      box-shadow: 0 6px 20px rgba(68,130,67,0.35);
      transform: scale(1.04);
    }

    .mega-cat-name {
      font-size: 0.845rem;
      font-weight: 600;
      color: var(--ink);
      text-align: center;
      line-height: 1.3;
    }

    /* Catalog mega layout: 2 groups + featured */
    .mega-catalog-layout {
      display: grid;
      grid-template-columns: 1fr 1fr 280px;
      gap: 2.5rem;
    }

    .mega-featured {
      background: var(--green-deep);
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      min-height: 220px;
    }

    .mega-featured img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
    }

    .mega-featured-content {
      position: absolute;
      inset: 0;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .mega-featured-tag {
      font-size: 0.725rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 0.5rem;
    }

    .mega-featured-title {
      font-size: 1.225rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }

    .mega-featured-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.845rem;
      font-weight: 700;
      color: var(--gold-deep);
      text-decoration: none;
    }

    /* Services mega: large photo cards */
    .mega-services-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .mega-service-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      text-decoration: none;
    }

    .mega-service-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s var(--ease-out);
    }

    .mega-service-card:hover img { transform: scale(1.05); }

    .mega-service-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(18,44,30,0.88) 0%, transparent 60%);
    }

    .mega-service-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1rem 1.25rem;
    }

    .mega-service-num {
      font-size: 0.725rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      color: var(--gold-deep);
      margin-bottom: 0.3rem;
    }

    .mega-service-title {
      font-size: 1.125rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 0.35rem;
    }

    .mega-service-desc {
      font-size: 0.845rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }

    /* Portfolio mega */
    .mega-portfolio-layout {
      display: grid;
      grid-template-columns: repeat(4, 1fr) 200px;
      gap: 1rem;
      align-items: stretch;
    }

    .mega-portfolio-img {
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 3/2;
    }

    .mega-portfolio-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s var(--ease-out);
    }

    .mega-portfolio-img:hover img { transform: scale(1.07); }

    .mega-portfolio-cta {
      background: var(--green-deep);
      border-radius: var(--radius-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1.5rem;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s;
    }

    .mega-portfolio-cta:hover { background: var(--green-mid); }

    .mega-portfolio-cta-num {
      font-size: 2.125rem;
      font-weight: 900;
      color: var(--gold-deep);
      line-height: 1;
    }

    .mega-portfolio-cta-label {
      font-size: 0.875rem;
      font-weight: 700;
      color: rgba(255,255,255,0.75);
      text-align: center;
      line-height: 1.3;
    }

    /* Backdrop for mega */
    .mega-backdrop {
      position: fixed;
      inset: 0;
      top: var(--nav-total);
      background: rgba(0,0,0,0.25);
      z-index: 53;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s;
    }

    .mega-backdrop.open { opacity: 1; pointer-events: auto; }

    /* ─── BLOG MEGA ─── */
    .mega-blog-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
    }

    .mega-blog-card--featured {
      display: block;
      text-decoration: none;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .mega-blog-img-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }

    .mega-blog-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s var(--ease-out);
    }

    .mega-blog-card--featured:hover .mega-blog-img-wrap img { transform: scale(1.05); }

    .mega-blog-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(18,44,30,0.82) 0%, transparent 55%);
    }

    .mega-blog-body {
      padding: 1.25rem 0 0;
    }

    .mega-blog-tag {
      font-size: 0.745rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 0.5rem;
    }

    .mega-blog-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.4;
      margin-bottom: 0.5rem;
      transition: color 0.2s;
    }

    .mega-blog-card--featured:hover .mega-blog-title { color: var(--green-mid); }

    .mega-blog-meta {
      font-size: 0.825rem;
      color: var(--ink-muted);
    }

    .mega-blog-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mega-blog-row {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      text-decoration: none;
      transition: background 0.2s;
    }

    .mega-blog-row:first-child { padding-top: 0; }
    .mega-blog-row:last-of-type { border-bottom: none; }

    .mega-blog-row img {
      width: 80px;
      height: 60px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      transition: transform 0.3s var(--ease-out);
    }

    .mega-blog-row:hover img { transform: scale(1.06); }

    .mega-blog-row-tag {
      font-size: 0.725rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 0.25rem;
    }

    .mega-blog-row-title {
      font-size: 0.925rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
      transition: color 0.2s;
    }

    .mega-blog-row:hover .mega-blog-row-title { color: var(--green-mid); }

    .mega-blog-row-meta {
      font-size: 0.775rem;
      color: var(--ink-muted);
      margin-top: 0.2rem;
    }

    .mega-blog-all {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 1rem;
      font-size: 0.905rem;
      font-weight: 700;
      color: var(--green-mid);
      text-decoration: none;
      transition: gap 0.2s;
    }

    .mega-blog-all:hover { gap: 0.7rem; color: var(--green-deep); }

    /* ─── NAV ACTIONS ─── */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    .lang-switcher {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.08);
      border-radius: 9999px;
      padding: 0.2rem;
      gap: 0.1rem;
    }

    .lang-btn {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.805rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.55);
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0.25rem 0.55rem;
      border-radius: 9999px;
      transition: all 0.2s var(--ease-out);
    }

    .lang-btn.active { color: #fff; background: var(--gold); }

    .nav-icon-btn {
      width: 2.25rem;
      height: 2.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.08);
      border: none;
      border-radius: 9999px;
      cursor: pointer;
      color: rgba(255,255,255,0.8);
      transition: all 0.3s var(--ease-out);
    }

    .nav-icon-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }

    .cart-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gold);
      border: none;
      border-radius: 9999px;
      padding: 0.5rem 1.1rem 0.5rem 0.85rem;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #fff;
      transition: all 0.3s var(--ease-out);
    }

    .cart-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

    .cart-count {
      background: var(--green-deep);
      color: #fff;
      font-size: 0.745rem;
      font-weight: 700;
      width: 1.2rem;
      height: 1.2rem;
      border-radius: 9999px;
      display: flex; align-items: center; justify-content: center;
    }

    /* ─── HAMBURGER ─── */
    .hamburger {
      display: none;
      width: 2.25rem;
      height: 2.25rem;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      background: rgba(255,255,255,0.08);
      border: none;
      border-radius: 9999px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 16px;
      height: 1.5px;
      background: rgba(255,255,255,0.85);
      border-radius: 9999px;
      transition: all 0.35s var(--ease-spring);
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 56;
      background: rgba(30, 61, 47, 0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s var(--ease-out);
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu a {
      display: block;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 1.875rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      text-align: center;
      padding: 0.5rem 2rem;
      opacity: 0;
      transform: translateY(24px);
      transition: all 0.5s var(--ease-out), color 0.2s;
    }

    .mobile-menu.open a { opacity: 1; transform: translateY(0); }
    .mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
    .mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
    .mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
    .mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
    .mobile-menu a:hover { color: var(--gold-deep); }

    /* ═══════════════════════════════════════════════
       DIOLSEM-STYLE HEADER (top bar + Produse mega)
       ═══════════════════════════════════════════════ */
    :root {
      --dl-topbar-h: 40px;
      --dl-nav-h: 80px;
      --dl-head-total: 120px;
    }

    /* ── Fixed header wrapper: topbar + nav move together as one sticky unit ── */
    .dl-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 60;
      background: #14291b;
      padding-top: env(safe-area-inset-top, 0px);
      box-shadow: 0 2px 24px rgba(0,0,0,0.18);
    }

    /* ── Top utility bar ── */
    .dl-topbar {
      height: var(--dl-topbar-h);
      background: #14291b;
      display: flex; align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .dl-topbar-inner {
      max-width: 1400px; margin: 0 auto; width: 100%;
      padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    }
    .dl-topbar-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
    .dl-topbar-links a {
      color: rgba(255,255,255,0.6);
      font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
      text-decoration: none; transition: color 0.2s;
    }
    .dl-topbar-links a:hover { color: #fff; }
    .dl-topbar-phone {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: #fff; font-size: 1.025rem; font-weight: 800; letter-spacing: 0.01em;
      text-decoration: none;
    }
    .dl-topbar-phone svg { color: var(--gold-bright); flex-shrink: 0; }

    /* ── Main nav bar ── */
    .dl-nav {
      height: var(--dl-nav-h);
      background: var(--green-deep);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .dl-nav-inner {
      max-width: 1400px; margin: 0 auto; height: 100%;
      padding: 0 2rem; display: flex; align-items: center; gap: 1.25rem;
    }
    .dl-logo { flex-shrink: 0; display: block; }
    .dl-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); display: block; }

    /* Produse trigger */
    .dl-produse {
      display: inline-flex; align-items: center; gap: 0.7rem;
      background: #fff; color: var(--green-deep);
      border: none; border-radius: 12px;
      height: 48px; padding: 0 1.4rem;
      font-family: inherit; font-size: 1.025rem; font-weight: 800; letter-spacing: 0.01em;
      cursor: pointer; flex-shrink: 0;
      transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    }
    .dl-produse:hover { background: #eef2ec; }
    .dl-produse-icon { display: flex; flex-direction: column; gap: 3px; }
    .dl-produse-icon span {
      display: block; width: 18px; height: 2px;
      background: var(--green-deep); border-radius: 2px;
      transition: 0.3s var(--ease-spring);
    }
    .dl-produse.open .dl-produse-icon span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .dl-produse.open .dl-produse-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .dl-produse.open .dl-produse-icon span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

    /* Search */
    .dl-search { flex: 1; position: relative; max-width: 660px; }
    .dl-search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: 14px; box-shadow: 0 18px 50px rgba(20,40,25,0.18); border: 1px solid rgba(0,0,0,0.06); overflow: hidden; display: none; z-index: 120; max-height: 70vh; overflow-y: auto; }
    .dl-search-results.open { display: block; }
    .dl-search-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0.9rem; text-decoration: none; color: var(--ink); transition: background 0.12s; }
    .dl-search-item:hover { background: var(--cream, #f6f3ec); }
    .dl-search-item img { width: 46px; height: 46px; border-radius: 9px; object-fit: cover; flex-shrink: 0; background: var(--cream-dark, #ece8df); }
    .dl-search-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
    .dl-search-name { font-weight: 700; font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .dl-search-latin { font-size: 0.78rem; color: var(--ink-muted); font-style: italic; }
    .dl-search-price { font-weight: 800; font-size: 0.9rem; color: var(--green-deep); white-space: nowrap; }
    .dl-search-all { display: block; text-align: center; padding: 0.7rem; font-weight: 700; font-size: 0.88rem; color: var(--green-deep); text-decoration: none; border-top: 1px solid rgba(0,0,0,0.06); background: var(--cream, #f6f3ec); }
    .dl-search-all:hover { background: var(--cream-dark, #ece8df); }
    .dl-search-empty { padding: 1.1rem; text-align: center; color: var(--ink-muted); font-size: 0.9rem; }

    /* ── Account / auth pages ── */
    .auth-page { min-height: 58vh; display: flex; align-items: flex-start; justify-content: center; padding: clamp(2rem,5vw,4rem) 1rem 5rem; }
    .auth-card { width: 100%; max-width: 440px; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; box-shadow: 0 20px 60px rgba(30,60,40,0.1); padding: clamp(1.6rem, 4vw, 2.5rem); }
    .auth-card h1 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.3rem; }
    .auth-sub { color: var(--ink-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
    .auth-field { margin-bottom: 1rem; }
    .auth-field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--ink-soft); }
    .auth-field input { width: 100%; font-family: inherit; font-size: 0.98rem; padding: 0.8rem 0.95rem; border: 1.5px solid rgba(0,0,0,0.12); border-radius: 11px; background: var(--cream); outline: none; transition: border-color 0.15s; }
    .auth-field input:focus { border-color: var(--green-mid); }
    .auth-error { background: #fbe9ea; color: #b23730; border: 1px solid rgba(192,57,43,0.25); padding: 0.75rem 1rem; border-radius: 11px; margin-bottom: 1.2rem; font-weight: 600; font-size: 0.9rem; }
    .auth-card .btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }
    .auth-alt { text-align: center; margin-top: 1.3rem; color: var(--ink-muted); font-size: 0.92rem; }
    .auth-alt a { color: var(--green-deep); font-weight: 700; text-decoration: none; }
    .auth-alt a:hover { text-decoration: underline; }
    .account-grid { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
    .account-side { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 18px; padding: 1.5rem; }
    .account-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--green-deep); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; margin-bottom: 0.8rem; }
    .account-name { font-weight: 800; font-size: 1.1rem; }
    .account-email { color: var(--ink-muted); font-size: 0.88rem; margin-bottom: 1.2rem; word-break: break-all; }
    .account-nav { display: flex; flex-direction: column; gap: 0.2rem; }
    .account-nav a, .account-nav button { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.75rem; border-radius: 10px; font-weight: 600; font-size: 0.94rem; color: var(--ink-soft); text-decoration: none; border: none; background: none; cursor: pointer; font-family: inherit; text-align: left; width: 100%; transition: background 0.15s; }
    .account-nav a:hover, .account-nav button:hover { background: var(--cream-dark, #ece8df); color: var(--green-deep); }
    .account-nav a.active { background: var(--green-deep); color: #fff; }
    .order-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 1.1rem 1.3rem; margin-bottom: 0.9rem; }
    .order-card-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.6rem; }
    .order-num { font-weight: 800; }
    .order-status { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 999px; }
    .order-status.new { background: #fdf2d8; color: #a5772a; }
    .order-status.processing { background: #dbeafe; color: #1e5fa8; }
    .order-status.completed { background: #e7f2e5; color: var(--green-deep); }
    .order-status.cancelled { background: #f2e3e1; color: #b23730; }
    .order-meta { color: var(--ink-muted); font-size: 0.85rem; }
    .order-items-list { margin-top: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }
    @media (max-width: 760px) { .account-grid { grid-template-columns: 1fr; } }
    .dl-search input {
      width: 100%; height: 48px;
      border: 1.5px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.97);
      border-radius: 12px;
      padding: 0 3.4rem 0 1.15rem;
      font-family: inherit; font-size: 1.025rem; color: var(--ink);
      outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    }
    .dl-search input::placeholder { color: var(--ink-muted); }
    .dl-search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(68,130,67,0.22); }
    .dl-search-btn {
      position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
      width: 38px; height: 38px; border: none; border-radius: 9px;
      background: var(--green-mid); color: #fff; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .dl-search-btn:hover { background: var(--gold); color: #fff; }

    /* Actions */
    .dl-actions { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }
    .dl-lang { display: flex; align-items: center; height: 48px; background: transparent; padding: 0; }
    .dl-lang button {
      font-family: inherit; font-size: 0.805rem; font-weight: 700; letter-spacing: 0.04em;
      color: rgba(255,255,255,0.55); background: transparent; border: none; cursor: pointer;
      padding: 0.28rem 0.55rem; transition: color 0.2s;
    }
    .dl-lang button:hover { color: #fff; }
    .dl-lang button.active { color: #fff; background: transparent; }
    .dl-icon-btn {
      position: relative;
      width: 48px; height: 48px; border-radius: 9999px;
      background: rgba(255,255,255,0.08); border: none; cursor: pointer;
      color: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center;
      transition: 0.2s; text-decoration: none;
    }
    .dl-icon-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }
    .dl-search-toggle { display: none; }
    .dl-badge {
      position: absolute; top: -4px; right: -4px;
      width: 19px; height: 19px; padding: 0; box-sizing: border-box;
      background: #fff; color: var(--green-deep);
      font-size: 0.7rem; font-weight: 800;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--green-deep); line-height: 1;
    }
    .dl-cart {
      display: flex; align-items: center; gap: 0.55rem;
      background: rgba(255,255,255,0.08); border: none; border-radius: 9999px;
      height: 48px; padding: 0 1.05rem 0 0.75rem; cursor: pointer;
      color: #fff; font-family: inherit; font-size: 0.925rem; font-weight: 700;
      transition: 0.2s;
    }
    .dl-cart:hover { background: rgba(255,255,255,0.16); }
    .dl-cart-icon { position: relative; display: flex; }
    .dl-cart-count {
      position: absolute; top: -7px; right: -9px;
      min-width: 19px; height: 19px; padding: 0 5px; box-sizing: border-box;
      background: #c9a24b; color: #fff;
      font-size: 0.7rem; font-weight: 800; line-height: 1;
      border-radius: 9999px; display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--green-deep); box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    }

    /* ── Produse mega dropdown ── */
    .dl-mega {
      position: fixed;
      top: var(--dl-head-total);
      left: 0; right: 0;
      z-index: 59;
      opacity: 0; pointer-events: none; transform: translateY(-8px);
      transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    }
    .dl-mega.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .dl-mega-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
    .dl-mega-card {
      display: grid; grid-template-columns: 330px 1fr;
      background: #fff; border-radius: 0 0 18px 18px;
      border-top: 3px solid var(--gold);
      box-shadow: 0 30px 80px rgba(0,0,0,0.22);
      overflow: hidden;
      max-height: calc(100dvh - var(--dl-head-total) - 24px);
    }

    /* Left rail */
    .dl-rail {
      padding: 0.6rem; border-right: 1px solid rgba(0,0,0,0.06);
      overflow-y: auto; background: #fbfaf6;
      max-height: calc(100dvh - var(--dl-head-total) - 24px);
    }
    .dl-rail-item {
      display: flex; align-items: center; gap: 0.8rem;
      padding: 0.62rem 0.8rem; border-radius: 10px;
      cursor: pointer; text-decoration: none; color: var(--ink);
      transition: background 0.15s;
    }
    .dl-rail-item:hover, .dl-rail-item.active { background: rgba(46,94,58,0.09); }
    .dl-rail-ico {
      width: 34px; height: 34px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      border-radius: 9px; background: rgba(46,94,58,0.1); color: var(--green-mid);
      transition: 0.15s;
    }
    .dl-rail-item:hover .dl-rail-ico, .dl-rail-item.active .dl-rail-ico { background: var(--green-mid); color: #fff; }
    .dl-rail-label { flex: 1; font-size: 0.975rem; font-weight: 600; line-height: 1.25; }
    .dl-rail-chev { color: var(--ink-muted); flex-shrink: 0; }
    .dl-rail-item.active .dl-rail-chev { color: var(--green-mid); }
    .dl-rail-item.special .dl-rail-ico { background: rgba(68,130,67,0.16); color: var(--gold-deep); }
    .dl-rail-item.special .dl-rail-label { font-weight: 800; }
    .dl-rail-item.special:hover .dl-rail-ico, .dl-rail-item.special.active .dl-rail-ico { background: var(--gold); color: #fff; }
    /* „Reduceri" – accent roșu, ca element de promoție distinct. */
    .dl-rail-item.dl-rail-sale { background: rgba(214,45,45,0.10); }
    .dl-rail-item.dl-rail-sale:hover, .dl-rail-item.dl-rail-sale.active { background: rgba(214,45,45,0.18); }
    .dl-rail-item.dl-rail-sale .dl-rail-ico { background: rgba(214,45,45,0.16); color: #d62d2d; }
    .dl-rail-item.dl-rail-sale:hover .dl-rail-ico, .dl-rail-item.dl-rail-sale.active .dl-rail-ico { background: #d62d2d; color: #fff; }
    .dl-rail-item.dl-rail-sale .dl-rail-label { color: #c62828; }
    .dl-rail-item.dl-rail-sale .dl-rail-chev { color: #d62d2d; }
    .dl-rail-sep { height: 1px; background: rgba(0,0,0,0.07); margin: 0.45rem 0.5rem; }
    /* Nav links inside the catalog rail are surfaced on mobile only (topbar hides them). */
    .dl-rail-nav, .dl-rail-navsep { display: none; }

    /* Drill-down back button + "view all" button (mobile only) */
    .dl-flyout-back {
      display: none; align-items: center; justify-content: center;
      width: 34px; height: 34px; flex-shrink: 0;
      border: none; background: rgba(0,0,0,0.05); border-radius: 9px;
      cursor: pointer; color: var(--ink);
    }
    .dl-flyout-back:active { background: rgba(0,0,0,0.1); }
    .dl-flyout-allbtn {
      display: none; align-items: center; justify-content: center; gap: 0.4rem;
      width: 100%; margin: 0.35rem 0 1rem; padding: 0.85rem;
      background: var(--green-deep); color: #fff; border-radius: 12px;
      font-size: 0.875rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
      text-decoration: none;
    }
    .dl-flyout-allbtn:active { background: var(--green-mid); }

    /* Right content – subcategory image cards */
    .dl-content {
      padding: 1.6rem 1.85rem; overflow-y: auto;
      max-height: calc(100dvh - var(--dl-head-total) - 24px);
      display: flex; flex-direction: column;
    }
    .dl-flyout { display: none; }
    .dl-flyout.active { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; }
    .dl-flyout-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
    .dl-flyout-title { font-size: 1.175rem; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
    .dl-flyout-all { font-size: 0.845rem; font-weight: 700; color: var(--green-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; white-space: nowrap; transition: gap 0.2s; }
    .dl-flyout-all:hover { gap: 0.55rem; color: var(--green-deep); }

    .dl-sub-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .dl-sub-card {
      display: flex; flex-direction: column;
      border-radius: 12px; overflow: hidden; text-decoration: none;
      background: #fff; border: 1px solid rgba(0,0,0,0.07);
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.2s;
    }
    .dl-sub-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
    .dl-sub-card-img { position: relative; height: 130px; overflow: hidden; background: var(--cream-dark); }
    .dl-sub-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.45s var(--ease-out); }
    .dl-sub-card:hover .dl-sub-card-img img { transform: scale(1.07); }
    .dl-sub-card-body { padding: 0.7rem 0.8rem 0.85rem; flex: 1; }
    .dl-sub-card-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
    .dl-sub-card-note { font-size: 0.85rem; color: var(--ink-muted); margin-top: 0.25rem; line-height: 1.4; }

    /* Feature panel for categories without subcategories */
    .dl-feature {
      display: block; position: relative; border-radius: 16px; overflow: hidden;
      flex: 1 1 auto; min-height: 300px; text-decoration: none;
    }
    .dl-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.62; transition: transform 0.5s var(--ease-out); }
    .dl-feature:hover img { transform: scale(1.04); }
    .dl-feature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,44,30,0.9) 0%, rgba(18,44,30,0.25) 60%, transparent 100%); }
    .dl-feature-body { position: absolute; inset: 0; z-index: 2; padding: 1.75rem; display: flex; flex-direction: column; justify-content: flex-end; }
    .dl-feature-tag { font-size: 0.725rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.5rem; }
    .dl-feature-title { font-size: 1.625rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 0.6rem; }
    .dl-feature-desc { font-size: 0.945rem; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 44ch; margin-bottom: 1rem; }
    .dl-feature-link { font-size: 0.905rem; font-weight: 700; color: var(--gold-bright); display: inline-flex; align-items: center; gap: 0.4rem; }

    @media (max-width: 1180px) { .dl-sub-cards { grid-template-columns: repeat(3, 1fr); } }

    /* Backdrop */
    .dl-backdrop {
      position: fixed; inset: 0; top: var(--dl-head-total);
      background: rgba(10,20,14,0.35); z-index: 58;
      opacity: 0; pointer-events: none; transition: opacity 0.25s;
    }
    .dl-backdrop.open { opacity: 1; pointer-events: auto; }

    /* Header responsive */
    @media (max-width: 1080px) {
      .dl-topbar-links { gap: 1.1rem; }
      .dl-search { max-width: none; }
      .dl-produse span.dl-produse-text { display: inline; }
    }
    @media (max-width: 900px) {
      :root { --dl-topbar-h: 0px; --dl-nav-h: 60px; --dl-head-total: calc(60px + env(safe-area-inset-top, 0px)); }
      .dl-topbar { display: none; }
      .dl-nav-inner { padding: 0 1rem; gap: 0.6rem; }
      .dl-logo img { height: 38px; }
      .dl-produse-text { display: none !important; }
      /* menu button before the logo on mobile */
      .dl-produse { order: -1; }
      /* all header buttons: compact, consistent rounded squares */
      .dl-produse { width: 42px; height: 42px; min-width: 42px; padding: 0; border-radius: 11px; gap: 0; justify-content: center; }
      .dl-icon-btn, .dl-search-toggle { width: 42px; height: 42px; border-radius: 11px; }
      .dl-cart { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 11px; }
      .dl-lang, .dl-account, .dl-wish, .dl-cart .dl-cart-text { display: none; }
      /* mobile: search collapses to an icon; the bar expands below the header on tap */
      .dl-search-toggle { display: flex; }
      .dl-actions { margin-left: auto; }
      .dl-search {
        display: none;
        position: absolute; left: 0; right: 0; top: 100%;
        padding: 0.6rem 1rem; margin: 0; max-width: none;
        background: var(--green-deep); box-shadow: 0 12px 24px rgba(0,0,0,0.18);
        z-index: 5;
      }
      .dl-nav { position: relative; }
      .dl-nav.search-open .dl-search { display: block; }
      .dl-search input { height: 46px; width: 100%; }
      /* the bar now has side padding, so keep the search button inside the input's right edge */
      .dl-search-btn { right: calc(1rem + 6px); }
      .dl-rail-item { cursor: pointer; }
      /* Surface Reduceri / Servicii / Portofoliu / Blog / Livrare / Contacte in the mobile catalog */
      .dl-rail-nav { display: flex; }
      .dl-rail-navsep { display: block; margin: 0.7rem 0.5rem 0.4rem; }

      /* Full-height sliding sheet with a two-level drill-down */
      .dl-mega { bottom: 0; }
      .dl-mega-inner { padding: 0; height: 100%; }
      .dl-mega-card { grid-template-columns: 1fr; border-radius: 0; height: 100%; max-height: none; position: relative; overflow: hidden; }
      .dl-rail { border-right: none; height: 100%; max-height: none; padding-bottom: 100px; }

      /* Level 2: subcategory panel slides in from the right (opens as a new page, not downward) */
      .dl-content {
        display: block;
        position: absolute; inset: 0;
        background: #fff; z-index: 4;
        transform: translateX(100%);
        transition: transform 0.32s var(--ease-out);
        overflow-y: auto; max-height: none;
        padding: 0 1rem 100px;
        -webkit-overflow-scrolling: touch;
      }
      .dl-mega-card.drill .dl-content { transform: translateX(0); }
      .dl-flyout-head { gap: 0.6rem; position: sticky; top: 0; background: #fff; padding-top: 0.9rem; z-index: 5; }
      .dl-flyout-back { display: inline-flex; }
      .dl-flyout-allbtn { display: flex; }
      .dl-flyout .dl-feature { min-height: 60vh; }
      .dl-sub-cards { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
      .dl-sub-card-img { height: 92px; }
      .dl-sub-card-body { padding: 0.5rem 0.5rem 0.6rem; }
      .dl-sub-card-name { font-size: 0.85rem; }
      .dl-sub-card-note { display: none; }
    }
    @media (max-width: 600px) {
      .dl-cart { padding: 0.55rem; }
      .dl-nav-inner { gap: 0.45rem; }
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      height: 720px;
      min-height: 720px;
      margin-top: 120px;
      overflow: hidden;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
    }

    /* Background + overlay cross-fade together */
    .hero-slide-bg {
      position: absolute;
      inset: 0;
      background-image: var(--hero-bg);
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    /* Separate mobile image when provided; falls back to the desktop image otherwise */
    @media (max-width: 640px) {
      .hero-slide-bg { background-image: var(--hero-bg-m, var(--hero-bg)); }
    }
    .hero-slide .hero-overlay { opacity: 0; transition: opacity 1.2s ease; }

    .hero-slide.is-active .hero-slide-bg,
    .hero-slide.is-active .hero-overlay { opacity: 1; }

    .hero-slide.is-active .hero-slide-bg {
      animation: heroKen 8s ease-out forwards;
    }

    @keyframes heroKen {
      from { transform: scale(1.06); }
      to { transform: scale(1.14); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(18, 44, 30, 0.9) 0%,
        rgba(18, 44, 30, 0.6) 45%,
        rgba(18, 44, 30, 0.32) 78%,
        rgba(18, 44, 30, 0.22) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      height: 100%;
      /* extra bottom padding leaves room for the dots so centered text stays balanced */
      padding: 4rem 5.5rem 6rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    /* Incoming text fades in slightly after the outgoing has left – no overlap */
    .hero-slide.is-active .hero-content {
      opacity: 1;
      pointer-events: auto;
      transition: opacity 0.75s ease 0.45s;
    }

    .hero-left-col { max-width: 640px; }

    /* Whole-slide clickable link (used when a slide has a link but no button) */
    .hero-slide-link { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
    .hero-slide.is-active .hero-slide-link { pointer-events: auto; }

    /* Cookie consent banner – plain fixed element, no entrance animation (reliability over motion). */
    .cookie-bar { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 400; opacity: 1; transition: opacity .3s ease; }
    .cookie-bar.cookie-hide { opacity: 0; }
    .cookie-bar-inner { max-width: 1080px; margin: 0 auto; background: #fff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 12px 40px rgba(20,40,25,0.18); border-radius: 16px; padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
    .cookie-bar-text { flex: 1 1 300px; font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }
    .cookie-bar-text a { color: var(--green-deep); font-weight: 700; }
    .cookie-bar-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
    .cookie-btn { font-family: inherit; font-weight: 700; font-size: 0.9rem; padding: 0.7rem 1.3rem; border-radius: 10px; cursor: pointer; border: 1px solid transparent; transition: background .15s, border-color .15s, transform .15s; }
    .cookie-btn:hover { transform: translateY(-1px); }
    .cookie-btn-ghost { background: transparent; border-color: rgba(0,0,0,0.15); color: var(--ink); }
    .cookie-btn-ghost:hover { border-color: var(--green-mid); color: var(--green-deep); }
    .cookie-btn-primary { background: var(--green-deep); color: #fff; }
    .cookie-btn-primary:hover { background: var(--green-mid); }
    @media (max-width: 560px) { .cookie-bar-inner { padding: 1rem; } .cookie-bar-actions { width: 100%; } .cookie-btn { flex: 1; } }

    /* GDPR consent checkbox (contact form + checkout) */
    .gdpr-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; line-height: 1.5; color: var(--ink-soft); cursor: pointer; }
    .gdpr-consent input { margin-top: 0.2rem; width: 1.05rem; height: 1.05rem; flex-shrink: 0; accent-color: var(--green-deep); cursor: pointer; }
    .gdpr-consent a { color: var(--green-deep); font-weight: 700; }

    .hero-dots {
      position: absolute;
      bottom: 2.25rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 4;
    }
    .hero-dot {
      width: 9px; height: 9px;
      border-radius: 9999px;
      background: rgba(255,255,255,0.45);
      border: none; cursor: pointer; padding: 0;
      transition: all 0.35s var(--ease-out);
    }
    .hero-dot.is-active { width: 30px; background: #fff; }

    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 48px; height: 48px;
      border-radius: 9999px;
      background: rgba(255,255,255,0.16);
      border: 1px solid rgba(255,255,255,0.4);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    }
    .hero-arrow:hover { background: rgba(255,255,255,0.3); }
    .hero-arrow:active { transform: translateY(-50%) scale(0.92); }
    .hero-arrow-prev { left: 1.75rem; }
    .hero-arrow-next { right: 1.75rem; }

    /* ─── eMAG-style home shelf: category sidebar + banner (desktop) ─── */
    /* flow-root contains the hero's margin-top so the gap under the header shows cream, not the html green */
    .home-shelf { display: flow-root; }
    .home-cats { display: none; }
    .home-flyout { display: none; }

    @media (min-width: 901px) {
      .home-shelf {
        max-width: 1400px;
        margin: 0 auto;
        padding: calc(var(--dl-head-total) + 22px) 2rem 0;
        display: grid;
        grid-template-columns: 272px 1fr;
        gap: 1.25rem;
        align-items: stretch;
      }
      .home-banner { position: relative; }
      .home-shelf .hero {
        margin-top: 0;
        height: 600px;
        min-height: 0;
        border-radius: 1.25rem;
        overflow: hidden;
      }

      .home-cats {
        display: flex;
        flex-direction: column;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.07);
        border-radius: 1.25rem;
        padding: 0.5rem;
        box-shadow: 0 12px 34px rgba(0,0,0,0.06);
        overflow: hidden;
      }
      .home-cat {
        display: flex; align-items: center; gap: 0.75rem;
        padding: 0 0.85rem;
        border-radius: 0.75rem;
        text-decoration: none;
        color: var(--ink);
        font-size: 0.95rem; font-weight: 600;
        transition: background 0.15s, color 0.15s;
        flex: 1 1 0; min-height: 0;
      }
      .home-cat:hover, .home-cat.active { background: rgba(68,130,67,0.09); color: var(--green-deep); }
      .home-cat-ico {
        width: 2.1rem; height: 2.1rem; flex-shrink: 0;
        display: flex; align-items: center; justify-content: center;
        border-radius: 0.6rem;
        background: rgba(68,130,67,0.1);
        color: var(--green-mid);
        transition: background 0.15s, color 0.15s;
      }
      .home-cat:hover .home-cat-ico, .home-cat.active .home-cat-ico { background: var(--green-mid); color: #fff; }
      .home-cat.special .home-cat-ico { background: rgba(68,130,67,0.16); color: var(--gold-deep); }
      .home-cat.special:hover .home-cat-ico, .home-cat.special.active .home-cat-ico { background: var(--gold); color: #fff; }
      .home-cat-label { flex: 1; line-height: 1.2; }
      .home-cat-chev { color: var(--ink-muted); flex-shrink: 0; display: flex; }
      .home-cat.active .home-cat-chev { color: var(--green-mid); }
      /* „Reduceri" în sidebar-ul de pe homepage – accent roșu. */
      .home-cat.home-cat-sale { background: rgba(214,45,45,0.08); }
      .home-cat.home-cat-sale:hover, .home-cat.home-cat-sale.active { background: rgba(214,45,45,0.16); color: #c62828; }
      .home-cat.home-cat-sale .home-cat-ico { background: rgba(214,45,45,0.16); color: #d62d2d; }
      .home-cat.home-cat-sale:hover .home-cat-ico, .home-cat.home-cat-sale.active .home-cat-ico { background: #d62d2d; color: #fff; }
      .home-cat.home-cat-sale .home-cat-label { color: #c62828; font-weight: 700; }
      .home-cat.home-cat-sale .home-cat-chev { color: #d62d2d; }

      /* Flyout: subcategories over the banner on hover */
      .home-flyout {
        display: flex; flex-direction: column;
        position: absolute; inset: 0;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.07);
        border-radius: 1.25rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.14);
        padding: 1.6rem 1.9rem;
        opacity: 0; pointer-events: none;
        transform: translateY(6px);
        transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
        z-index: 6;
        overflow-y: auto;
      }
      .home-flyout.show { opacity: 1; pointer-events: auto; transform: none; }
      .home-flyout-head {
        display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
        margin-bottom: 1.15rem; padding-bottom: 0.85rem;
        border-bottom: 1px solid rgba(0,0,0,0.08);
      }
      .home-flyout-title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
      .home-flyout-all { font-size: 0.875rem; font-weight: 700; color: var(--green-mid); text-decoration: none; white-space: nowrap; transition: gap 0.2s; }
      .home-flyout-all:hover { color: var(--green-deep); }
      .home-flyout-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
      .home-sub { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 0.45rem; border-radius: 0.85rem; padding: 0.5rem; transition: background 0.15s, transform 0.15s; }
      .home-sub:hover { background: rgba(68,130,67,0.08); transform: translateY(-2px); }
      .home-sub-img { aspect-ratio: 4/3; border-radius: 0.65rem; overflow: hidden; background: var(--cream); }
      .home-sub-img img { width: 100%; height: 100%; object-fit: cover; }
      .home-sub-name { font-size: 0.9rem; font-weight: 600; line-height: 1.25; }
      /* single/feature flyout: full-bleed image + gradient + overlaid text, like the header's mega feature */
      .home-flyout.is-feature { padding: 0; overflow: hidden; }
      .home-feature { position: relative; display: block; width: 100%; height: 100%; text-decoration: none; overflow: hidden; border-radius: inherit; }
      .home-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
      .home-feature:hover img { transform: scale(1.04); }
      .home-feature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,44,30,0.94) 0%, rgba(18,44,30,0.55) 45%, rgba(30,61,47,0.3) 100%); }
      .home-feature-body { position: absolute; inset: 0; z-index: 2; padding: 2.25rem 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; }
      .home-feature-tag { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.6rem; }
      .home-feature-title { font-size: 1.85rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 0.6rem; }
      .home-feature-desc { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.6; max-width: 44ch; margin-bottom: 1.1rem; }
      .home-feature-link { font-size: 0.95rem; font-weight: 700; color: var(--gold-bright); display: inline-flex; align-items: center; gap: 0.45rem; }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.775rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 1.75rem;
      width: fit-content;
    }

    .eyebrow-dot {
      width: 5px; height: 5px;
      background: var(--gold-bright);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .hero-h1 {
      font-size: clamp(2.875rem, 4.5vw, 4.375rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .hero-h1 span {
      color: var(--gold-bright);
    }

    .hero-desc {
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.6);
      max-width: 44ch;
      margin: 0;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--gold);
      color: #fff;
      border: none;
      border-radius: 9999px;
      padding: 0.875rem 1.5rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.925rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.4s var(--ease-spring);
    }

    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(68,130,67,0.35); }
    .btn-primary:active { transform: scale(0.98); }

    .btn-icon {
      width: 2rem; height: 2rem;
      background: rgba(0,0,0,0.18);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.35s var(--ease-spring);
      flex-shrink: 0;
    }

    .btn-primary:hover .btn-icon { transform: translate(2px, -1px) scale(1.1); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: rgba(255,255,255,0.7);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 9999px;
      padding: 0.875rem 1.5rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.925rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s var(--ease-out);
    }

    .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); }

    .hero-right-col {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: flex-end;
    }

    .hero-stats {
      display: flex;
      gap: 0;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .hero-stat {
      padding: 1.25rem 2rem;
      border-right: 1px solid rgba(255,255,255,0.1);
    }

    .hero-stat:last-child { border-right: none; }

    .hero-stat-num {
      font-size: 1.875rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--white);
    }

    .hero-stat-num sup {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--gold-bright);
      vertical-align: super;
    }

    .hero-stat-label {
      font-size: 0.825rem;
      font-weight: 500;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.05em;
      margin-top: 0.2rem;
    }

    .hero-badge {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-lg);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-badge-icon {
      width: 2.5rem; height: 2.5rem;
      background: var(--gold);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .hero-badge-label {
      font-size: 0.775rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .hero-badge-val {
      font-size: 1.075rem;
      font-weight: 700;
      color: var(--white);
      margin-top: 0.15rem;
    }

    /* ─── SECTION COMMONS ─── */
    section { padding: 7rem 2rem; }

    .container { max-width: 1400px; margin: 0 auto; }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(30,61,47,0.08);
      border: 1px solid rgba(30,61,47,0.12);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.775rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 1.25rem;
    }

    .section-title {
      font-size: clamp(1.925rem, 3.5vw, 2.875rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 1rem;
    }

    .section-title span { color: var(--green-deep); }

    /* Section head + "see all" CTA: top-right on desktop, below content on mobile */
    @media (min-width: 901px) {
      .sec-wrap {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "head cta" "body body";
        column-gap: 2rem;
        row-gap: 2.25rem;
        align-items: end;
      }
      /* head margin removed so the CTA aligns to the heading's bottom line (row-gap handles head→body spacing);
         block display avoids flex-wrap offsetting the head within its grid cell */
      .sec-wrap > .sec-head { grid-area: head; margin-bottom: 0; display: block; }
      .sec-wrap > .sec-cta  { grid-area: cta; margin: 0; align-self: end; }
      .sec-wrap > .sec-body { grid-area: body; }
    }
    @media (max-width: 900px) {
      .sec-wrap > .sec-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
      }
    }

    .section-sub {
      font-size: 1.0625rem;
      font-weight: 400;
      line-height: 1.75;
      color: var(--ink-soft);
      max-width: 52ch;
    }

    /* ─── CATALOG ─── */
    /* ─── CATALOG SECTION (FULL-WIDTH REIMAGINED) ─── */
    .catalog-section {
      background: var(--ink);
      overflow: hidden;
      position: relative;
    }

    .catalog-intro {
      padding: 4rem 0 2.5rem;
      max-width: 1400px;
      margin: 0 auto;
      padding-left: clamp(1.5rem, 5vw, 5rem);
      padding-right: clamp(1.5rem, 5vw, 5rem);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 3rem;
    }

    .catalog-intro .section-eyebrow {
      background: rgba(68,130,67,0.15);
      border-color: rgba(68,130,67,0.3);
      color: var(--gold-deep);
    }

    .catalog-intro .section-title { color: #fff; }
    .catalog-intro .section-title span { color: var(--gold-bright); }
    .catalog-intro .section-sub { color: rgba(255,255,255,0.5); max-width: 38ch; }

    /* Tab switcher */
    .catalog-tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 0;
      padding: 0 clamp(1.5rem, 5vw, 5rem);
      max-width: 1400px;
      margin: 0 auto;
    }

    .catalog-tab {
      padding: 0.6rem 1.4rem;
      border-radius: 9999px;
      font-size: 0.905rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      cursor: pointer;
      border: 1.5px solid rgba(255,255,255,0.12);
      background: transparent;
      color: rgba(255,255,255,0.45);
      transition: all 0.3s var(--ease-out);
      font-family: inherit;
    }

    .catalog-tab.active, .catalog-tab:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #fff;
    }

    /* Full-width grid stage */
    .catalog-stage {
      margin-top: 2.5rem;
      position: relative;
      min-height: 680px;
    }

    .catalog-panel {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(2, 340px);
      gap: 4px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(24px);
      transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    }

    .catalog-panel.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      position: relative;
    }

    /* Cell layout for panel 1 */
    .cp-cell {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .cp-cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.65s var(--ease-out), filter 0.4s;
      filter: brightness(0.82);
    }

    .cp-cell:hover img { transform: scale(1.07); filter: brightness(0.65); }

    .cp-cell-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,25,15,0.88) 0%, rgba(10,25,15,0.1) 55%, transparent 100%);
    }

    .cp-cell-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.5rem 1.75rem;
      transform: translateY(6px);
      transition: transform 0.35s var(--ease-out);
    }

    .cp-cell:hover .cp-cell-body { transform: translateY(0); }

    .cp-cell-tag {
      font-size: 0.725rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 0.35rem;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s 0.05s, transform 0.3s 0.05s var(--ease-out);
    }

    .cp-cell:hover .cp-cell-tag { opacity: 1; transform: translateY(0); }

    .cp-cell-name {
      font-size: 1.175rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      letter-spacing: -0.01em;
    }

    .cp-cell-count {
      font-size: 0.825rem;
      color: rgba(255,255,255,0.55);
      margin-top: 0.3rem;
      font-weight: 500;
    }

    /* ─── Panel grid configs ─── */
    /* Panel 1: Plante */
    #cat-panel-1 .cp-cell:nth-child(1) { grid-column: span 5; grid-row: span 2; }
    #cat-panel-1 .cp-cell:nth-child(2) { grid-column: span 4; }
    #cat-panel-1 .cp-cell:nth-child(3) { grid-column: span 3; }
    #cat-panel-1 .cp-cell:nth-child(4) { grid-column: span 3; }
    #cat-panel-1 .cp-cell:nth-child(5) { grid-column: span 4; }

    /* Panel 2: Unelte */
    #cat-panel-2 .cp-cell:nth-child(1) { grid-column: span 4; grid-row: span 2; }
    #cat-panel-2 .cp-cell:nth-child(2) { grid-column: span 5; }
    #cat-panel-2 .cp-cell:nth-child(3) { grid-column: span 3; }
    #cat-panel-2 .cp-cell:nth-child(4) { grid-column: span 3; }
    #cat-panel-2 .cp-cell:nth-child(5) { grid-column: span 5; }

    /* Bottom CTA strip */
    .catalog-cta-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem clamp(1.5rem, 5vw, 5rem) 2rem;
      max-width: 1400px;
      margin: 0 auto;
      gap: 2rem;
    }

    .catalog-cta-text {
      color: rgba(255,255,255,0.45);
      font-size: 0.975rem;
      font-weight: 500;
    }

    .catalog-cta-text strong { color: rgba(255,255,255,0.8); }

    /* Responsive */
    @media (max-width: 900px) {
      .catalog-panel { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: auto; }
      .catalog-panel.active { position: relative; }
      #cat-panel-1 .cp-cell:nth-child(1),
      #cat-panel-2 .cp-cell:nth-child(1) { grid-column: span 2; }
      #cat-panel-1 .cp-cell, #cat-panel-2 .cp-cell { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
      #cat-panel-1 .cp-cell:nth-child(1), #cat-panel-2 .cp-cell:nth-child(1) { grid-column: span 2 !important; height: 260px; }
      .catalog-intro { flex-direction: column; padding-bottom: 2rem; }
    }

    /* OLD cat-card styles – kept for safety but overridden */
    .catalog-group-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .catalog-group-icon {
      width: 3rem; height: 3rem;
      background: var(--green-deep);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .catalog-group-title {
      font-size: 1.225rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: var(--ink);
      line-height: 1.2;
    }

    .cat-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      transition: transform 0.4s var(--ease-spring);
    }

    .cat-card:hover { transform: scale(1.02); }
    .cat-card:nth-child(1) { grid-column: span 2; aspect-ratio: 16/7; }

    .cat-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }

    .cat-card:hover img { transform: scale(1.06); }

    .cat-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(30,61,47,0.85) 0%, rgba(30,61,47,0.2) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1rem;
    }

    .cat-card-name {
      font-size: 1.025rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      color: #fff;
      line-height: 1.2;
    }

    .cat-card-count {
      font-size: 0.805rem;
      font-weight: 500;
      color: rgba(255,255,255,0.6);
      margin-top: 0.2rem;
    }

    /* ─── BLOCK 2: MAIN CATEGORIES ─── */
    .cats-section { background: var(--cream); }
    .cats-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
    .cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    .cat-tile {
      display: flex; flex-direction: column; gap: 1rem;
      padding: 1.75rem 1.5rem; background: #fff;
      border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius-lg);
      text-align: left; text-decoration: none; cursor: pointer; font-family: inherit;
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.2s;
    }
    .cat-tile:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
    .cat-tile-ico {
      width: 3.5rem; height: 3.5rem; border-radius: var(--radius-md); flex-shrink: 0;
      background: var(--green-deep); color: #fff;
      display: flex; align-items: center; justify-content: center; transition: 0.25s;
    }
    .cat-tile:hover .cat-tile-ico { background: var(--gold); color: #fff; }
    .cat-tile-txt { flex: 1; }
    .cat-tile-name { font-size: 1.25rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
    .cat-tile-desc { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.5; margin-top: 0.35rem; }
    .cat-tile-link { font-size: 0.8rem; font-weight: 700; color: var(--green-mid); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s; }
    .cat-tile:hover .cat-tile-link { gap: 0.6rem; }
    @media (max-width: 900px) { .cats-grid { grid-template-columns: 1fr 1fr; } .cats-head { flex-direction: column; align-items: flex-start; gap: 1rem; } .cats-all { width: 100%; justify-content: center; } }
    @media (max-width: 560px) { .cats-grid { gap: 0.75rem; } .cat-tile { padding: 1.25rem 1rem; gap: 0.75rem; } .cat-tile-ico { width: 3rem; height: 3rem; } .cat-tile-name { font-size: 1.1rem; } }

    /* ─── BLOCK 7: INSTAGRAM ─── */
    .insta-section { background: var(--cream); }
    .insta-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
    .insta-follow { background: var(--green-deep) !important; color: #fff !important; }
    .insta-follow:hover { background: var(--green-mid) !important; }
    .insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
    .insta-item { position: relative; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; display: block; }
    .insta-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease-out); }
    .insta-item:hover img { transform: scale(1.08); }
    .insta-ov { position: absolute; inset: 0; background: rgba(30,50,35,0); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
    .insta-item:hover .insta-ov { background: rgba(30,50,35,0.45); opacity: 1; }
    @media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } .insta-head { flex-direction: column; align-items: flex-start; gap: 1rem; } .insta-follow { width: 100%; justify-content: center; } }

    /* ─── EXCLUSIVE PLANTS ─── */
    .exclusive-section { background: var(--green-deep); padding-top: 4rem; padding-bottom: 4rem; }

    .exclusive-section .section-title { color: var(--white); }
    .exclusive-section .section-title span { color: var(--gold-bright); }
    .exclusive-section .section-eyebrow {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.28);
      color: var(--gold-bright);
    }
    .exclusive-section .section-sub { color: rgba(255,255,255,0.55); }
    .exclusive-section .sec-cta { background: #fff; color: var(--green-deep); }
    .exclusive-section .sec-cta:hover { background: #eef2ec; }

    .exclusive-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
    }

    /* Exclusive slider */
    .exclusive-slider-wrap {
      position: relative;
      overflow: hidden;
      margin: 0 -1rem;
    }

    .exclusive-track {
      display: flex;
      gap: 1rem;
      padding: 1.75rem 1rem 3.5rem;
      transition: transform 0.55s var(--ease-spring);
      will-change: transform;
      cursor: grab;
      user-select: none;
    }

    .exclusive-track.dragging {
      transition: none;
      cursor: grabbing;
    }

    .exclusive-track .plant-card {
      flex: 0 0 calc(25% - 0.75rem);
      min-width: 0;
    }

    .exclusive-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 2rem;
    }

    .exclusive-dots {
      display: flex;
      gap: 0.4rem;
    }

    .exclusive-dot {
      width: 6px;
      height: 6px;
      border-radius: 9999px;
      background: rgba(255,255,255,0.2);
      border: none;
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
      padding: 0;
    }

    .exclusive-dot.active {
      width: 24px;
      background: #fff;
    }

    .exclusive-arrows {
      display: flex;
      gap: 0.5rem;
    }

    .exclusive-arrow {
      width: 42px; height: 42px;
      border-radius: 9999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.7);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.25s var(--ease-out);
    }

    .exclusive-arrow:hover {
      background: #fff;
      border-color: #fff;
      color: var(--green-deep);
    }

    @media (max-width: 900px) {
      .exclusive-track .plant-card { flex: 0 0 calc(50% - 0.5rem); }
    }

    @media (max-width: 560px) {
      .exclusive-track .plant-card { flex: 0 0 calc(80% - 0.5rem); }
    }

    .plant-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: all 0.4s var(--ease-spring);
      cursor: pointer;
    }

    .plant-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }

    .plant-card-img {
      aspect-ratio: 2/3;
      overflow: hidden;
      position: relative;
    }

    .plant-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }

    .plant-card:hover .plant-card-img img { transform: scale(1.06); }

    .plant-card-badge {
      position: absolute;
      top: 0.75rem;
      left: 0.75rem;
      background: #fff;
      color: var(--green-deep);
      font-size: 0.725rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      border-radius: 9999px;
    }
    .plant-card-badge-sale { background: #c0392b; color: #fff; }
    .plant-price del { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-left: 0.4rem; text-decoration: line-through; }

    .plant-card-body {
      padding: 0.9rem 1rem 1rem;
    }

    .plant-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.1rem;
      letter-spacing: -0.01em;
    }

    .plant-latin {
      font-size: 0.8rem;
      font-weight: 400;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.55rem;
    }

    .plant-attrs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 0.7rem;
      flex-wrap: wrap;
    }

    .plant-attr {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.805rem;
      font-weight: 500;
      color: rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.06);
      border-radius: 9999px;
      padding: 0.2rem 0.6rem;
    }

    .plant-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .plant-price {
      font-size: 1.325rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--gold-bright);
    }

    .plant-price span { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.4); }

    .add-btn {
      width: 2.25rem; height: 2.25rem;
      background: #fff;
      border: none;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.3s var(--ease-spring);
      flex-shrink: 0;
    }

    .add-btn:hover { background: var(--gold-bright); transform: scale(1.1); }
    .add-btn:hover svg { stroke: #fff; }

    /* ─── SERVICES SLIDER ─── */
    .services-section { background: var(--cream); }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2.5rem;
    }

    .services-slider-wrap {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      height: 580px;
    }

    .services-slides {
      display: flex;
      height: 100%;
      transition: transform 0.7s var(--ease-spring);
    }

    .service-slide {
      flex: 0 0 100%;
      min-width: 0;
      max-width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .service-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 8s ease-out;
    }

    .service-slide.active img { transform: scale(1.04); }

    .service-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        120deg,
        rgba(18,44,30,0.92) 0%,
        rgba(18,44,30,0.6) 55%,
        rgba(18,44,30,0.15) 100%
      );
    }

    .service-slide-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 3.5rem 4rem;
      max-width: 600px;
    }

    .service-num {
      font-size: 0.775rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      color: var(--gold-bright);
      margin-bottom: 1rem;
    }

    .service-title {
      font-size: clamp(2.125rem, 3.5vw, 3.125rem);
      font-weight: 800;
      letter-spacing: -0.025em;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .service-desc {
      font-size: 1.0625rem;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.65);
      margin-bottom: 2rem;
      max-width: 44ch;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--gold);
      color: #fff;
      border-radius: 9999px;
      padding: 0.75rem 1.5rem;
      font-size: 0.925rem;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.03em;
      width: fit-content;
      transition: all 0.3s var(--ease-out);
    }

    .service-link:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* Slide navigation */
    .services-nav {
      position: absolute;
      right: 2.5rem;
      bottom: 2.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      z-index: 10;
    }

    .services-dots {
      display: flex;
      gap: 0.4rem;
    }

    .services-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      border: none;
      cursor: pointer;
      transition: all 0.35s var(--ease-out);
      padding: 0;
    }

    .services-dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 9999px;
    }

    .services-arrow {
      width: 2.75rem; height: 2.75rem;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.85);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .services-arrow:hover { background: rgba(255,255,255,0.22); color: #fff; transform: scale(1.05); }

    /* Slide counter top-right */
    .services-counter {
      position: absolute;
      top: 2rem;
      right: 2.5rem;
      font-size: 0.875rem;
      font-weight: 700;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.08em;
      z-index: 10;
    }

    .services-counter span { color: rgba(255,255,255,0.9); }

    /* Progress bar */
    .services-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--gold);
      width: 0%;
      transition: width linear;
      z-index: 10;
    }

    /* ─── PORTFOLIO ─── */
    .portfolio-section { background: var(--cream); padding: 7rem 2rem 4rem; }

    .portfolio-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1rem;
      margin-top: 3rem;
    }

    .portfolio-item {
      border-radius: var(--radius-xl);
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease-out);
    }

    .portfolio-item:hover img { transform: scale(1.05); }
    .portfolio-item:nth-child(1) { grid-row: span 2; min-height: 480px; }
    .portfolio-item:not(:first-child) { min-height: 230px; }

    .portfolio-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(30,61,47,0);
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
      transition: background 0.3s;
    }

    .portfolio-item:hover .portfolio-item-overlay { background: rgba(30,61,47,0.55); }

    .portfolio-item-label {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.3s var(--ease-out);
    }

    .portfolio-item:hover .portfolio-item-label { opacity: 1; transform: translateY(0); }

    /* Portfolio expand panel */
    .portfolio-expand {
      grid-column: 1 / -1;
      background: var(--cream);
      border-radius: var(--radius-xl);
      overflow: hidden;
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.45s var(--ease-spring);
    }

    .portfolio-expand.open {
      grid-template-rows: 1fr;
    }

    .portfolio-expand-inner {
      overflow: hidden;
      min-height: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      padding: 0 2.5rem;
      transition: padding 0.45s var(--ease-spring);
    }

    .portfolio-expand.open .portfolio-expand-inner {
      padding: 2.5rem;
    }

    .portfolio-expand-close {
      position: absolute;
      top: 1rem; right: 1rem;
      width: 36px; height: 36px;
      background: rgba(30,61,47,0.08);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--ink);
      transition: background 0.2s;
    }

    .portfolio-expand-close:hover { background: rgba(30,61,47,0.15); }

    .portfolio-expand-wrap {
      position: relative;
    }

    .portfolio-expand-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 16/9;
    }

    .portfolio-expand-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .portfolio-expand-tag {
      font-size: 0.745rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 0.75rem;
    }

    .portfolio-expand-title {
      font-size: 1.625rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .portfolio-expand-desc {
      font-size: 1rem;
      color: var(--ink-muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .portfolio-expand-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .portfolio-expand-pill {
      font-size: 0.825rem;
      font-weight: 600;
      color: var(--green-mid);
      background: rgba(46,94,58,0.1);
      border-radius: 9999px;
      padding: 0.3rem 0.8rem;
    }

    .portfolio-item.selected { outline: 3px solid var(--gold); outline-offset: 3px; }

    @media (max-width: 700px) {
      .portfolio-expand-inner { grid-template-columns: 1fr; }
    }

    /* ─── iOS BOTTOM BAR ─── */
    .ios-bar {
      display: none;
      position: fixed;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 60;
      background: rgba(20,38,28,0.88);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 9999px;
      padding: 0.5rem 0.75rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
      gap: 0;
      align-items: center;
    }

    .ios-bar-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.2rem;
      padding: 0.5rem 1.1rem;
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,0.6);
      font-family: inherit;
      font-size: 0.725rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border-radius: 9999px;
      transition: all 0.25s var(--ease-out);
      text-decoration: none;
      white-space: nowrap;
    }

    .ios-bar-btn svg { transition: transform 0.25s var(--ease-out); }
    .ios-bar-btn:active { transform: scale(0.93); }
    .ios-bar-btn:hover { color: #fff; }

    .ios-bar-divider {
      display: none;
    }

    .ios-bar-btn.menu-btn {
      background: #fff;
      color: var(--green-deep);
      padding: 0.55rem 1.3rem;
    }

    /* Mobile full-screen menu overlay */
    .mob-menu-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 65;
      background: var(--green-deep);
      flex-direction: column;
      overflow-y: auto;
      overscroll-behavior: contain;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }

    .mob-menu-overlay.open {
      opacity: 1;
      transform: translateY(0);
    }

    .mob-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      flex-shrink: 0;
    }

    .mob-menu-header img { height: 36px; }

    .mob-menu-close {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.08);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.8);
      transition: background 0.2s;
    }

    .mob-menu-close:hover { background: rgba(255,255,255,0.15); }

    .mob-menu-body { padding: 1.5rem; flex: 1; }

    .mob-menu-section-label {
      font-size: 0.725rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 1rem;
      margin-top: 1.5rem;
    }

    .mob-menu-section-label:first-child { margin-top: 0; }

    /* Catalog image grid in mobile menu */
    .mob-cat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
      margin-bottom: 0.5rem;
    }

    .mob-cat-item {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 1;
      cursor: pointer;
      text-decoration: none;
    }

    .mob-cat-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s var(--ease-out);
    }

    .mob-cat-item:active img { transform: scale(1.06); }

    .mob-cat-item-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(10,25,15,0.9) 0%, transparent 100%);
      padding: 1.5rem 0.75rem 0.75rem;
      font-size: 0.905rem;
      font-weight: 700;
      color: #fff;
    }

    /* Main nav links */
    /* Accordion nav */
    .mob-acc-list { display: flex; flex-direction: column; gap: 0.25rem; }

    .mob-acc-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.9rem 1rem;
      background: rgba(255,255,255,0.04);
      border-radius: 12px;
      cursor: pointer; width: 100%; border: none;
      color: rgba(255,255,255,0.85); font-size: 1.125rem; font-weight: 700;
      font-family: inherit; text-align: left;
      transition: background 0.2s, border-radius 0.2s;
    }
    .mob-acc-header:active { background: rgba(255,255,255,0.1); }
    .mob-acc-item.open > .mob-acc-header { border-radius: 12px 12px 0 0; background: rgba(255,255,255,0.07); }
    .mob-acc-header .mob-chevron { transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
    .mob-acc-item.open .mob-chevron { transform: rotate(90deg); }

    .mob-acc-body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s var(--ease-out);
      background: rgba(255,255,255,0.03);
      border-radius: 0 0 12px 12px;
    }
    .mob-acc-item.open .mob-acc-body { grid-template-rows: 1fr; }
    .mob-acc-body-inner { overflow: hidden; min-height: 0; }
    .mob-acc-body-pad { padding: 0.75rem; }

    /* Sub-category grid (3 cols) */
    .mob-sub-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.45rem;
    }
    .mob-sub-item {
      border-radius: 10px; overflow: hidden; position: relative;
      aspect-ratio: 1; text-decoration: none; display: block;
    }
    .mob-sub-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s var(--ease-out); }
    .mob-sub-item:active img { transform: scale(1.06); }
    .mob-sub-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(10,25,15,0.92) 0%, transparent 100%);
      padding: 1rem 0.3rem 0.35rem;
      font-size: 0.645rem; font-weight: 800; color: #fff; text-align: center;
      letter-spacing: 0.01em; line-height: 1.2;
    }

    /* Service rows inside accordion */
    .mob-service-row {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
      text-decoration: none;
    }
    .mob-service-row:last-child { border-bottom: none; }
    .mob-service-row img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
    .mob-service-row-info {}
    .mob-service-row-num { font-size: 0.675rem; font-weight: 800; color: var(--gold-deep); letter-spacing: 0.1em; text-transform: uppercase; }
    .mob-service-row-title { font-size: 0.945rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-top: 0.1rem; }

    /* Portfolio thumb row */
    .mob-port-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.45rem; }
    .mob-port-thumb { border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; }
    .mob-port-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* Blog rows */
    .mob-blog-row {
      display: flex; align-items: flex-start; gap: 0.75rem;
      padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
      text-decoration: none;
    }
    .mob-blog-row:last-child { border-bottom: none; }
    .mob-blog-row img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
    .mob-blog-row-tag { font-size: 0.675rem; font-weight: 800; color: var(--gold-deep); letter-spacing: 0.1em; text-transform: uppercase; }
    .mob-blog-row-title { font-size: 0.905rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-top: 0.1rem; line-height: 1.3; }

    /* Simple direct link */
    .mob-nav-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.9rem 1rem;
      background: rgba(255,255,255,0.04);
      border-radius: 12px;
      color: rgba(255,255,255,0.85);
      font-size: 1.125rem; font-weight: 700;
      text-decoration: none; transition: background 0.2s;
    }
    .mob-nav-link:active { background: rgba(255,255,255,0.1); }

    .mob-menu-footer {
      padding: 1.25rem 1.5rem;
      padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .mob-menu-footer a {
      flex: 1;
      text-align: center;
      padding: 0.8rem;
      border-radius: 12px;
      font-size: 0.925rem;
      font-weight: 700;
      text-decoration: none;
    }

    .mob-footer-call {
      background: var(--gold);
      color: #fff;
    }

    .mob-footer-map {
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.12);
    }

    @media (max-width: 900px) {
      .ios-bar { display: flex; }
      /* hide old hamburger */
      .hamburger { display: none !important; }
      .mobile-menu { display: none !important; }
    }

    /* ─── ABOUT ─── */
    .about-section {
      background: var(--cream-dark);
      padding: 7rem 2rem;
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-img-stack {
      position: relative;
    }

    .about-img-main {
      border-radius: var(--radius-xl);
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      display: block;
    }

    .about-img-accent {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      width: 55%;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: var(--radius-xl);
      border: 4px solid var(--cream-dark);
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }

    .about-year-badge {
      position: absolute;
      top: 2rem;
      left: -2rem;
      background: var(--green-deep);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.5rem;
      box-shadow: 0 12px 40px rgba(30,61,47,0.3);
    }

    .about-year-num {
      font-size: 2.625rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--gold-deep);
      line-height: 1;
    }

    .about-year-label {
      font-size: 0.775rem;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 0.3rem;
    }

    .about-feats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: 2.5rem;
    }

    .about-feat {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.25rem;
    }

    .about-feat-num {
      font-size: 2.125rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--green-deep);
    }

    .about-feat-label {
      font-size: 0.905rem;
      font-weight: 500;
      color: var(--ink-soft);
      margin-top: 0.25rem;
      line-height: 1.4;
    }

    /* ─── PARTNERS ─── */
    .partners-section {
      background: var(--cream);
      padding: 4rem 2rem;
    }

    .partners-label {
      text-align: center;
      font-size: 0.775rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 2.5rem;
    }

    .partners-marquee {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    }

    .partners-track {
      display: flex;
      align-items: center;
      gap: 4.5rem;
      width: max-content;
      animation: partners-scroll 30s linear infinite;
    }

    .partners-track:hover { animation-play-state: paused; }

    @keyframes partners-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-25%); }
    }

    .partner-logo {
      opacity: 0.4;
      filter: grayscale(1);
      transition: all 0.3s;
      max-height: 42px;
      width: auto;
      flex-shrink: 0;
    }

    .partner-logo:hover { opacity: 0.75; filter: grayscale(0); }

    @media (prefers-reduced-motion: reduce) {
      .partners-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
    }

    /* ─── BLOG ─── */
    .blog-section { background: var(--cream); }

    .blog-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 1.25rem;
    }

    .blog-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    }

    .blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

    .blog-img-wrap { overflow: hidden; }

    .blog-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
      display: block;
    }

    .blog-card:first-child .blog-img { aspect-ratio: 16/10; }
    .blog-card:hover .blog-img { transform: scale(1.04); }

    .blog-body {
      padding: 1.5rem;
    }

    .blog-tag {
      display: inline-block;
      align-self: flex-start;
      width: fit-content;
      max-width: 100%;
      background: var(--green-deep, #2e5e3a);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 9999px;
      padding: 0.28rem 0.7rem;
      margin-bottom: 0.75rem;
    }

    .blog-title {
      font-size: 1.125rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      line-height: 1.35;
      margin-bottom: 0.75rem;
    }

    .blog-meta {
      font-size: 0.845rem;
      font-weight: 500;
      color: var(--ink-muted);
    }

    /* ─── CONTACT STRIP ─── */
    .contact-strip {
      background: var(--green-deep);
      padding: 5rem 2rem;
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .contact-heading {
      font-size: 2.125rem;
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--white);
      line-height: 1.15;
    }

    .contact-heading span { color: var(--gold-bright); }

    .contact-location {
      border-left: 1px solid rgba(255,255,255,0.1);
      padding-left: 2rem;
    }

    .contact-location-title {
      font-size: 0.775rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-bright);
      margin-bottom: 0.75rem;
    }

    .contact-addr {
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.6;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .contact-pin {
      color: var(--gold-bright);
      flex-shrink: 0;
      display: flex;
      margin-top: 0.2rem;
    }

    .contact-phone {
      color: rgba(255,255,255,0.5);
      font-size: 0.925rem;
    }

    .contact-cta-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 1rem;
    }

    .contact-hours {
      font-size: 0.925rem;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
      text-align: right;
      line-height: 1.6;
    }

    .contact-strip .contact-hours {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.6rem 2.5rem;
    }
    .contact-line-item {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .contact-line-label {
      display: block;
      color: #fff;
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      opacity: 0.92;
    }

    .contact-line-num {
      color: var(--gold-bright);
      font-weight: 700;
      font-size: 1.02rem;
      text-decoration: none;
      white-space: nowrap;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #0F2019;
      padding: 3.5rem 2rem 2rem;
      color: rgba(255,255,255,0.4);
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand img {
      height: 40px;
      filter: brightness(0) invert(1);
      opacity: 0.6;
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-size: 0.925rem;
      font-weight: 400;
      line-height: 1.7;
      max-width: 28ch;
    }

    .footer-col-title {
      font-size: 0.775rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 1.25rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .footer-links a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      font-size: 0.945rem;
      font-weight: 400;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.8); }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.845rem;
      font-weight: 400;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.3);
      text-decoration: none;
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      filter: blur(4px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

    .reveal-d1 { transition-delay: 0.05s; }
    .reveal-d2 { transition-delay: 0.12s; }
    .reveal-d3 { transition-delay: 0.2s; }
    .reveal-d4 { transition-delay: 0.28s; }
    .reveal-d5 { transition-delay: 0.36s; }

    /* ─── REVIEWS ─── */
    .reviews-section {
      position: relative;
      padding: 7rem 2rem;
      overflow: hidden;
    }

    .reviews-bg {
      position: absolute;
      inset: 0;
      background-image: url('img/1558618666-fcd25c85cd64.jpg');
      background-size: cover;
      background-position: center;
    }

    .reviews-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(18,44,30,0.93) 0%, rgba(30,61,47,0.88) 100%);
    }

    .reviews-inner {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
    }

    .reviews-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
    }

    .reviews-section .section-eyebrow {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.28);
      color: var(--gold-bright);
    }

    .reviews-section .section-title { color: var(--white); }
    .reviews-section .section-title span { color: var(--gold-bright); }

    .google-badge {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-lg);
      padding: 0.75rem 1.25rem;
    }

    .google-badge-score {
      font-size: 2.125rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .google-badge-stars {
      color: #FBBC04;
      font-size: 1.125rem;
      letter-spacing: 0.05em;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    .google-badge-label {
      font-size: 0.825rem;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
    }

    .reviews-slider-wrap {
      position: relative;
      overflow: hidden;
    }

    .reviews-track {
      display: flex;
      gap: 1.25rem;
      transition: transform 0.55s var(--ease-spring);
      will-change: transform;
    }

    .review-card {
      flex: 0 0 calc((100% - 2.5rem) / 3);
      min-width: 0;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-xl);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: background 0.3s;
    }

    .review-card:hover { background: rgba(255,255,255,0.1); }

    .review-stars {
      color: #FBBC04;
      font-size: 1.025rem;
      letter-spacing: 0.08em;
    }

    .review-text {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.8);
      flex: 1;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: auto;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .review-avatar {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: var(--green-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.025rem;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }

    .review-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
    }

    .review-date {
      font-size: 0.845rem;
      font-weight: 400;
      color: rgba(255,255,255,0.4);
      margin-top: 0.1rem;
    }

    .review-google-icon {
      margin-left: auto;
      opacity: 0.4;
      flex-shrink: 0;
    }

    .reviews-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .reviews-dots {
      display: flex;
      gap: 0.5rem;
    }

    .reviews-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      border: none;
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
      padding: 0;
    }

    .reviews-dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 9999px;
    }

    .reviews-arrow {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
    }

    .reviews-arrow:hover { background: rgba(255,255,255,0.2); color: #fff; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
      /* Cart: icon-only circle with floating badge */
      .cart-btn span:not(.cart-count) { display: none; }
      .cart-btn {
        width: 38px; height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        position: relative;
      }
      .cart-count {
        position: absolute;
        top: -4px; right: -4px;
        width: 16px; height: 16px;
        font-size: 0.675rem;
      }

      .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
      .hero-right-col { align-items: flex-start; }
      .hero-stats { width: 100%; }

      .catalog-groups { grid-template-columns: 1fr; }
      .catalog-header { flex-direction: column; align-items: flex-start; }

      .exclusive-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

      .services-slider-wrap { height: 480px; }
      .service-slide-content { padding: 2.5rem 2rem; }
      .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

      .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .portfolio-item:nth-child(1) { grid-column: span 2; min-height: 260px; }

      .about-inner { grid-template-columns: 1fr; }
      .about-img-accent { display: none; }
      .about-year-badge { left: 0; }

      .blog-grid { grid-template-columns: 1fr; }
      .blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

      .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
      .contact-location { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 1.5rem; }
      .contact-cta-wrap { align-items: flex-start; }
      .contact-hours { text-align: left; }
      .contact-strip .contact-hours { justify-content: flex-start; }

      .reviews-track { grid-template-columns: 1fr; }
      .reviews-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
      /* Clear the floating bottom bar so footer content isn't hidden behind it */
      footer { padding-bottom: 7rem; }
    }

    @media (max-width: 600px) {
      section { padding: 5rem 1.25rem; }
      .catalog-cats { grid-template-columns: 1fr; }
      .cat-card:nth-child(1) { grid-column: span 1; }
      .exclusive-grid { grid-template-columns: 1fr; }
      .about-feats { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .partners-track { gap: 2.5rem; }
      .partner-logo { max-height: 34px; }
      .hero-content { padding: 4rem 1.25rem; }
    }

    /* ═══════ MOBILE LAYOUT REFINEMENTS ═══════ */
    @media (max-width: 768px) {
      /* #4 exactly 40px top & bottom on every section (hero keeps its own padding) */
      section { padding-top: 40px; padding-bottom: 40px; }
      .exclusive-section { padding-top: 40px; padding-bottom: 40px; }
      .portfolio-section { padding: 40px 1.25rem; }
      .contact-strip { padding-top: 40px; padding-bottom: 40px; }
      .catalog-section { padding-top: 40px; padding-bottom: 40px; }
      .catalog-intro { padding-top: 0; }

      /* #2 align catalog heading, text, tabs and CTA to the same left edge */
      .catalog-tabs, .catalog-cta-strip { padding-left: 0; padding-right: 0; }

      /* #5 statistics in two columns */
      .about-feats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
      .about-feat { padding: 1rem; }
      .about-feat-num { font-size: 1.725rem; }

      /* #1 & #3 hero: fixed 400px height on mobile; centered text inset so side arrows never overlap it */
      .hero { min-height: 400px; height: 400px; margin-top: 80px; }
      .hero-overlay { background: linear-gradient(to top, rgba(25,45,32,0.9) 0%, rgba(25,45,32,0.55) 45%, rgba(25,45,32,0.32) 100%); }
      .hero-content { padding: 1.25rem 3rem 2.75rem; gap: 0.85rem; align-items: center; text-align: center; }
      .hero-left-col { margin: 0 auto; }
      .hero-desc { margin: 0 auto; }
      .hero-dots { bottom: 1rem; }
      .hero-arrow { width: 36px; height: 36px; }
      .hero-arrow-prev { left: 0.4rem; }
      .hero-arrow-next { right: 0.4rem; }
      .hero-h1, .hero-desc { text-shadow: 0 2px 12px rgba(0,0,0,0.45); }
      .eyebrow { margin-bottom: 0.7rem; font-size: 0.66rem; padding: 0.25rem 0.75rem; }
      .hero-h1 { font-size: 2rem; line-height: 1.1; margin-bottom: 0.7rem; }
      .hero-desc { font-size: 0.85rem; line-height: 1.5; margin-bottom: 0; }
      .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; gap: 0.75rem; }
      .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
      .hero-right-col { width: 100%; align-items: stretch; }
      .hero-badge { width: 100%; }

      /* #6 less space under the catalog heading */
      .catalog-intro { padding: 2.25rem 0 1rem; gap: 0.75rem; }
      .catalog-intro .section-title { margin-bottom: 0; }
      .catalog-intro .section-sub { max-width: 100%; }

      /* #7 catalog category tabs stacked, full width */
      .catalog-tabs { flex-direction: column; }
      .catalog-tab { width: 100%; text-align: center; }

      /* #8 catalog CTA: text full width, button below (full width) */
      .catalog-cta-strip { flex-direction: column; align-items: stretch; text-align: center; gap: 1rem; }
      .catalog-cta-strip .catalog-cta-text { max-width: 100%; }
      .catalog-cta-strip .btn-primary { width: 100%; justify-content: center; }

      /* #9 exclusive: heading then button below; taller images; tight spacing */
      .exclusive-header { flex-direction: column; align-items: stretch; gap: 1.25rem; margin-bottom: 1.25rem; }
      .exclusive-header .btn-primary { width: 100%; justify-content: center; }
      .plant-card-img { aspect-ratio: 4 / 5; }
      .exclusive-track { padding: 0.5rem 1rem 1rem; }
      .exclusive-nav { margin-top: 1rem; }

      /* #10 services slider: fit the whole text */
      .services-header { flex-direction: column; align-items: stretch; gap: 1rem; }
      .services-header .btn-primary { width: 100%; justify-content: center; }
      .services-slider-wrap { height: 600px; }
      .service-slide-content { padding: 2rem 1.5rem 6.5rem; max-width: 100%; }
      .service-num { margin-bottom: 0.6rem; }
      .service-title { font-size: 1.625rem; margin-bottom: 0.75rem; }
      .service-desc { font-size: 0.945rem; line-height: 1.6; margin-bottom: 1.25rem; }

      /* #12 portfolio: heading full width, button below; eyebrow on one line */
      .portfolio-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .portfolio-header > div { width: 100%; }
      .portfolio-header .btn-primary { width: 100%; justify-content: center; }
      .section-eyebrow { white-space: nowrap; }

      /* #11 reviews: single full-width card per view */
      .review-card { flex: 0 0 100%; }

      /* #7 footer: brand text full width, link columns (Servicii & Companie) side by side */
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.25rem; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-brand p { max-width: none; }

      /* #6 remove the white strip under the footer */
      html { background: #0F2019; }
      body { overscroll-behavior: none; background: var(--cream); }
    }
/* ══════════════════════════════════════════════════════════════
   INNER PAGES – shared components (match homepage design language)
   ══════════════════════════════════════════════════════════════ */

/* main wrapper clears the fixed header */
.page { padding-top: calc(var(--dl-head-total) + 2.5rem); padding-bottom: 4rem; background: var(--cream); min-height: 60vh; }
@media (max-width: 900px) { .page { padding-top: calc(var(--dl-head-total) + 1.25rem); } }

.page-wrap { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 768px) { .page-wrap { padding: 0 1.25rem; } }

/* breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 600; color: var(--ink-muted); margin-bottom: 1.1rem; }
.crumbs a { color: var(--green-mid); text-decoration: none; }
.crumbs a:hover { color: var(--green-deep); }
.crumbs span.sep { opacity: 0.5; }
.crumbs .cur { color: var(--ink); }

/* page hero / title band */
.page-head { margin-bottom: 2.5rem; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.08; }
.page-title span { color: var(--green-deep); }
.page-lead { font-size: 1.075rem; color: var(--ink-soft); line-height: 1.7; max-width: 60ch; margin-top: 0.85rem; }

/* green feature hero (about, services, service detail) */
.hero-band { position: relative; margin-top: var(--dl-head-total); overflow: hidden; background: var(--green-deep); color: #fff; }
.hero-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.32; }
.hero-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,44,30,0.9), rgba(18,44,30,0.55)); }
.hero-band-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 4.5rem 2rem; }
.hero-band .eyebrow { color: var(--gold-bright); }
.hero-band h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.hero-band h1 span { color: var(--gold-bright); }
.hero-band p { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 58ch; margin-top: 1rem; }
@media (max-width: 768px) { .hero-band-inner { padding: 2.75rem 1.25rem; } .hero-band p { font-size: 0.975rem; } }

/* ── SHOP: filters sidebar + product grid ── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; padding-bottom: 5rem; }
.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.shop-count { font-size: 0.925rem; color: var(--ink-muted); font-weight: 600; }
.shop-sort { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
.shop-sort select { font-family: inherit; font-size: 0.9rem; font-weight: 600; color: var(--ink); border: 1.5px solid rgba(0,0,0,0.12); background: #fff; border-radius: 10px; padding: 0.5rem 0.9rem; cursor: pointer; }
.filters { position: sticky; top: calc(var(--dl-head-total) + 1rem); background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.filter-group { padding: 0.9rem 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.filter-group:last-child { border-bottom: none; }
.filter-title { font-size: 0.775rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.75rem; }
.filter-opt { display: flex; align-items: center; gap: 0.6rem; padding: 0.3rem 0; font-size: 0.925rem; color: var(--ink-soft); cursor: pointer; }
.filter-opt input { accent-color: var(--green-deep); width: 16px; height: 16px; }
.filter-opt:hover { color: var(--green-deep); }
.filter-cats { display: flex; flex-direction: column; gap: 0.12rem; max-height: 340px; overflow-y: auto; }
.filter-cat-link { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; padding: 0.4rem 0.6rem; border-radius: 8px; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); text-decoration: none; transition: background 0.15s, color 0.15s; }
.filter-cat-link:hover { background: var(--cream-dark, #ece8df); color: var(--green-deep); }
.filter-cat-link.child { padding-left: 1.4rem; font-weight: 500; font-size: 0.88rem; color: var(--ink-muted); }
.filter-cat-link.active { background: var(--green-deep); color: #fff; }
.filter-cat-link .cnt { font-size: 0.75rem; opacity: 0.7; font-weight: 600; }
.filter-cat-link.active .cnt { opacity: 0.9; }
.filter-opt .cnt { margin-left: auto; font-size: 0.8rem; color: var(--ink-muted); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

/* light product card (shop / grids) */
.prod-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out); text-decoration: none; }
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.1); }
.prod-card-img { aspect-ratio: 4/5; overflow: hidden; position: relative; background: var(--cream-dark); }
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.prod-card:hover .prod-card-img img { transform: scale(1.05); }
.prod-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: #fff; color: var(--green-deep); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 9999px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.prod-card-img .fav-btn, .plant-card-img .fav-btn { position: absolute; top: 0.6rem; right: 0.6rem; z-index: 3; width: 2.1rem; height: 2.1rem; border-radius: 50%; border: none; background: rgba(255,255,255,0.92); box-shadow: 0 3px 10px rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.15s, background 0.15s; padding: 0; }
.prod-card-img .fav-btn svg, .plant-card-img .fav-btn svg { width: 17px; height: 17px; }
.prod-card-img .fav-btn:hover, .plant-card-img .fav-btn:hover { transform: scale(1.1); background: #fff; }
.fav-btn svg { fill: none; stroke: #6b6b6b; stroke-width: 2; transition: fill 0.15s, stroke 0.15s; }
.fav-btn:hover svg { stroke: #c0392b; }
.fav-btn.is-fav svg { fill: #c0392b; stroke: #c0392b; }
.prod-body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.prod-name { font-size: 1.02rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.prod-latin { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.15rem; font-style: italic; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.9rem; }
.prod-price { font-size: 1.25rem; font-weight: 800; color: var(--green-deep); white-space: nowrap; }
.prod-price small { font-size: 0.8rem; font-weight: 600; color: var(--ink-muted); }
.prod-price del { font-size: 0.85rem; font-weight: 600; color: var(--ink-muted); margin-left: 0.35rem; text-decoration: line-through; }
.prod-badge-sale { background: #c0392b; color: #fff; box-shadow: 0 4px 12px rgba(192,57,43,0.28); }
.prod-add { width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--green-deep); color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, transform 0.2s; flex-shrink: 0; }
.prod-add:hover { background: var(--green-mid); transform: scale(1.08); }

.mobile-filter-btn { display: none; }
    .filter-close { display: none; }
    .filter-drawer-title { display: none; }
    @media (max-width: 900px) { .filter-close { display: flex; position: absolute; top: 0.7rem; right: 0.7rem; width: 2.3rem; height: 2.3rem; border-radius: 10px; border: none; background: var(--cream-dark); color: var(--ink); align-items: center; justify-content: center; cursor: pointer; z-index: 2; } .filter-drawer-title { display: block; position: absolute; top: 1rem; left: 1.25rem; font-weight: 800; font-size: 1.05rem; color: var(--ink); } }
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: 0; z-index: 340; border-radius: 0; transform: translateX(-100%); transition: transform 0.3s var(--ease-out); overflow-y: auto; max-width: 340px; box-shadow: 0 0 40px rgba(0,0,0,0.3); padding-top: 3.75rem; }
  .shop-sort { width: 100%; justify-content: space-between; }
  .filters.open { transform: translateX(0); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .mobile-filter-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--green-deep); color: #fff; border: none; border-radius: 10px; padding: 0.6rem 1rem; font-family: inherit; font-weight: 700; font-size: 0.9rem; cursor: pointer; }
  .prod-body { padding: 0.8rem 0.85rem 0.9rem; }
  .prod-name { font-size: 0.925rem; }
  /* Narrow cards: keep the price on one line, let the add button drop to its own row */
  .prod-foot { flex-wrap: wrap; gap: 0.5rem; }
  .prod-price { font-size: 1.08rem; }
  .prod-price small { font-size: 0.72rem; }
  .prod-price del { font-size: 0.78rem; margin-left: 0.25rem; }
  .prod-add { margin-left: auto; }
}
@media (max-width: 400px) { .product-grid { gap: 0.6rem; } }

/* ── PRODUCT DETAIL ── */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-bottom: 4rem; }
.pdp-gallery { position: sticky; top: calc(var(--dl-head-total) + 1rem); }
.pdp-main-img { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-dark); }
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 0.75rem; margin-top: 0.9rem; }
.pdp-thumb { width: 78px; height: 78px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; cursor: pointer; background: var(--cream-dark); }
.pdp-thumb.active { border-color: var(--green-deep); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info h1 { font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 800; color: var(--ink); line-height: 1.12; }
.pdp-latin { font-size: 1rem; font-style: italic; color: var(--ink-muted); margin-top: 0.3rem; }
.pdp-stars { color: var(--gold-deep); margin-top: 0.6rem; font-size: 0.95rem; }
.pdp-price { font-size: 2.1rem; font-weight: 800; color: var(--green-deep); margin: 1.25rem 0; }
.pdp-price del { font-size: 1.2rem; color: var(--ink-muted); font-weight: 600; margin-left: 0.6rem; }
.pdp-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.25rem 0; }
.pdp-attr { display: flex; align-items: center; gap: 0.6rem; background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: 12px; padding: 0.7rem 0.9rem; font-size: 0.9rem; color: var(--ink-soft); }
.pdp-attr b { color: var(--ink); font-weight: 700; }
.pdp-buy { display: flex; gap: 0.85rem; align-items: center; margin: 1.5rem 0; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid rgba(0,0,0,0.14); border-radius: 12px; overflow: hidden; }
.qty button { width: 44px; height: 48px; border: none; background: #fff; font-size: 1.2rem; color: var(--ink); cursor: pointer; }
.qty button:hover { background: var(--cream-dark); }
.qty input { width: 46px; height: 48px; border: none; text-align: center; font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--ink); }
.pdp-desc { color: var(--ink-soft); line-height: 1.75; margin-top: 1.25rem; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 1.75rem; } .pdp-gallery { position: static; } .pdp-attrs { grid-template-columns: 1fr; } }

/* ── CART & CHECKOUT ── */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; padding-bottom: 4rem; }
.cart-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 1.1rem; align-items: center; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); padding: 0.9rem; margin-bottom: 0.9rem; }
.cart-line-img { width: 92px; height: 92px; border-radius: 12px; overflow: hidden; background: var(--cream-dark); }
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-weight: 700; color: var(--ink); }
.cart-line-meta { font-size: 0.85rem; color: var(--ink-muted); margin-top: 0.2rem; }
.cart-line-price { font-weight: 800; color: var(--green-deep); font-size: 1.1rem; white-space: nowrap; }
.cart-remove { background: none; border: none; color: var(--ink-muted); cursor: pointer; font-size: 0.85rem; margin-top: 0.4rem; }
.cart-remove:hover { color: #c0392b; }
.summary { position: sticky; top: calc(var(--dl-head-total) + 1rem); background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: 0 12px 34px rgba(0,0,0,0.05); }
.summary h3 { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: 1.1rem; }
.summary-row { display: flex; justify-content: space-between; padding: 0.5rem 0; color: var(--ink-soft); font-size: 0.95rem; }
.summary-total { display: flex; justify-content: space-between; padding-top: 1rem; margin-top: 0.5rem; border-top: 1px solid rgba(0,0,0,0.1); font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.summary-total span:last-child { color: var(--green-deep); }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .summary { position: static; } }

.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 2.5rem; align-items: start; padding-bottom: 4rem; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; }
.form-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.6rem; }
.form-card h3 .num { width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--green-deep); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.825rem; font-weight: 700; color: var(--ink-soft); }
.field input, .field textarea, .field select { font-family: inherit; font-size: 0.95rem; color: var(--ink); background: var(--cream); border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px; padding: 0.7rem 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
/* Dropdown angle-down icon padded symmetrically with the text (#23) */
select:not([multiple]) { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23334' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.3rem; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(68,130,67,0.14); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.pay-opt { display: flex; align-items: center; gap: 0.75rem; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 12px; padding: 0.9rem 1rem; margin-bottom: 0.7rem; cursor: pointer; transition: border-color 0.2s; }
.pay-opt:hover, .pay-opt.sel { border-color: var(--green-deep); background: rgba(68,130,67,0.04); }
.pay-opt input { accent-color: var(--green-deep); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ── ARTICLE / PROSE / LEGAL ── */
.prose { max-width: 760px; margin: 0 auto; padding-bottom: 4rem; }
.prose h2 { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin: 2rem 0 0.85rem; }
.prose h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 1.5rem 0 0.6rem; }
.prose p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.1rem; }
.prose ul, .prose ol { color: var(--ink-soft); line-height: 1.85; margin: 0 0 1.1rem 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--green-deep); font-weight: 600; }
.prose strong { color: var(--ink); }
.prose .updated { font-size: 0.875rem; color: var(--ink-muted); margin-bottom: 1.75rem; }
.article-hero-img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2rem; }

/* ── FEATURE GRIDS (about, services, contacts, portfolio) ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 1.6rem; }
.feat-card-ico { width: 3rem; height: 3rem; border-radius: 14px; background: rgba(68,130,67,0.12); color: var(--green-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feat-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; }
.feat-card p { color: var(--ink-soft); line-height: 1.65; font-size: 0.95rem; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr 1fr; } }
.stat-box { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--green-deep); letter-spacing: -0.03em; }
.stat-label { font-size: 0.875rem; color: var(--ink-muted); font-weight: 600; margin-top: 0.25rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1rem; color: #fff; font-weight: 700; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-cap { opacity: 1; }

/* section spacing helper */
.psec { padding: 3.5rem 0; }
.psec-tight { padding: 2rem 0; }
.divider-soft { border: none; border-top: 1px solid rgba(0,0,0,0.08); margin: 0; }

/* map embed */
.map-embed { width: 100%; height: 360px; border: none; border-radius: var(--radius-lg); }

/* empty state */
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state svg { color: var(--ink-muted); opacity: 0.4; }
.empty-state h3 { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin: 1rem 0 0.5rem; }
.empty-state p { color: var(--ink-muted); margin-bottom: 1.5rem; }

/* ── MINICART DRAWER ── */
.minicart-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.45); opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 300; }
.minicart-backdrop.open { opacity: 1; pointer-events: auto; }
.minicart { position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw; background: var(--cream); z-index: 301; transform: translateX(100%); transition: transform 0.35s var(--ease-out); display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.2); }
.minicart.open { transform: translateX(0); }
.minicart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; background: var(--green-deep); color: #fff; }
.minicart-head h3 { font-size: 1.1rem; font-weight: 800; }
.minicart-close { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 34px; height: 34px; border-radius: 9px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.minicart-body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.minicart-foot { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(0,0,0,0.08); background: #fff; }
.minicart-line { display: grid; grid-template-columns: 58px 1fr auto; gap: 0.85rem; align-items: stretch; padding: 0.75rem; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; margin-bottom: 0.7rem; }
.mcl-thumb img { width: 58px; height: 58px; border-radius: 10px; object-fit: cover; display: block; background: var(--cream-dark, #ece8df); }
.mcl-info { min-width: 0; }
.mcl-name { font-weight: 700; font-size: 0.92rem; color: var(--ink); line-height: 1.25; }
.mcl-variant { font-size: 0.78rem; color: var(--ink-muted); margin-top: 0.1rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mcl-qtyrow { display: flex; align-items: center; gap: 0.55rem; margin-top: 0.55rem; flex-wrap: wrap; }
.mcl-stepper { display: inline-flex; align-items: center; border: 1px solid rgba(0,0,0,0.12); border-radius: 999px; background: #fff; }
.mcl-step { width: 1.7rem; height: 1.7rem; border: none; background: transparent; color: var(--green-deep); font-size: 1rem; font-weight: 800; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 999px; transition: background 0.15s; }
.mcl-step:hover { background: var(--cream); }
.mcl-qn { min-width: 1.5rem; text-align: center; font-weight: 700; font-size: 0.85rem; }
.mcl-unit { font-size: 0.76rem; color: var(--ink-muted); }
.mcl-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 0.55rem; }
.mcl-total { font-weight: 800; font-size: 0.95rem; color: var(--green-deep); white-space: nowrap; }
.mc-remove { width: 1.9rem; height: 1.9rem; border-radius: 9px; border: none; background: var(--cream-dark, #ece8df); color: var(--ink-muted, #6b6b6b); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s, color 0.15s; flex-shrink: 0; }
.mc-remove:hover { background: #f3d6d0; color: #c0392b; }
.minicart-empty { text-align: center; padding: 2.5rem 1rem; color: var(--ink-muted); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.minicart-empty svg { color: var(--green-mid); opacity: 0.5; }
.minicart-empty p { font-weight: 700; color: var(--ink); }

/* ── PRODUCT VARIANTS (height / color) ── */
.variant-group { margin: 1.25rem 0; }
.variant-group-label { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.6rem; }
.variant-group-label span { color: var(--ink-muted); font-weight: 600; text-transform: none; letter-spacing: 0; margin-left: 0.4rem; }
.variant-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.variant-pill { font-family: inherit; font-size: 0.9rem; font-weight: 700; color: var(--ink-soft); background: #fff; border: 1.5px solid rgba(0,0,0,0.14); border-radius: 10px; padding: 0.5rem 0.85rem; cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s; text-align: center; line-height: 1.2; }
.variant-pill:hover { border-color: var(--green-deep); }
.variant-pill.active { border-color: var(--green-deep); background: rgba(68,130,67,0.08); color: var(--green-deep); }
.variant-pill small { display: block; font-size: 0.72rem; font-weight: 600; color: var(--ink-muted); margin-top: 0.12rem; }
.variant-pill.active small { color: var(--green-mid); }
.swatches { display: flex; gap: 0.55rem; align-items: center; }
.swatch { width: 2.1rem; height: 2.1rem; border-radius: 50%; cursor: pointer; border: 2px solid #fff; box-shadow: 0 0 0 1.5px rgba(0,0,0,0.15); transition: box-shadow 0.15s, transform 0.15s; }
.swatch:hover { transform: scale(1.08); }
.swatch.active { box-shadow: 0 0 0 2px var(--green-deep); }
.swatch-name { font-size: 0.875rem; font-weight: 600; color: var(--ink-soft); margin-left: 0.35rem; }

/* ── PRODUCT REVIEWS (light, on inner pages) ── */
.pr-reviews { padding-bottom: 4rem; }
.pr-summary { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 2rem; margin: 1.75rem 0 2rem; }
.pr-score { text-align: center; padding-right: 2.5rem; border-right: 1px solid rgba(0,0,0,0.08); }
.pr-score-num { font-size: 3.2rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.pr-score-stars { color: var(--gold-deep); font-size: 1.1rem; letter-spacing: 0.05em; margin: 0.45rem 0 0.25rem; }
.pr-score-count { font-size: 0.85rem; color: var(--ink-muted); font-weight: 600; }
.pr-bars { display: flex; flex-direction: column; gap: 0.45rem; }
.pr-bar { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.pr-bar-star { width: 2.6rem; white-space: nowrap; }
.pr-bar-track { flex: 1; height: 8px; background: var(--cream-dark); border-radius: 9999px; overflow: hidden; }
.pr-bar-fill { height: 100%; background: var(--gold-deep); border-radius: 9999px; }
.pr-bar-pct { width: 2.6rem; text-align: right; color: var(--ink-muted); }
.pr-list { display: flex; flex-direction: column; gap: 1rem; }
.pr-review { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); padding: 1.35rem 1.5rem; }
.pr-review-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.65rem; }
.pr-avatar { width: 2.6rem; height: 2.6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.pr-review-name { font-weight: 700; color: var(--ink); line-height: 1.2; }
.pr-review-date { font-size: 0.8rem; color: var(--ink-muted); }
.pr-review-stars { color: var(--gold-deep); font-size: 0.85rem; letter-spacing: 0.04em; margin-left: auto; }
.pr-review-verified { font-size: 0.75rem; font-weight: 700; color: var(--green-mid); display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.15rem; }
.pr-review-text { color: var(--ink-soft); line-height: 1.7; }
.pr-more { margin-top: 1.5rem; text-align: center; }
@media (max-width: 640px) { .pr-summary { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; } .pr-score { padding-right: 0; border-right: none; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.08); } }

/* Conținut WYSIWYG (articole/portofoliu): imagini responsive + clear float-uri aliniate */
.article-body img, .pr-text img { max-width: 100%; height: auto; }
.article-body::after, .pr-text::after { content: ""; display: table; clear: both; }
@media (max-width: 560px) {
  .article-body img[style*="float"], .pr-text img[style*="float"] { float: none !important; display: block !important; margin: .6rem auto !important; width: 100% !important; }
}
