/*
 * Cattressi — Shared Theme Styles
 * Extracted from mockup index.html inline CSS
 * Contains: design tokens, header, footer, nav, and all homepage component styles
 */

  /* ==============================================
     CATTRESSI — DESIGN TOKENS
     ============================================== */
  :root {
    --c-cream:      #F5EDE4;
    --c-cream-soft: #FAF4EE;
    --c-pink:       #F5E1D8;
    --c-brown:      #5C2E0E;
    --c-brown-dk:   #3D1E08;
    --c-black:      #0A0A0A;
    --c-charcoal:   #1A1A1A;
    --c-white:      #FFFFFF;
    --c-line:       #E5D9CC;
    --c-muted:      #8B7B6E;

    --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1440px;
    --gutter: clamp(1.25rem, 3vw, 2.5rem);
  }

  *,
  *::before,
  *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--f-body);
    color: var(--c-brown-dk);
    background: var(--c-cream);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img { max-width: 100%; display: block; }

  a { color: inherit; text-decoration: none; transition: opacity .25s ease, color .25s ease; }
  a:hover { opacity: .7; }

  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  /* ==============================================
     ANNOUNCEMENT BAR — Best Brilliance style
     ============================================== */
  .announcement {
    background: var(--c-black);
    color: var(--c-cream);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 9px var(--gutter);
  }
  .announcement-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
  }
  .announcement-spacer { /* invisible left column for balance */ }
  .announcement-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .announcement-item { white-space: nowrap; }
  .announcement-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
  }
  .announcement-links a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--c-cream);
  }
  .announcement-links svg { width: 13px; height: 13px; }

  /* ==============================================
     HEADER — Best Brilliance style (LIGHT)
     ============================================== */
  .site-header {
    background: var(--c-cream);
    color: var(--c-brown-dk);
    border-bottom: 1px solid var(--c-line);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 26px var(--gutter);
    gap: 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
  }
  .header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-brown-dk);
  }
  .header-right { justify-content: flex-end; }
  .header-logo {
    text-align: center;
    color: var(--c-brown-dk);
    line-height: 0;
  }
  .header-logo img,
  .header-logo svg {
    height: 44px;
    width: auto;
    margin: 0 auto;
    display: block;
    color: inherit;
  }
  .header-icon {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--c-brown-dk);
  }
  .header-icon svg { width: 19px; height: 19px; stroke: var(--c-brown-dk); }
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--c-brown-dk);
  }
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 9px 18px;
    border: 1px solid var(--c-brown-dk);
    color: var(--c-brown-dk);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: all .25s ease;
  }
  .header-cta:hover {
    background: var(--c-brown-dk);
    color: var(--c-cream);
    opacity: 1;
  }
  .currency-select {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: 12px;
    letter-spacing: .14em;
    cursor: pointer;
    color: var(--c-brown-dk);
  }
  .currency-select::after {
    content: "▾";
    font-size: 9px;
    margin-left: 2px;
  }

  .cart-count {
    background: var(--c-brown-dk);
    color: var(--c-cream);
    font-size: 10px;
    font-weight: 600;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
  }

  /* ==============================================
     MAIN NAVIGATION — Best Brilliance style (LIGHT)
     ============================================== */
  .main-nav {
    background: var(--c-cream);
    color: var(--c-brown-dk);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
  }
  .main-nav-inner {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 16px var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
  }
  .nav-item {
    position: relative;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 4px 0;
    color: var(--c-brown-dk);
  }
  .nav-item > a { color: var(--c-brown-dk); }
  .nav-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--c-brown-dk);
    transition: all .3s ease;
    transform: translateX(-50%);
  }
  .nav-item:hover::after { width: 100%; }

  /* WordPress wp_nav_menu() compatibility — make .menu / .menu-item behave like our custom classes */
  .main-nav .main-nav-list,
  .main-nav ul.menu {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 16px var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
    list-style: none;
    align-items: center;
  }
  .main-nav .menu-item {
    position: relative;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 4px 0;
    color: var(--c-brown-dk);
    list-style: none;
  }
  .main-nav .menu-item > a {
    color: var(--c-brown-dk);
    text-decoration: none;
  }
  .main-nav .menu-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--c-brown-dk);
    transition: all .3s ease;
    transform: translateX(-50%);
  }
  .main-nav .menu-item:hover::after {
    width: 100%;
  }
  .main-nav .menu-item.current-menu-item > a {
    font-weight: 500;
  }
  /* Hide the wp_nav_menu default container if somehow present */
  .main-nav > .menu-items { display: contents; }

  /* Safety: ensure any ul inside .main-nav is always flexed horizontally */
  .main-nav ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 16px var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
  }
  .main-nav ul li {
    position: relative;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 4px 0;
    list-style: none;
    margin: 0;
  }
  .main-nav ul li > a {
    color: var(--c-brown-dk);
    text-decoration: none;
  }
  .main-nav ul li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--c-brown-dk);
    transition: all .3s ease;
    transform: translateX(-50%);
  }
  .main-nav ul li:hover::after {
    width: 100%;
  }

  /* mega panel */
  .mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--c-white);
    color: var(--c-brown-dk);
    width: min(1100px, 92vw);
    padding: 2.5rem 3rem;
    box-shadow: 0 30px 60px rgba(10,10,10,0.18);
    opacity: 0;
    visibility: hidden;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    z-index: 50;
    border-top: 1px solid var(--c-line);
  }
  .nav-item:hover .mega-panel,
  .nav-item:focus-within .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
  .mega-col h4 {
    font-family: var(--f-body);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--c-muted);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--c-line);
  }
  .mega-list {
    list-style: none;
    display: grid;
    gap: .85rem;
  }
  .mega-list a {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
  }
  .mega-shape {
    width: 28px; height: 28px;
    border: 1px solid var(--c-line);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-white);
    flex-shrink: 0;
    overflow: hidden;
  }
  .mega-shape svg { width: 16px; height: 16px; fill: var(--c-brown-dk); }
  .mega-shape img { width: 70%; height: 70%; object-fit: contain; }

  /* ==============================================
     HERO — Split layout: text left + video right (narrow)
     ============================================== */
  .hero {
    position: relative;
    background: var(--c-cream);
    color: var(--c-brown-dk);
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
    min-height: 78vh;
    max-width: var(--container);
    margin: 0 auto;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--c-muted);
    font-weight: 500;
    opacity: 0;
    animation: fadeUp .9s .15s ease forwards;
  }
  .hero h1 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.005em;
    color: var(--c-brown-dk);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 1s .3s ease forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--c-brown);
    font-weight: 300;
  }
  .hero p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 2.5rem;
    color: var(--c-brown-dk);
    opacity: 0;
    animation: fadeUp 1s .5s ease forwards;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s .7s ease forwards;
  }
  .btn-hero {
    display: inline-block;
    padding: 15px 38px;
    background: var(--c-brown-dk);
    color: var(--c-cream);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--c-brown-dk);
    transition: all .3s ease;
  }
  .btn-hero:hover {
    background: transparent;
    color: var(--c-brown-dk);
    opacity: 1;
  }
  .btn-hero-outline {
    display: inline-block;
    padding: 15px 38px;
    background: transparent;
    color: var(--c-brown-dk);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--c-brown-dk);
    transition: all .3s ease;
  }
  .btn-hero-outline:hover {
    background: var(--c-brown-dk);
    color: var(--c-cream);
    opacity: 1;
  }

  .hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    background: var(--c-cream);
  }
  .hero-media-inner {
    width: 693px;
    height: 600px;
    max-width: 100%;
    overflow: hidden;
    background: var(--c-pink);
    position: relative;
  }
  .hero-media video,
  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--c-cream);
    color: var(--c-black);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--c-cream);
    transition: all .3s ease;
  }
  .btn:hover {
    background: transparent;
    color: var(--c-cream);
    opacity: 1;
  }
  .btn-dark {
    background: var(--c-black);
    color: var(--c-cream);
    border-color: var(--c-black);
  }
  .btn-dark:hover {
    background: transparent;
    color: var(--c-black);
  }
  .btn-outline {
    background: transparent;
    color: var(--c-brown-dk);
    border-color: var(--c-brown-dk);
  }
  .btn-outline:hover {
    background: var(--c-brown-dk);
    color: var(--c-cream);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ==============================================
     TRUSTPILOT BAR
     ============================================== */
  .trustpilot {
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-line);
    padding: 18px var(--gutter);
  }
  .trustpilot-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--c-brown-dk);
    letter-spacing: .02em;
  }
  .trustpilot-rating {
    font-weight: 600;
    letter-spacing: .02em;
  }
  .trustpilot-stars {
    display: inline-flex;
    gap: 2px;
  }
  .trustpilot-star {
    width: 22px;
    height: 22px;
    background: #00B67A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .trustpilot-star svg {
    width: 14px;
    height: 14px;
    fill: var(--c-white);
  }
  .trustpilot-logo {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-weight: 600;
    color: var(--c-brown-dk);
  }
  .trustpilot-logo-icon {
    width: 16px;
    height: 16px;
    background: #00B67A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .trustpilot-logo-icon svg { width: 11px; height: 11px; fill: var(--c-white); }
  .trustpilot-count {
    color: var(--c-muted);
    font-size: 12px;
  }
  .trustpilot-sep {
    color: var(--c-line);
  }

  /* ==============================================
     BRAND INTRO
     ============================================== */
  .brand-intro {
    background: var(--c-cream);
    padding: clamp(4rem, 7vw, 6rem) var(--gutter);
    text-align: center;
  }
  .brand-intro-inner {
    max-width: 820px;
    margin: 0 auto;
  }
  .brand-intro h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--c-brown-dk);
    margin-bottom: 1.75rem;
  }
  .brand-intro h2 em {
    font-style: italic;
    color: var(--c-brown);
  }
  .brand-intro p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--c-brown-dk);
    opacity: .85;
    margin-bottom: 1.25rem;
  }
  .brand-intro p:last-child { margin-bottom: 0; }

  /* ==============================================
     PRODUCT CAROUSEL (Best Brilliance style)
     ============================================== */
  .carousel-section {
    background: var(--c-cream);
    padding-bottom: clamp(4rem, 8vw, 7rem);
    position: relative;
  }
  .carousel-wrap {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .carousel-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .carousel-track::-webkit-scrollbar { display: none; }

  .carousel-card {
    flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
    scroll-snap-align: start;
    background: var(--c-white);
    position: relative;
    cursor: pointer;
    transition: transform .4s ease;
  }
  .carousel-card:hover { transform: translateY(-4px); }
  .carousel-card-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--c-pink);
    border: 1px solid var(--c-line);
  }
  .carousel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.6,.2,1);
  }
  .carousel-card:hover .carousel-card-img img { transform: scale(1.05); }
  .carousel-card-label {
    padding: 1.25rem 0.5rem 0.5rem;
    text-align: center;
  }
  .carousel-card-label h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--c-brown-dk);
    margin-bottom: .5rem;
  }
  .carousel-card-label .shop-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c-brown);
    padding-bottom: 2px;
    border-bottom: 1px solid var(--c-brown);
  }

  /* Arrows */
  .carousel-arrows {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    max-width: var(--container);
    margin: 0 auto 1.5rem;
    padding: 0 var(--gutter);
  }
  .carousel-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--c-brown-dk);
    color: var(--c-brown-dk);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
  }
  .carousel-arrow:hover {
    background: var(--c-brown-dk);
    color: var(--c-cream);
  }
  .carousel-arrow svg { width: 18px; height: 18px; }

  /* ==============================================
     SECTION INTRO / CATEGORY TILES
     ============================================== */
  .section {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
  }
  .section-eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .section-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--c-brown-dk);
    margin-bottom: 1.25rem;
  }
  .section-title em { font-style: italic; color: var(--c-brown); }
  .section-lead {
    font-size: 1rem;
    color: var(--c-muted);
    max-width: 580px;
    margin: 0 auto;
  }

  /* category carousel */
  .category-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 0 var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
  }
  .cat-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--c-pink);
    cursor: pointer;
  }
  .cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.6,.2,1);
  }
  .cat-card:hover img { transform: scale(1.06); }
  .cat-card-label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(10,10,10,0.65));
    color: var(--c-cream);
  }
  .cat-card-label h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 1.65rem;
    line-height: 1.1;
  }

  /* ==============================================
     APPOINTMENT BANNER — Best Brilliance "Let's find your diamond together"
     ============================================== */
  .appointment {
    position: relative;
    background:
      linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.55) 100%),
      url('assets/photos/marina-earrings.jpg') center 30%/cover no-repeat;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--c-cream);
    padding: 4rem var(--gutter);
  }
  .appointment-content {
    max-width: 640px;
    margin: 0 auto;
  }
  .appointment-eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: .9;
  }
  .appointment h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .appointment h2 em { font-style: italic; color: var(--c-pink); }
  .appointment p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    opacity: .9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .appointment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: 16px 32px;
    background: transparent;
    color: var(--c-cream);
    border: 1px solid var(--c-cream);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all .3s ease;
  }
  .btn-whatsapp:hover {
    background: var(--c-cream);
    color: var(--c-brown-dk);
    opacity: 1;
  }
  .btn-whatsapp svg { width: 15px; height: 15px; fill: currentColor; transition: fill .3s ease; }
  .btn-appointment {
    display: inline-block;
    padding: 16px 32px;
    background: var(--c-cream);
    color: var(--c-black);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--c-cream);
    transition: all .3s ease;
  }
  .btn-appointment:hover {
    background: transparent;
    color: var(--c-cream);
    opacity: 1;
  }

  /* ==============================================
     STORY (two blocks side by side)
     ============================================== */
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .story-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--c-pink);
  }
  .story-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, 4vw, 3.5rem);
    color: var(--c-cream);
  }
  .story-overlay h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .story-overlay h3 em { font-style: italic; color: var(--c-pink); }
  .story-overlay p {
    font-size: .95rem;
    max-width: 380px;
    margin-bottom: 1.5rem;
    opacity: .92;
  }
  .story-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--c-cream);
    padding-bottom: 4px;
    align-self: flex-start;
  }

  /* ==============================================
     PROMISE (full width)
     ============================================== */
  .promise {
    background: var(--c-pink);
    color: var(--c-brown-dk);
    text-align: center;
    padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  }
  .promise-inner {
    max-width: 820px;
    margin: 0 auto;
  }
  .promise h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 2rem;
  }
  .promise h2 em { font-style: italic; }
  .promise p {
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    color: var(--c-brown-dk);
    opacity: .85;
  }
  .promise p:last-of-type { margin-bottom: 2.5rem; }

  /* Pictogram grid inside Promise section */
  .promise-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 3.5rem auto 3rem;
  }
  .promise-pillar {
    text-align: center;
    padding: 0 .5rem;
  }
  .promise-pillar-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brown);
  }
  .promise-pillar-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .promise-pillar h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--c-brown-dk);
    margin-bottom: .5rem;
    line-height: 1.15;
  }
  .promise-pillar p {
    font-size: .82rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: .7;
    letter-spacing: .01em;
  }

  /* ==============================================
     SHOP BY SHAPE
     ============================================== */
  .shapes-row {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .shape-item {
    text-align: center;
    cursor: pointer;
    transition: transform .3s ease;
    display: block;
  }
  .shape-item:hover { transform: translateY(-4px); opacity: 1; }
  .shape-icon {
    width: 100%;
    aspect-ratio: 1;
    max-width: 120px;
    margin: 0 auto 1rem;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all .3s ease;
  }
  .shape-item:hover .shape-icon {
    border-color: var(--c-brown);
    box-shadow: 0 8px 24px rgba(92, 46, 14, 0.12);
  }
  .shape-icon img {
    width: 64%;
    height: 64%;
    object-fit: contain;
    transition: transform .4s ease;
  }
  .shape-item:hover .shape-icon img { transform: scale(1.08); }
  .shape-label {
    font-size: 13px;
    color: var(--c-brown-dk);
    letter-spacing: .04em;
    font-weight: 400;
  }

  /* ==============================================
     SHOP BY STYLE
     ============================================== */
  .styles-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .style-card {
    position: relative;
    background: transparent;
    cursor: pointer;
    display: block;
    text-align: center;
    transition: transform .3s ease;
  }
  .style-card:hover { transform: translateY(-4px); opacity: 1; }
  .style-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    transition: all .3s ease;
  }
  .style-card:hover .style-card-img {
    border-color: var(--c-brown);
    box-shadow: 0 8px 24px rgba(92, 46, 14, 0.12);
  }
  .style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.6,.2,1);
  }
  .style-card:hover img { transform: scale(1.06); }
  .style-card-label {
    padding: 1.25rem 0.5rem 0.5rem;
    font-family: var(--f-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--c-brown-dk);
    line-height: 1.1;
  }

  /* ==============================================
     TRUST PILLARS
     ============================================== */
  .trust {
    background: var(--c-charcoal);
    color: var(--c-cream);
    padding: clamp(4rem, 7vw, 6rem) 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .trust-item {
    text-align: center;
    padding: 0 1rem;
  }
  .trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-icon svg { width: 100%; height: 100%; stroke: var(--c-cream); fill: none; stroke-width: 1.2; }
  .trust-item h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 1.65rem;
    margin-bottom: 1rem;
  }
  .trust-item p {
    font-size: .95rem;
    opacity: .8;
    max-width: 320px;
    margin: 0 auto;
  }

  /* ==============================================
     BESPOKE (split layout: image + text)
     ============================================== */
  .bespoke {
    background: var(--c-cream);
    overflow: hidden;
  }
  .bespoke-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    max-width: var(--container);
    margin: 0 auto;
  }
  .bespoke-image {
    position: relative;
    overflow: hidden;
    background: var(--c-pink);
  }
  .bespoke-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.6,.2,1);
  }
  .bespoke:hover .bespoke-image img { transform: scale(1.04); }
  .bespoke-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    background: var(--c-cream);
  }
  .bespoke-content .section-eyebrow {
    margin-bottom: 1rem;
  }
  .bespoke-content h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--c-brown-dk);
    margin-bottom: 1.5rem;
  }
  .bespoke-content h2 em { font-style: italic; color: var(--c-brown); }
  .bespoke-content p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--c-brown-dk);
    opacity: .85;
    margin-bottom: 1.25rem;
    max-width: 480px;
  }
  .bespoke-content p:last-of-type { margin-bottom: 2.25rem; }
  .bespoke-content .btn-outline {
    align-self: flex-start;
  }

  /* ==============================================
     TESTIMONIALS (horizontal scroll with photos)
     ============================================== */
  .testimonials {
    background: var(--c-cream-soft);
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
  }
  .testimonials-arrows {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    max-width: var(--container);
    margin: 2.5rem auto 1.5rem;
    padding: 0 var(--gutter);
  }
  .testimonials-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--c-brown-dk);
    color: var(--c-brown-dk);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
  }
  .testimonials-arrow:hover {
    background: var(--c-brown-dk);
    color: var(--c-cream);
  }
  .testimonials-arrow svg { width: 18px; height: 18px; }

  .testimonials-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }

  .testimonial {
    flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
    scroll-snap-align: start;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .4s ease;
  }
  .testimonial:hover { transform: translateY(-4px); }
  .testimonial-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--c-pink);
  }
  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.6,.2,1);
  }
  .testimonial:hover .testimonial-image img { transform: scale(1.04); }
  .testimonial-body {
    padding: 2rem 1.75rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .testimonial-stars {
    color: var(--c-brown);
    margin-bottom: 1rem;
    letter-spacing: .15em;
    font-size: .95rem;
  }
  .testimonial p {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--c-brown-dk);
    margin-bottom: 1.5rem;
    flex: 1;
  }
  .testimonial-author {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-muted);
    font-weight: 500;
  }

  /* ==============================================
     NEWSLETTER
     ============================================== */
  .newsletter {
    background: var(--c-brown);
    color: var(--c-cream);
    padding: clamp(4rem, 7vw, 6rem) var(--gutter);
    text-align: center;
  }
  .newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
  }
  .newsletter h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
  }
  .newsletter p {
    margin-bottom: 2rem;
    opacity: .85;
  }
  .newsletter-form {
    display: flex;
    border: 1px solid rgba(245, 237, 228, 0.4);
  }
  .newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--c-cream);
    font-family: inherit;
    font-size: 14px;
    outline: none;
  }
  .newsletter-form input::placeholder { color: rgba(245, 237, 228, 0.6); }
  .newsletter-form button {
    background: var(--c-cream);
    color: var(--c-brown);
    padding: 0 32px;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: opacity .3s ease;
  }
  .newsletter-form button:hover { opacity: .85; }

  /* ==============================================
     FOOTER
     ============================================== */
  .site-footer {
    background: var(--c-black);
    color: var(--c-cream);
    padding: 5rem var(--gutter) 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    max-width: var(--container);
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(245, 237, 228, 0.1);
  }
  .footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 1.5rem;
  }
  .footer-brand p {
    font-size: .9rem;
    opacity: .7;
    max-width: 280px;
    margin-bottom: 1.75rem;
  }
  .footer-social {
    display: flex;
    gap: .75rem;
    align-items: center;
  }
  .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(245, 237, 228, 0.25);
    color: var(--c-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
  }
  .footer-social a:hover {
    background: var(--c-cream);
    color: var(--c-black);
    border-color: var(--c-cream);
    opacity: 1;
  }
  .footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
  .footer-col h4 {
    font-family: var(--f-body);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--c-pink);
    margin-bottom: 1.5rem;
  }
  .footer-col ul {
    list-style: none;
    display: grid;
    gap: .75rem;
  }
  .footer-col ul a {
    font-size: .9rem;
    opacity: .8;
  }
  .footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    opacity: .6;
  }
  .footer-payments {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .footer-payments span {
    background: rgba(245,237,228,0.1);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: .75rem;
    letter-spacing: .1em;
  }

  /* ==============================================
     RESPONSIVE
     ============================================== */
  /* ==============================================
     RESPONSIVE — TABLET (1100px and below)
     ============================================== */
  @media (max-width: 1100px) {
    .styles-grid { grid-template-columns: repeat(3, 1fr); }
    .shapes-row  { grid-template-columns: repeat(5, 1fr); }
    .category-row { grid-template-columns: repeat(2, 1fr); }
    .carousel-card { flex: 0 0 calc((100% - 2 * 1.25rem) / 3); }
    .promise-pillars { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }

    /* Testimonials: 2 cards visible */
    .testimonial { flex: 0 0 calc((100% - 1.5rem) / 2); }

    /* Hero: make video sized to column on tablet */
    .hero-media-inner { width: 100%; height: auto; aspect-ratio: 7/6; max-width: 560px; }

    /* Main nav: slightly tighter */
    .main-nav-inner { gap: 1.75rem; }
  }

  /* ==============================================
     RESPONSIVE — MOBILE (768px and below)
     ============================================== */
  @media (max-width: 768px) {

    /* ---- ANNOUNCEMENT BAR ---- */
    .announcement { font-size: 10px; padding: 8px var(--gutter); letter-spacing: .1em; }
    .announcement-inner { grid-template-columns: 1fr; }
    .announcement-spacer, .announcement-links { display: none; }
    .announcement-track { gap: 1.25rem; justify-content: center; }

    /* ---- HEADER ---- */
    .site-header { position: static; }  /* avoid sticky on mobile, saves vertical space */
    .header-inner { grid-template-columns: auto 1fr auto; padding: 14px var(--gutter); gap: .75rem; }
    .header-left { gap: .5rem; }
    .header-left .header-icon { display: none; }
    .header-right { gap: .85rem; }
    .header-right .header-cta,
    .header-right .currency-select,
    .header-right [aria-label="Cont"],
    .header-right [aria-label="Suport"] { display: none; }
    .header-logo img,
    .header-logo svg { height: 30px; }

    /* ---- MAIN NAV (horizontal scroll) ---- */
    .main-nav-inner {
      gap: 1.5rem;
      overflow-x: auto;
      padding: 12px var(--gutter);
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
    }
    .main-nav-inner::-webkit-scrollbar { display: none; }
    .nav-item { white-space: nowrap; font-size: 11px; letter-spacing: .12em; }
    .mega-panel { display: none; }

    /* ---- HERO (stack: text + video) ---- */
    .hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .hero-media { order: 1; padding: 0; background: var(--c-cream); }
    .hero-media-inner {
      width: 100%;
      height: auto;
      aspect-ratio: 1;
      max-width: 100%;
    }
    .hero-text { order: 2; padding: 2.75rem var(--gutter) 3.5rem; }
    .hero h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
    .hero p { max-width: none; }
    .hero-actions { justify-content: flex-start; }
    .btn-hero, .btn-hero-outline { padding: 14px 28px; width: 100%; max-width: 320px; text-align: center; }

    /* ---- TRUSTPILOT ---- */
    .trustpilot { padding: 14px var(--gutter); }
    .trustpilot-inner { font-size: 11px; gap: .5rem; flex-wrap: wrap; justify-content: center; }
    .trustpilot-star { width: 18px; height: 18px; }
    .trustpilot-star svg { width: 11px; height: 11px; }
    .trustpilot-sep { display: none; }
    .trustpilot-count { width: 100%; text-align: center; font-size: 11px; }

    /* ---- BRAND INTRO ---- */
    .brand-intro { padding: 3.5rem var(--gutter); }
    .brand-intro h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); margin-bottom: 1.25rem; }
    .brand-intro p { font-size: .95rem; }

    /* ---- CAROUSEL ---- */
    .carousel-section { padding-bottom: 3rem; }
    .carousel-arrows { display: none; }  /* hide arrows on mobile, users swipe */
    .carousel-wrap { padding: 0 0 0 var(--gutter); }  /* show peek on right */
    .carousel-track { gap: .75rem; padding-right: var(--gutter); }
    .carousel-card { flex: 0 0 72%; }
    .carousel-card-label h3 { font-size: 1.25rem; }

    /* ---- LET'S FIND YOUR DIAMOND (appointment) ---- */
    .appointment { min-height: auto; padding: 3.5rem var(--gutter); }
    .appointment h2 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
    .appointment-actions { gap: .75rem; flex-direction: column; align-items: stretch; }
    .btn-appointment, .btn-whatsapp { justify-content: center; padding: 14px 28px; }

    /* ---- STORY (stack) ---- */
    .story-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0 var(--gutter); }
    .story-card { aspect-ratio: 4/5; }
    .story-overlay { padding: 2rem 1.5rem; }
    .story-overlay h3 { font-size: clamp(1.65rem, 6vw, 2rem); }
    .story-overlay p { font-size: .9rem; }

    /* ---- PROMISE ---- */
    .promise { padding: 3.5rem var(--gutter); }
    .promise h2 { font-size: clamp(1.85rem, 7vw, 2.5rem); margin-bottom: 1rem; }
    .promise-pillars { margin: 2.5rem 0; gap: 2rem 1rem; }
    .promise-pillar { padding: 0; }
    .promise-pillar-icon { width: 44px; height: 44px; margin-bottom: 1rem; }
    .promise-pillar h3 { font-size: 1.05rem; }
    .promise-pillar p { font-size: .78rem; }

    /* ---- SHOP BY SHAPE ---- */
    .section { padding: 3.5rem 0; }
    .section-head { margin-bottom: 2.5rem; padding: 0 var(--gutter); }
    .section-title { font-size: clamp(1.75rem, 6.5vw, 2.5rem); }
    .shapes-row  { grid-template-columns: repeat(3, 1fr); gap: 1rem .5rem; }
    .shape-icon { max-width: 90px; }
    .shape-label { font-size: 12px; }

    /* ---- SHOP BY STYLE ---- */
    .styles-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .style-card-label { font-size: 1.15rem; padding: 1rem .25rem .25rem; }

    /* ---- TRUST PILLARS ---- */
    .trust { padding: 3.5rem 0; }
    .trust-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 var(--gutter); }
    .trust-item { padding: 0; }

    /* ---- BESPOKE (stack) ---- */
    .bespoke-grid { grid-template-columns: 1fr; min-height: auto; }
    .bespoke-image { aspect-ratio: 4/5; }
    .bespoke-content { padding: 3rem var(--gutter); text-align: left; }
    .bespoke-content h2 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
    .bespoke-content .btn-outline { align-self: stretch; text-align: center; width: 100%; max-width: 320px; }

    /* ---- TESTIMONIALS ---- */
    .testimonials { padding: 3.5rem 0; }
    .testimonials-arrows { display: none; }  /* hide arrows, users swipe */
    .testimonials-wrap { padding: 0 0 0 var(--gutter); }
    .testimonials-track { gap: 1rem; padding-right: var(--gutter); }
    .testimonial { flex: 0 0 78%; }
    .testimonial-body { padding: 1.75rem 1.5rem; }
    .testimonial p { font-size: 1rem; }

    /* ---- NEWSLETTER ---- */
    .newsletter { padding: 3.5rem var(--gutter); }
    .newsletter h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .newsletter-form { flex-direction: column; border: none; gap: .75rem; }
    .newsletter-form input {
      border: 1px solid rgba(245, 237, 228, 0.4);
      padding: 14px 18px;
      font-size: 14px;
    }
    .newsletter-form button {
      padding: 14px 28px;
      width: 100%;
    }

    /* ---- FOOTER ---- */
    .site-footer { padding: 3rem var(--gutter) 0; }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding-bottom: 2.5rem;
    }
    .footer-brand { text-align: center; }
    .footer-brand img { margin-left: auto; margin-right: auto; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .footer-col h4 { margin-bottom: 1rem; }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      padding: 1.5rem 0;
    }
    .footer-payments { justify-content: center; flex-wrap: wrap; gap: .5rem; }
    .footer-payments span { font-size: .7rem; padding: 5px 10px; }
  }

  /* ==============================================
     RESPONSIVE — NARROW PHONES (480px and below)
     ============================================== */
  @media (max-width: 480px) {
    :root { --gutter: 1rem; }

    /* Tighten announcement to single message */
    .announcement-track .announcement-item:nth-child(2) { display: none; }

    /* Header even tighter */
    .header-logo img, .header-logo svg { height: 26px; }
    .header-inner { padding: 12px var(--gutter); gap: .5rem; }

    /* Hero text tighter */
    .hero-text { padding: 2.25rem var(--gutter) 2.75rem; }
    .hero h1 { font-size: clamp(1.75rem, 10vw, 2.35rem); margin-bottom: 1.25rem; }
    .hero-eyebrow { margin-bottom: 1rem; font-size: 10px; }
    .hero p { font-size: .95rem; margin-bottom: 1.75rem; }

    /* Shop by Shape: still 3 cols but smaller */
    .shape-icon { max-width: 72px; }
    .shape-label { font-size: 11px; }

    /* Styles: still 2 cols */
    .style-card-label { font-size: 1rem; }

    /* Promise pillars tighter */
    .promise-pillar h3 { font-size: .95rem; }
    .promise-pillar p { font-size: .72rem; }

    /* Testimonials text smaller */
    .testimonial p { font-size: .95rem; }
  }


/* ============================================================
   SECONDARY PAGES — appended by build script
   ============================================================ */

/* ============================================================
   PAGE: Despre noi (from mockup/about.html)
   ============================================================ */

/* ==============================================
   DESPRE NOI — Page-specific styles
   ============================================== */

/* BREADCRUMB (shared by all secondary pages) */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO — split layout with image on right */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* PAGE CONTENT (shared container wrapper) */
.page-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.page-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Shared button style (reused from homepage) */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles below */

/* Our Story section */
.about-story {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-story-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--c-pink);
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story-content h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--c-brown-dk);
}
.about-story-content h2 em { font-style: italic; color: var(--c-brown); }
.about-story-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: var(--c-brown-dk);
  opacity: .9;
}
.about-story-content .signature {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  margin-top: 2rem;
  color: var(--c-brown);
}

/* Values grid */
.about-values {
  background: var(--c-cream-soft);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.values-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: 0 var(--gutter);
}
.values-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
}
.values-head h2 em { font-style: italic; color: var(--c-brown); }
.values-head p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: .8;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.value-item {
  text-align: center;
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--c-brown);
}
.value-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-item h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: var(--c-brown-dk);
}
.value-item p {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--c-brown-dk);
  opacity: .75;
}

/* Timeline */
.about-timeline {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.timeline-head {
  text-align: center;
  margin-bottom: 4rem;
}
.timeline-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-brown-dk);
}
.timeline-head h2 em { font-style: italic; color: var(--c-brown); }
.timeline {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--c-line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 75px;
  top: 2.3rem;
  width: 11px;
  height: 11px;
  background: var(--c-brown);
  border-radius: 50%;
  z-index: 1;
}
.timeline-year {
  font-family: var(--f-display);
  font-size: 1.75rem;
  color: var(--c-brown);
  font-weight: 500;
}
.timeline-content h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: .5rem;
  color: var(--c-brown-dk);
}
.timeline-content p {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--c-brown-dk);
  opacity: .8;
}

/* CTA banner */
.about-cta {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}
.about-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-cta h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.about-cta h2 em { font-style: italic; opacity: .85; }
.about-cta p {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.about-cta .btn {
  background: var(--c-cream);
  color: var(--c-brown-dk);
  border-color: var(--c-cream);
}
.about-cta .btn:hover {
  background: transparent;
  color: var(--c-cream);
}

/* Responsive */
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
}
@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline::before { left: 15px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .timeline-item::before { left: 10px; top: 2rem; }
  .timeline-year { font-size: 1.4rem; }
}


/* ============================================================
   PAGE: Contact (from mockup/contact.html)
   ============================================================ */

/* ==============================================
   CONTACT EXPERT — Page-specific styles
   ============================================== */

/* BREADCRUMB (shared) */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO — split layout with image on right */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* Button shared */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles */

.contact-section {
  background: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 5rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* LEFT: Info */
.contact-info h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
}
.contact-info h2 em { font-style: italic; color: var(--c-brown); }
.contact-info > p {
  font-size: 1rem;
  line-height: 1.65;
  opacity: .8;
  margin-bottom: 2.5rem;
}
.contact-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.contact-block:last-child { border-bottom: none; }
.contact-block-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-cream-soft);
  color: var(--c-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-block-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: .35rem;
}
.contact-block-value {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--c-brown-dk);
  line-height: 1.4;
}
.contact-block-value a { color: inherit; }
.contact-block-value a:hover { color: var(--c-brown); opacity: 1; }
.contact-block-extra {
  font-size: .85rem;
  opacity: .7;
  margin-top: .25rem;
}

/* RIGHT: Form */
.contact-form-wrap {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  padding: clamp(2rem, 4vw, 3rem);
}
.contact-form-wrap h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-brown-dk);
  margin-bottom: .5rem;
}
.contact-form-wrap > p {
  font-size: .95rem;
  opacity: .75;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-brown-dk);
  transition: border-color .25s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-brown);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
  line-height: 1.5;
}
.form-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.form-actions button {
  font-family: inherit;
}
.form-privacy {
  font-size: .8rem;
  opacity: .6;
  line-height: 1.4;
  margin-top: .75rem;
}
.form-privacy a { text-decoration: underline; }

/* WhatsApp banner */
.contact-whatsapp {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.contact-whatsapp-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.contact-whatsapp h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.contact-whatsapp h2 em { font-style: italic; opacity: .9; }
.contact-whatsapp p { opacity: .85; margin-bottom: 2rem; line-height: 1.6; }
.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 14px 32px;
  background: var(--c-cream);
  color: var(--c-brown-dk);
  border: 1px solid var(--c-cream);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
}
.btn-whatsapp-cta:hover { background: transparent; color: var(--c-cream); opacity: 1; }
.btn-whatsapp-cta svg { width: 18px; height: 18px; }

/* Map placeholder */
.contact-map {
  background: var(--c-pink);
  padding: 0;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 46, 14, 0.12), rgba(10, 10, 10, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map-pin {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: 1.5rem 2rem;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  max-width: 320px;
}
.contact-map-pin-eyebrow {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: .75rem;
}
.contact-map-pin h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.contact-map-pin p { font-size: .9rem; opacity: .85; line-height: 1.5; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE: Întrebări frecvente (from mockup/faq.html)
   ============================================================ */

/* ==============================================
   ÎNTREBĂRI FRECVENTE — Page-specific styles
   ============================================== */

/* BREADCRUMB (shared) */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO — split layout with image on right */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* Button shared */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles */

.faq-section {
  background: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* LEFT: Category nav */
.faq-nav {
  position: sticky;
  top: 2rem;
  align-self: start;
}
.faq-nav h3 {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.faq-nav ul { list-style: none; }
.faq-nav ul li { margin-bottom: .5rem; }
.faq-nav ul li a {
  display: block;
  padding: .5rem 0;
  font-size: .95rem;
  color: var(--c-brown-dk);
  border-left: 2px solid transparent;
  padding-left: 1rem;
  margin-left: -1rem;
  transition: all .2s ease;
}
.faq-nav ul li a:hover {
  border-left-color: var(--c-brown);
  opacity: 1;
  color: var(--c-brown);
}
.faq-nav ul li a.active {
  border-left-color: var(--c-brown-dk);
  color: var(--c-brown-dk);
  font-weight: 500;
}

/* RIGHT: Accordion content */
.faq-content { min-width: 0; }
.faq-group { margin-bottom: 3rem; scroll-margin-top: 2rem; }
.faq-group h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-line);
}
.faq-group h2 em { font-style: italic; color: var(--c-brown); }

details.faq-item {
  border-bottom: 1px solid var(--c-line);
  padding: 1.25rem 0;
}
details.faq-item[open] summary { color: var(--c-brown-dk); }
summary.faq-question {
  list-style: none;
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--c-brown-dk);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-right: .25rem;
  transition: color .2s ease;
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question:hover { color: var(--c-brown); }
summary.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--c-brown);
  font-family: var(--f-body);
  font-weight: 300;
  transition: transform .3s ease;
  flex-shrink: 0;
}
details.faq-item[open] summary.faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding-top: 1rem;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--c-brown-dk);
  opacity: .85;
}
.faq-answer p { margin-bottom: .75rem; }
.faq-answer ul {
  list-style: none;
  margin: .75rem 0;
}
.faq-answer ul li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: .4rem;
}
.faq-answer ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-brown);
}
.faq-answer strong { color: var(--c-brown); font-weight: 500; }
.faq-answer a { text-decoration: underline; color: var(--c-brown); }

/* CTA at bottom */
.faq-cta {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.faq-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq-cta h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.faq-cta h2 em { font-style: italic; opacity: .9; }
.faq-cta p { opacity: .85; margin-bottom: 2rem; line-height: 1.6; }
.faq-cta .btn {
  background: var(--c-cream);
  color: var(--c-brown-dk);
  border-color: var(--c-cream);
}
.faq-cta .btn:hover { background: transparent; color: var(--c-cream); }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav {
    position: static;
    overflow-x: auto;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 1.5rem;
  }
  .faq-nav h3 { display: none; }
  .faq-nav ul {
    display: flex;
    gap: 1.5rem;
    white-space: nowrap;
  }
  .faq-nav ul li { margin: 0; }
  .faq-nav ul li a {
    padding: .75rem 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    padding-left: 0;
    margin-left: 0;
    font-size: .9rem;
  }
  .faq-nav ul li a:hover,
  .faq-nav ul li a.active {
    border-left: none;
    border-bottom-color: var(--c-brown-dk);
  }
}


/* ============================================================
   PAGE: Livrare și retur (from mockup/shipping.html)
   ============================================================ */

/* ==============================================
   LIVRARE, RETUR ȘI REPARAȚII — Page-specific styles
   ============================================== */

/* BREADCRUMB (shared by all secondary pages) */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO — split layout with image on right */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* PAGE CONTENT (shared container wrapper) */
.page-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.page-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Shared button style (reused from homepage) */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles below */

/* Tab navigation */
.ship-tabs {
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.ship-tabs-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.ship-tab {
  padding: 1.25rem 0;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
}
.ship-tab:hover { color: var(--c-brown-dk); opacity: 1; }
.ship-tab.active {
  color: var(--c-brown-dk);
  border-bottom-color: var(--c-brown-dk);
}

/* Content section */
.ship-section {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
  scroll-margin-top: 80px;
}
.ship-section:nth-of-type(even) { background: var(--c-cream-soft); }
.ship-section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.ship-section h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
  text-align: center;
}
.ship-section h2 em { font-style: italic; color: var(--c-brown); }
.ship-section-lead {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: .8;
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* Info cards in 2-col */
.ship-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ship-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 2rem;
}
.ship-card-icon {
  width: 44px;
  height: 44px;
  color: var(--c-brown);
  margin-bottom: 1.25rem;
}
.ship-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ship-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: .5rem;
  color: var(--c-brown-dk);
}
.ship-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--c-brown-dk);
  opacity: .85;
  margin-bottom: .5rem;
}
.ship-card strong { color: var(--c-brown); font-weight: 500; }

/* Steps row */
.ship-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}
.ship-step {
  text-align: center;
  padding: 0 .5rem;
  position: relative;
}
.ship-step-num {
  width: 36px;
  height: 36px;
  background: var(--c-brown);
  color: var(--c-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.ship-step h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--c-brown-dk);
}
.ship-step p {
  font-size: .9rem;
  line-height: 1.55;
  opacity: .75;
}

/* Text block with inline highlights */
.ship-text {
  line-height: 1.8;
  color: var(--c-brown-dk);
  max-width: 720px;
  margin: 0 auto;
}
.ship-text p { margin-bottom: 1rem; font-size: 1rem; opacity: .9; }
.ship-text h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 2rem 0 .75rem;
  color: var(--c-brown-dk);
}
.ship-text ul { list-style: none; margin: .5rem 0 1.25rem; }
.ship-text ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .5rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: .9;
}
.ship-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-brown);
}

@media (max-width: 900px) {
  .ship-tabs-inner { gap: 1.5rem; overflow-x: auto; justify-content: flex-start; }
  .ship-tab { white-space: nowrap; font-size: 11px; letter-spacing: .15em; }
  .ship-cards { grid-template-columns: 1fr; }
  .ship-steps { grid-template-columns: 1fr; gap: 2rem; }
}


/* ============================================================
   PAGE: Finanțare (from mockup/financing.html)
   ============================================================ */

/* ==============================================
   OPȚIUNI DE FINANȚARE — Page-specific styles
   ============================================== */

/* BREADCRUMB (shared by all secondary pages) */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO — split layout with image on right */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* PAGE CONTENT (shared container wrapper) */
.page-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.page-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Shared button style (reused from homepage) */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles below */

.fin-intro {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.fin-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.fin-intro p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--c-brown-dk);
  opacity: .9;
}

/* Plans */
.fin-plans {
  background: var(--c-cream-soft);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.fin-plans-head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  padding: 0 var(--gutter);
}
.fin-plans-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
}
.fin-plans-head h2 em { font-style: italic; color: var(--c-brown); }
.fin-plans-head p {
  font-size: 1rem;
  opacity: .8;
  max-width: 560px;
  margin: 0 auto;
}
.fin-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.plan-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan-card.featured {
  border-color: var(--c-brown);
  border-width: 2px;
  transform: scale(1.02);
}
.plan-card.featured::before {
  content: 'Cel mai popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-brown);
  color: var(--c-cream);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 14px;
  font-weight: 500;
}
.plan-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--c-brown-dk);
  margin-bottom: .75rem;
}
.plan-rate {
  font-family: var(--f-display);
  font-size: 2.75rem;
  color: var(--c-brown);
  margin-bottom: .25rem;
  line-height: 1;
}
.plan-rate span {
  font-size: 1rem;
  opacity: .7;
}
.plan-description {
  font-size: .9rem;
  opacity: .7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-line);
}
.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.plan-features li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  font-size: .92rem;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-brown);
  font-weight: 600;
}

/* Example calculation */
.fin-example {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.fin-example-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.fin-example h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
}
.fin-example h2 em { font-style: italic; color: var(--c-brown); }
.fin-example-lead {
  text-align: center;
  font-size: 1rem;
  opacity: .8;
  margin-bottom: 3rem;
}
.fin-example-box {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.fin-example-product {
  text-align: center;
}
.fin-example-product img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.fin-example-product-name {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--c-brown-dk);
  margin-bottom: .25rem;
}
.fin-example-product-price {
  font-size: 1.1rem;
  color: var(--c-brown);
  font-weight: 500;
}
.fin-example-breakdown {
  border-left: 1px solid var(--c-line);
  padding-left: 2rem;
}
.fin-example-breakdown h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--c-brown-dk);
}
.fin-example-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--c-line);
}
.fin-example-row:last-child {
  border-bottom: none;
  border-top: 2px solid var(--c-brown);
  margin-top: .5rem;
  padding-top: 1rem;
  font-weight: 600;
  color: var(--c-brown);
}

/* Partners */
.fin-partners {
  background: var(--c-cream-soft);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.fin-partners h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--c-brown-dk);
  margin-bottom: 2rem;
}
.fin-partners-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 0 var(--gutter);
}
.fin-partner-logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-brown-dk);
  opacity: .6;
  padding: .75rem 1.5rem;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  letter-spacing: .05em;
}

/* FAQ teaser */
.fin-faq {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.fin-faq-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.fin-faq h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.fin-faq h2 em { font-style: italic; opacity: .9; }
.fin-faq p {
  opacity: .85;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.fin-faq .btn {
  background: var(--c-cream);
  color: var(--c-brown-dk);
  border-color: var(--c-cream);
}
.fin-faq .btn:hover {
  background: transparent;
  color: var(--c-cream);
}

@media (max-width: 900px) {
  .fin-plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .plan-card.featured { transform: none; }
  .fin-example-box { grid-template-columns: 1fr; gap: 2rem; }
  .fin-example-breakdown { border-left: none; border-top: 1px solid var(--c-line); padding-left: 0; padding-top: 2rem; }
}


/* ============================================================
   PAGE: Urmărește comanda (from mockup/track.html)
   ============================================================ */

/* ==============================================
   URMĂRIRE COMANDĂ — Page-specific styles
   ============================================== */

/* BREADCRUMB (shared) */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO — split layout with image on right */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* Button shared */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles */

.track-section {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.track-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.track-form {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  padding: clamp(2.5rem, 5vw, 3.5rem);
}
.track-form h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-brown-dk);
  margin-bottom: .5rem;
  text-align: center;
}
.track-form h2 em { font-style: italic; color: var(--c-brown); }
.track-form-lead {
  text-align: center;
  font-size: .95rem;
  opacity: .75;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: .5rem;
}
.form-group input {
  font-family: inherit;
  font-size: 15px;
  padding: 14px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-brown-dk);
  transition: border-color .25s ease;
  width: 100%;
}
.form-group input:focus { outline: none; border-color: var(--c-brown); }
.form-hint {
  font-size: .8rem;
  opacity: .6;
  margin-top: .4rem;
  line-height: 1.4;
}
.track-submit {
  width: 100%;
  padding: 16px;
  margin-top: 1rem;
}

/* Help section */
.track-help {
  background: var(--c-cream-soft);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  border-top: 1px solid var(--c-line);
}
.track-help-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.track-help h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
}
.track-help h2 em { font-style: italic; color: var(--c-brown); }
.track-help p { opacity: .8; margin-bottom: 1.5rem; line-height: 1.65; }
.track-help-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Status steps preview (shown after successful lookup - demo) */
.track-demo {
  background: var(--c-cream);
  padding: clamp(3rem, 5vw, 4rem) 0;
  display: none;  /* hidden by default, shown after form submit in demo */
}
.track-demo.visible { display: block; }
.track-demo-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.track-demo h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--c-brown-dk);
  margin-bottom: .5rem;
}
.track-demo-order {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 2rem;
}
.track-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 2rem;
}
.track-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--c-line);
}
.track-step {
  text-align: center;
  position: relative;
}
.track-step-dot {
  width: 36px;
  height: 36px;
  background: var(--c-cream);
  border: 2px solid var(--c-line);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-muted);
  position: relative;
  z-index: 2;
}
.track-step.done .track-step-dot {
  background: var(--c-brown);
  border-color: var(--c-brown);
  color: var(--c-cream);
}
.track-step.current .track-step-dot {
  background: var(--c-brown-dk);
  border-color: var(--c-brown-dk);
  color: var(--c-cream);
  box-shadow: 0 0 0 4px rgba(92, 46, 14, 0.15);
}
.track-step h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--c-brown-dk);
  margin-bottom: .25rem;
}
.track-step p { font-size: .8rem; opacity: .7; }

@media (max-width: 768px) {
  .track-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .track-steps::before { display: none; }
}


/* ============================================================
   PAGE: Ghid mărimi inel (from mockup/ring-sizer.html)
   ============================================================ */

/* ==============================================
   MĂRIMEA INELULUI — Page-specific styles
   ============================================== */

/* BREADCRUMB (shared) */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO — split layout with image on right */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* Button shared */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles */

.sizer-intro {
  background: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.sizer-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.sizer-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: .85;
}

/* Methods */
.sizer-methods {
  background: var(--c-cream-soft);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.sizer-methods-head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  padding: 0 var(--gutter);
}
.sizer-methods-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
}
.sizer-methods-head h2 em { font-style: italic; color: var(--c-brown); }
.sizer-methods-head p { opacity: .8; max-width: 560px; margin: 0 auto; }

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.method-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 2rem;
  position: relative;
}
.method-number {
  position: absolute;
  top: -14px;
  left: 2rem;
  background: var(--c-brown-dk);
  color: var(--c-cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1rem;
}
.method-icon {
  width: 72px;
  height: 72px;
  color: var(--c-brown);
  margin: .5rem 0 1.5rem;
}
.method-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.method-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--c-brown-dk);
  margin-bottom: .75rem;
}
.method-card p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  margin-bottom: 1rem;
}
.method-steps {
  list-style: none;
  counter-reset: stepnum;
}
.method-steps li {
  counter-increment: stepnum;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: .6rem;
  font-size: .9rem;
  line-height: 1.5;
  opacity: .85;
}
.method-steps li::before {
  content: counter(stepnum) ".";
  position: absolute;
  left: 0;
  color: var(--c-brown);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .95rem;
}
.method-download {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-brown);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}
.method-download:hover { color: var(--c-brown-dk); opacity: 1; }
.method-download svg { width: 16px; height: 16px; }

/* Size chart */
.sizer-chart {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.sizer-chart-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sizer-chart h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--c-brown-dk);
  text-align: center;
  margin-bottom: 1rem;
}
.sizer-chart h2 em { font-style: italic; color: var(--c-brown); }
.sizer-chart-lead {
  text-align: center;
  font-size: 1rem;
  opacity: .8;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.chart-wrapper {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  overflow-x: auto;
}
.size-chart {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.size-chart th {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: 1rem;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.size-chart td {
  padding: .85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--c-line);
  font-size: .95rem;
  color: var(--c-brown-dk);
  font-family: var(--f-display);
}
.size-chart tr:nth-child(even) td { background: var(--c-cream-soft); }
.size-chart tr:hover td { background: var(--c-pink); }
.size-chart tr:last-child td { border-bottom: none; }
.size-ro {
  font-weight: 600;
  color: var(--c-brown);
}

/* Tips */
.sizer-tips {
  background: var(--c-cream-soft);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.sizer-tips-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sizer-tips h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--c-brown-dk);
  margin-bottom: 2rem;
  text-align: center;
}
.sizer-tips h2 em { font-style: italic; color: var(--c-brown); }
.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tips-list li {
  padding: 1.25rem 0;
  padding-left: 3rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .9;
  border-bottom: 1px solid var(--c-line);
}
.tips-list li:last-child { border-bottom: none; }
.tips-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 20px;
  height: 20px;
  background: var(--c-brown);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--c-cream-soft), 0 0 0 5px var(--c-line);
}
.tips-list li strong { color: var(--c-brown); font-weight: 500; }

/* CTA */
.sizer-cta {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.sizer-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sizer-cta h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.sizer-cta h2 em { font-style: italic; opacity: .9; }
.sizer-cta p { opacity: .85; margin-bottom: 2rem; line-height: 1.6; }
.sizer-cta .btn {
  background: var(--c-cream);
  color: var(--c-brown-dk);
  border-color: var(--c-cream);
}
.sizer-cta .btn:hover { background: transparent; color: var(--c-cream); }

@media (max-width: 900px) {
  .methods-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE: Termeni și condiții (from mockup/terms.html)
   ============================================================ */

/* ==============================================
   TERMENI ȘI CONDIȚII — Page-specific styles
   ============================================== */

/* BREADCRUMB */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO with split image */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* Button shared */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles */

/* Legal page layout: sticky sidebar TOC + content */
.legal-section {
  background: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-meta {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: .9rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.legal-meta div { line-height: 1.4; }
.legal-meta strong {
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: .25rem;
}

/* Sidebar TOC */
.legal-toc {
  position: sticky;
  top: 2rem;
  align-self: start;
}
.legal-toc h3 {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.legal-toc ol { list-style: none; counter-reset: tocnum; }
.legal-toc ol li {
  counter-increment: tocnum;
  margin-bottom: .25rem;
}
.legal-toc ol li a {
  display: block;
  padding: .5rem 0;
  padding-left: 2rem;
  font-size: .9rem;
  color: var(--c-brown-dk);
  border-left: 2px solid transparent;
  margin-left: -1rem;
  padding-left: 1.75rem;
  transition: all .2s ease;
  position: relative;
}
.legal-toc ol li a::before {
  content: counter(tocnum, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-size: .75rem;
  color: var(--c-brown);
  font-weight: 500;
  top: .65rem;
  letter-spacing: .05em;
}
.legal-toc ol li a:hover { color: var(--c-brown); opacity: 1; }
.legal-toc ol li a.active {
  border-left-color: var(--c-brown-dk);
  color: var(--c-brown-dk);
  font-weight: 500;
}

/* Content article */
.legal-content { min-width: 0; max-width: 780px; }
.legal-article {
  padding: 2rem 0 3rem;
  scroll-margin-top: 2rem;
  border-bottom: 1px solid var(--c-line);
}
.legal-article:last-child { border-bottom: none; }
.legal-article h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.legal-article h2 .num {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--c-brown);
  font-weight: 500;
}
.legal-article h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--c-brown-dk);
  margin: 1.75rem 0 .75rem;
}
.legal-article p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--c-brown-dk);
  opacity: .9;
  margin-bottom: 1rem;
}
.legal-article ul {
  list-style: none;
  margin: .75rem 0 1.25rem;
}
.legal-article ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .5rem;
  font-size: .95rem;
  line-height: 1.6;
  opacity: .9;
}
.legal-article ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-brown);
}
.legal-article strong { color: var(--c-brown); font-weight: 500; }
.legal-article a { text-decoration: underline; color: var(--c-brown); }

/* Back to top */
.legal-backtotop {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--c-line);
}
.legal-backtotop a {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-brown);
  font-weight: 500;
}

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc {
    position: static;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-line);
  }
  .legal-toc h3 { margin-bottom: .75rem; }
  .legal-toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
  }
  .legal-toc ol li {
    margin: 0;
  }
  .legal-toc ol li a {
    padding: .35rem .85rem;
    border: 1px solid var(--c-line);
    background: var(--c-cream-soft);
    font-size: .8rem;
    margin: 0;
    padding-left: 2.25rem;
  }
  .legal-toc ol li a::before { left: .75rem; top: .5rem; }
  .legal-toc ol li a.active {
    background: var(--c-brown-dk);
    color: var(--c-cream);
    border-color: var(--c-brown-dk);
  }
  .legal-toc ol li a.active::before { color: var(--c-cream); }
}


/* ============================================================
   PAGE: Politică de confidențialitate (from mockup/privacy.html)
   ============================================================ */

/* ==============================================
   POLITICA DE CONFIDENȚIALITATE — Page-specific styles
   ============================================== */

/* BREADCRUMB */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO with split image */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* Button shared */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles */

/* Legal page layout: sticky sidebar TOC + content */
.legal-section {
  background: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-meta {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: .9rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.legal-meta div { line-height: 1.4; }
.legal-meta strong {
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: .25rem;
}

/* Sidebar TOC */
.legal-toc {
  position: sticky;
  top: 2rem;
  align-self: start;
}
.legal-toc h3 {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.legal-toc ol { list-style: none; counter-reset: tocnum; }
.legal-toc ol li {
  counter-increment: tocnum;
  margin-bottom: .25rem;
}
.legal-toc ol li a {
  display: block;
  padding: .5rem 0;
  padding-left: 2rem;
  font-size: .9rem;
  color: var(--c-brown-dk);
  border-left: 2px solid transparent;
  margin-left: -1rem;
  padding-left: 1.75rem;
  transition: all .2s ease;
  position: relative;
}
.legal-toc ol li a::before {
  content: counter(tocnum, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-size: .75rem;
  color: var(--c-brown);
  font-weight: 500;
  top: .65rem;
  letter-spacing: .05em;
}
.legal-toc ol li a:hover { color: var(--c-brown); opacity: 1; }
.legal-toc ol li a.active {
  border-left-color: var(--c-brown-dk);
  color: var(--c-brown-dk);
  font-weight: 500;
}

/* Content article */
.legal-content { min-width: 0; max-width: 780px; }
.legal-article {
  padding: 2rem 0 3rem;
  scroll-margin-top: 2rem;
  border-bottom: 1px solid var(--c-line);
}
.legal-article:last-child { border-bottom: none; }
.legal-article h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.legal-article h2 .num {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--c-brown);
  font-weight: 500;
}
.legal-article h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--c-brown-dk);
  margin: 1.75rem 0 .75rem;
}
.legal-article p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--c-brown-dk);
  opacity: .9;
  margin-bottom: 1rem;
}
.legal-article ul {
  list-style: none;
  margin: .75rem 0 1.25rem;
}
.legal-article ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .5rem;
  font-size: .95rem;
  line-height: 1.6;
  opacity: .9;
}
.legal-article ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-brown);
}
.legal-article strong { color: var(--c-brown); font-weight: 500; }
.legal-article a { text-decoration: underline; color: var(--c-brown); }

/* Back to top */
.legal-backtotop {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--c-line);
}
.legal-backtotop a {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-brown);
  font-weight: 500;
}

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc {
    position: static;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-line);
  }
  .legal-toc h3 { margin-bottom: .75rem; }
  .legal-toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
  }
  .legal-toc ol li {
    margin: 0;
  }
  .legal-toc ol li a {
    padding: .35rem .85rem;
    border: 1px solid var(--c-line);
    background: var(--c-cream-soft);
    font-size: .8rem;
    margin: 0;
    padding-left: 2.25rem;
  }
  .legal-toc ol li a::before { left: .75rem; top: .5rem; }
  .legal-toc ol li a.active {
    background: var(--c-brown-dk);
    color: var(--c-cream);
    border-color: var(--c-brown-dk);
  }
  .legal-toc ol li a.active::before { color: var(--c-cream); }
}


/* ============================================================
   PAGE: Recenzii clienți (from mockup/reviews.html)
   ============================================================ */

/* ==============================================
   RECENZII CLIENȚI — Page-specific styles
   ============================================== */

/* BREADCRUMB */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO with split image */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* Button shared */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles */

/* Stats bar */
.reviews-stats {
  background: var(--c-cream-soft);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--c-line);
}
.reviews-stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 0 1rem;
}
.stat-number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--c-brown-dk);
  margin-bottom: .5rem;
  font-weight: 500;
}
.stat-number em {
  font-style: italic;
  color: var(--c-brown);
  font-size: .6em;
}
.stat-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.stars-inline {
  color: var(--c-brown);
  letter-spacing: .15em;
  font-size: 1.3rem;
  margin-bottom: .5rem;
  display: block;
}

/* Filter bar */
.reviews-filters {
  background: var(--c-cream);
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-line);
}
.reviews-filters-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.filter-group {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.filter-chip {
  padding: .5rem 1rem;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-brown-dk);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}
.filter-chip:hover { border-color: var(--c-brown); color: var(--c-brown); }
.filter-chip.active {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  border-color: var(--c-brown-dk);
}
.sort-select {
  padding: .5rem 1rem;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-brown-dk);
  font-family: inherit;
  font-size: .9rem;
  cursor: pointer;
}

/* Reviews grid */
.reviews-grid-section {
  background: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(92, 46, 14, 0.08);
}
.review-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-pink);
}
.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.review-card:hover .review-image img { transform: scale(1.04); }
.review-.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.review-stars {
  color: var(--c-brown);
  letter-spacing: .12em;
  font-size: .9rem;
}
.review-date {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.review-product {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-brown);
  font-weight: 500;
  padding: .3rem .65rem;
  background: var(--c-cream-soft);
  margin-bottom: 1rem;
  align-self: flex-start;
}
.review-card blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--c-brown-dk);
  margin-bottom: 1.25rem;
  flex: 1;
}
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}
.review-author {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-brown-dk);
  font-weight: 500;
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-brown);
}
.review-verified svg { width: 12px; height: 12px; }

/* Load more */
.reviews-loadmore {
  text-align: center;
  margin-top: 3rem;
}

/* Trustpilot banner */
.reviews-trustpilot {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.reviews-trustpilot-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  background: #00B67A;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: .02em;
}
.trustpilot-badge .star-icon {
  background: #fff;
  color: #00B67A;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.reviews-trustpilot h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.reviews-trustpilot h2 em { font-style: italic; opacity: .9; }
.reviews-trustpilot p { opacity: .85; margin-bottom: 2rem; line-height: 1.6; }
.reviews-trustpilot .btn {
  background: var(--c-cream);
  color: var(--c-brown-dk);
  border-color: var(--c-cream);
}
.reviews-trustpilot .btn:hover { background: transparent; color: var(--c-cream); }

@media (max-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reviews-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-filters-inner { justify-content: flex-start; }
}


/* ============================================================
   PAGE: Ambalaj signature (from mockup/packaging.html)
   ============================================================ */

/* ==============================================
   AMBALAJ — Page-specific styles
   ============================================== */

/* BREADCRUMB (shared by all secondary pages) */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO — split layout with image on right */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* PAGE CONTENT (shared container wrapper) */
.page-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.page-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Shared button style (reused from homepage) */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles below */

.packaging-intro {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.packaging-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.packaging-intro-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--c-pink);
}
.packaging-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.packaging-intro h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
}
.packaging-intro h2 em { font-style: italic; color: var(--c-brown); }
.packaging-intro p {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--c-brown-dk);
  opacity: .9;
}

/* Features row */
.packaging-features {
  background: var(--c-cream-soft);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.packaging-features-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
  padding: 0 var(--gutter);
}
.packaging-features-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--c-brown-dk);
}
.packaging-features-head h2 em { font-style: italic; color: var(--c-brown); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.feature-item {
  text-align: center;
  padding: 0 .5rem;
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--c-brown);
}
.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-item h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: .5rem;
  color: var(--c-brown-dk);
}
.feature-item p {
  font-size: .92rem;
  line-height: 1.55;
  opacity: .75;
}

/* Gallery of packaging photos */
.packaging-gallery {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.gallery-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding: 0 var(--gutter);
}
.gallery-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--c-brown-dk);
}
.gallery-head h2 em { font-style: italic; color: var(--c-brown); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--c-pink);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }

/* Gift message */
.packaging-gift {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}
.packaging-gift-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.packaging-gift h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.packaging-gift h2 em { font-style: italic; opacity: .9; }
.packaging-gift p {
  font-size: 1.02rem;
  opacity: .85;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .packaging-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE: Blog (from mockup/blog.html)
   ============================================================ */

/* ==============================================
   JURNAL CATTRESSI — Page-specific styles
   ============================================== */

/* BREADCRUMB */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* PAGE HERO with split image */
.page-hero {
  padding: 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 460px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--c-pink);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.page-hero:hover .page-hero-image img { transform: scale(1.03); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-image { aspect-ratio: 4/3; order: -1; }
  .page-hero-text { text-align: center; }
  .page-hero-subtitle { margin: 0 auto; }
}

/* Button shared */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-cream);
  background: var(--c-brown-dk);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-brown-dk); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-brown-dk);
}
.btn-outline:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Page-specific styles */

.blog-filters {
  background: var(--c-cream-soft);
  border-bottom: 1px solid var(--c-line);
  padding: 1.5rem 0;
}
.blog-filters-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-filters-inner::-webkit-scrollbar { display: none; }
.blog-filter {
  padding: .5rem 0;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
}
.blog-filter:hover { color: var(--c-brown-dk); }
.blog-filter.active {
  color: var(--c-brown-dk);
  border-bottom-color: var(--c-brown-dk);
}

/* Featured article (first) */
.blog-featured {
  background: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.blog-featured-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.blog-featured-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-pink);
  align-self: stretch;
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.blog-featured-card:hover .blog-featured-image img { transform: scale(1.04); }
.blog-featured-content {
  padding: clamp(2rem, 4vw, 3rem);
}
.blog-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-brown);
  font-weight: 600;
  margin-bottom: 1rem;
}
.blog-featured-content h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--c-brown-dk);
  margin-bottom: 1rem;
}
.blog-featured-content h2 a { color: inherit; }
.blog-featured-content h2 a:hover { color: var(--c-brown); opacity: 1; }
.blog-featured-excerpt {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  margin-bottom: 1.5rem;
}
.blog-meta {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.blog-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--c-muted);
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-brown-dk);
  font-weight: 500;
  padding: .75rem 0;
  border-bottom: 1px solid var(--c-brown-dk);
  transition: all .3s ease;
}
.blog-read-more::after {
  content: '→';
  transition: transform .3s ease;
}
.blog-read-more:hover { color: var(--c-brown); opacity: 1; border-bottom-color: var(--c-brown); }
.blog-read-more:hover::after { transform: translateX(4px); }

/* Grid */
.blog-grid-section {
  background: var(--c-cream);
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.blog-card {
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-pink);
  margin-bottom: 1.25rem;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--c-brown-dk);
  margin-bottom: .5rem;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--c-brown); opacity: 1; }
.blog-card-excerpt {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--c-brown-dk);
  opacity: .8;
  margin-bottom: 1rem;
  flex: 1;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-top: 4rem;
  padding: 0 var(--gutter);
}
.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 .75rem;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-brown-dk);
  font-family: var(--f-display);
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s ease;
}
.page-btn:hover { border-color: var(--c-brown); color: var(--c-brown); }
.page-btn.active {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  border-color: var(--c-brown-dk);
}
.page-btn.arrow { padding: 0 1.25rem; font-size: 1.1rem; }

/* Newsletter teaser (extra) */
.blog-newsletter {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.blog-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.blog-newsletter h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.blog-newsletter h2 em { font-style: italic; opacity: .9; }
.blog-newsletter p { opacity: .85; margin-bottom: 2rem; line-height: 1.6; }

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-image { aspect-ratio: 4/3; }
  .blog-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}



/* ============================================================
   COLLECTION PAGE (archive-product) — from inele-logodna.html mockup
   ============================================================ */

/* INELE DE LOGODNA — Collection page styles */

/* Breadcrumb */
.breadcrumb {
  background: var(--c-cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: .1em;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--c-muted);
}
.breadcrumb-inner a { color: var(--c-brown-dk); font-weight: 500; }
.breadcrumb-sep { margin: 0 .75rem; opacity: .5; }

/* Collection header */
.collection-head {
  background: var(--c-cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.collection-head-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.collection-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}
.collection-head h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  color: var(--c-brown-dk);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.collection-head h1 em { font-style: italic; color: var(--c-brown); font-weight: 300; }
.collection-head-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-brown-dk);
  opacity: .85;
  max-width: 640px;
  margin: 0 auto;
}

/* Type tabs (All / Natural / Lab / Moissanite) */
.type-tabs-wrap {
  background: var(--c-cream-soft);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line);
}
.type-tabs {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.type-tab {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1rem;
  color: var(--c-muted);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.type-tab:hover { color: var(--c-brown-dk); opacity: 1; }
.type-tab.active {
  color: var(--c-brown-dk);
  border-bottom-color: var(--c-brown-dk);
}
.type-tab-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Main content layout with sidebar */
.shop-section {
  background: var(--c-cream);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 7rem);
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Sidebar filters */
.shop-sidebar {
  position: sticky;
  top: 1rem;
  align-self: start;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding-right: .5rem;
  scrollbar-width: thin;
}
.filter-group {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-line);
}
.filter-group:first-child { padding-top: 0; }
.filter-title {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-brown-dk);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-title-count {
  font-size: 10px;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: .1em;
}

/* Filter checkboxes */
.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.filter-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  font-size: .95rem;
  padding: .15rem 0;
  color: var(--c-brown-dk);
}
.filter-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--c-muted);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all .2s ease;
}
.filter-item input[type="checkbox"]:checked {
  background: var(--c-brown-dk);
  border-color: var(--c-brown-dk);
}
.filter-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--c-cream);
  font-size: 11px;
  font-weight: 700;
}
.filter-item-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-item-icon img {
  max-width: 100%;
  max-height: 100%;
  opacity: .7;
}
.filter-item-label {
  flex: 1;
  font-size: .9rem;
}
.filter-item-count {
  color: var(--c-muted);
  font-size: .8rem;
}

/* Price slider group */
.filter-price {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.filter-price-input {
  flex: 1;
  padding: .5rem .6rem;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  font-family: inherit;
  font-size: .85rem;
  color: var(--c-brown-dk);
  min-width: 0;
}
.filter-price-input:focus { outline: none; border-color: var(--c-brown); }
.filter-price-sep { color: var(--c-muted); font-size: .85rem; }
.filter-price-apply {
  margin-top: .75rem;
  padding: .6rem;
  width: 100%;
  background: var(--c-brown-dk);
  color: var(--c-cream);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-brown-dk);
  cursor: pointer;
  transition: all .25s ease;
}
.filter-price-apply:hover { background: transparent; color: var(--c-brown-dk); }

/* Clear filters */
.filter-clear-all {
  width: 100%;
  padding: .75rem;
  background: transparent;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-brown-dk);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: all .25s ease;
}
.filter-clear-all:hover { background: var(--c-brown-dk); color: var(--c-cream); }

/* Main shop area */
.shop-main { min-width: 0; }

/* Sidebar backdrop & close (only used on mobile drawer) */
.sidebar-backdrop { display: none; }
.sidebar-close { display: none; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-line);
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-count {
  font-size: .9rem;
  color: var(--c-muted);
  letter-spacing: .02em;
}
.shop-count strong { color: var(--c-brown-dk); font-weight: 600; }


.filters-toggle {
  display: none;
  padding: .7rem 1.25rem;
  border: 1px solid var(--c-brown-dk);
  background: transparent;
  color: var(--c-brown-dk);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  gap: .5rem;
  align-items: center;
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease;
}
.product-card:hover { opacity: 1; }


.product-type {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-brown);
  font-weight: 500;
  margin-bottom: .4rem;
}
.product-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--c-brown-dk);
  margin-bottom: .4rem;
}
.product-specs {
  font-size: .82rem;
  color: var(--c-muted);
  letter-spacing: .02em;
  line-height: 1.45;
  margin-bottom: .75rem;
}
.product-price {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}


/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-top: 4rem;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 .75rem;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-brown-dk);
  font-family: var(--f-display);
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover { border-color: var(--c-brown); color: var(--c-brown); opacity: 1; }
.page-btn.active {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  border-color: var(--c-brown-dk);
}
.page-btn.arrow { padding: 0 1.25rem; font-size: 1.1rem; }
.page-ellipsis {
  color: var(--c-muted);
  padding: 0 .25rem;
}

/* SEO copy section */
.collection-seo {
  background: var(--c-cream-soft);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--c-line);
}
.collection-seo-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.collection-seo h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--c-brown-dk);
  margin-bottom: 1.5rem;
  text-align: center;
}
.collection-seo h2 em { font-style: italic; color: var(--c-brown); }
.collection-seo p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-brown-dk);
  opacity: .9;
  margin-bottom: 1.25rem;
}
.collection-seo p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  padding: .25rem .5rem 0 0;
  color: var(--c-brown);
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 220px 1fr; gap: 2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(340px, 90%);
    height: 100vh;
    max-height: none;
    background: var(--c-cream);
    z-index: 9999;
    padding: 2rem 1.5rem;
    box-shadow: 4px 0 30px rgba(0,0,0,.2);
    transition: left .3s ease;
    overflow-y: auto;
  }
  .shop-sidebar.open { left: 0; }
  .sidebar-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--c-brown-dk);
    cursor: pointer;
    line-height: 1;
  }
  .sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 9998;
  }
  .sidebar-backdrop.open { display: block; }
  .filters-toggle { display: inline-flex; }
  .type-tabs { gap: 1.25rem; flex-wrap: wrap; }
  .type-tab { padding: .5rem .5rem; font-size: 10px; letter-spacing: .1em; }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem .75rem; }
  .product-name { font-size: 1.15rem; }
  .product-specs { font-size: .75rem; }
  .price-sale { font-size: .9rem; }
  .price-full { font-size: .75rem; }
  .page-btn { min-width: 36px; height: 36px; font-size: .9rem; }
}











/* VIDEO BANNER (mid-grid section break) */
.video-banner {
  background: var(--c-cream-soft);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin: clamp(3rem, 5vw, 4rem) 0;
}
.video-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.video-banner-text {
  padding-right: 1rem;
}
.video-banner-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-brown);
  font-weight: 600;
  margin-bottom: 1rem;
}
.video-banner-text h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.75vw, 2.75rem);
  line-height: 1.1;
  color: var(--c-brown-dk);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.video-banner-text h2 em { font-style: italic; color: var(--c-brown); }
.video-banner-text p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--c-brown-dk);
  opacity: .85;
  margin-bottom: 1.5rem;
}
.video-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 13px 28px;
  border: 1px solid var(--c-brown-dk);
  color: var(--c-brown-dk);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
  background: transparent;
}
.video-banner-cta:hover {
  background: var(--c-brown-dk);
  color: var(--c-cream);
  opacity: 1;
}

.video-banner-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--c-pink);
  box-shadow: 0 20px 60px -20px rgba(92, 46, 14, 0.25);
}
.video-banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .video-banner-inner { grid-template-columns: 1fr; gap: 2rem; }
  .video-banner-text { padding-right: 0; text-align: center; }
  .video-banner-media { max-width: 480px; margin: 0 auto; }
}


/* ==========================================
   PRODUCT CARD — Best Brilliance style
   ========================================== */
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform .3s ease;
  position: relative;
}
.product-card:hover { opacity: 1; transform: translateY(-2px); }

/* Tag pill on top-left of image */
.product-card .product-type {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: none;
  color: var(--c-brown-dk);
  background: var(--c-pink);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
  font-family: var(--f-body);
}

/* Image area */
.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--c-cream-soft);
  margin-bottom: 1.1rem;
  border: 1px solid var(--c-line);
}
.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .5s ease, transform .8s ease;
}
.product-img-hover { opacity: 0; }
.product-card:hover .product-img-primary { opacity: 0; }
.product-card:hover .product-img-hover { opacity: 1; }
.product-card:hover .product-image img { transform: scale(1.04); }

/* Body */
.product-
.product-name {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--c-brown-dk);
  letter-spacing: .01em;
  margin: 0;
}

.product-specs {
  font-size: .85rem;
  color: var(--c-muted);
  letter-spacing: .01em;
  line-height: 1.4;
  margin: 0;
}
.product-specs .spec-metal {
  color: var(--c-muted);
  font-weight: 400;
}

/* Metal circles row (14K / 14K / 18K / Pt) */
.product-metals {
  display: flex;
  gap: .5rem;
  margin-top: .25rem;
  margin-bottom: .15rem;
  align-items: center;
}
.metal-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--metal-color, #ddd);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  color: var(--c-brown-dk);
  letter-spacing: .02em;
  font-family: var(--f-body);
}
.metal-circle:hover { transform: scale(1.08); }
.metal-circle.active {
  border-color: var(--c-brown-dk);
  border-width: 1.5px;
}
.metal-circle[data-metal="white14"],
.metal-circle[data-metal="white18"] {
  background: #E8E4DC;
}
.metal-circle[data-metal="yellow14"],
.metal-circle[data-metal="yellow18"] {
  background: #D4AF37;
}
.metal-circle[data-metal="rose14"],
.metal-circle[data-metal="rose18"] {
  background: #E8B4A0;
}
.metal-circle[data-metal="platinum"] {
  background: #CED1D6;
}

/* Carat chips (oval, BB-style) */
.product-carats {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  margin-top: .2rem;
}
.carat-chip {
  padding: .4rem .85rem;
  font-size: .8rem;
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--c-brown-dk);
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}
.carat-chip:hover { border-color: var(--c-brown); }
.carat-chip.active {
  border-color: var(--c-brown-dk);
  border-width: 1.5px;
  padding: calc(.4rem - 0.5px) calc(.85rem - 0.5px);
  font-weight: 500;
}
.carat-variants-more {
  padding: .4rem .75rem;
  font-size: .78rem;
  font-family: var(--f-body);
  color: var(--c-muted);
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  letter-spacing: 0;
  text-decoration: none;
}

/* Price row — BB-style: full tăiat, sale bold, discount verde */
.product-price {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  flex-wrap: wrap;
  margin-top: .6rem;
}
.price-full {
  font-size: .82rem;
  color: var(--c-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.price-sale {
  font-size: .95rem;
  color: #B83A3A;
  font-weight: 600;
  letter-spacing: .01em;
}
.price-off {
  font-size: 10px;
  font-weight: 600;
  color: #FFFFFF;
  background: #006634;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .02em;
  line-height: 1.3;
}

