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

    :root {
      --cream: #F5F0E8;
      --dark: #1A1A18;
      --orange: #E8500A;
      --orange-light: #FF6B2B;
      --muted: #7A7567;
      --border: #D8D2C4;
      --card: #FDFAF4;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--cream);
      color: var(--dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(245, 240, 232, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: 'Instrument Serif', serif;
      font-size: 1.5rem;
      color: var(--dark);
      letter-spacing: -0.02em;
    }

    .logo span { color: var(--orange); }

    .nav-cta {
      background: var(--dark);
      color: var(--cream);
      border: none;
      padding: 0.6rem 1.4rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      border-radius: 2px;
      letter-spacing: 0.03em;
      transition: background 0.2s;
      text-decoration: none;
    }

    .nav-cta:hover { background: var(--orange); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 2.5rem 4rem;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-left { position: relative; }

    .tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      border: 1px solid var(--orange);
      padding: 0.3rem 0.8rem;
      border-radius: 2px;
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.2s;
    }

    h1 {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.4s;
    }

    h1 em {
      font-style: italic;
      color: var(--orange);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 440px;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.6s;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.8s;
    }

    .btn-primary {
      background: var(--orange);
      color: white;
      border: none;
      padding: 0.9rem 2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
      text-decoration: none;
    }

    .btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

    .btn-ghost {
      color: var(--muted);
      font-size: 0.9rem;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'DM Sans', sans-serif;
    }

    /* HERO VISUAL */
    .hero-right {
      position: relative;
      opacity: 0;
      animation: fadeIn 0.8s ease forwards 0.5s;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .tool-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 1.5rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .tool-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(26,26,24,0.08);
    }

    /* .tool-card:nth-child(2) { margin-top: 1.5rem; } */
    /* .tool-card:nth-child(4) { margin-top: -1.5rem; } */

    .tool-icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .tool-name { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.2rem; }
    .tool-price { color: var(--orange); font-size: 0.85rem; font-weight: 500; }
    .tool-avail { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }

    /* STATS */
    .stats {
      background: var(--dark);
      color: var(--cream);
      padding: 3rem 2.5rem;
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 2rem;
      text-align: center;
    }

    .stat-num {
      font-family: 'Instrument Serif', serif;
      font-size: 3rem;
      color: var(--orange);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.85rem;
      color: rgba(245,240,232,0.6);
      margin-top: 0.4rem;
      letter-spacing: 0.05em;
    }

    /* HOW IT WORKS */
    .section {
      padding: 6rem 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      letter-spacing: -0.02em;
      margin-bottom: 3.5rem;
      max-width: 500px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .step {
      position: relative;
      padding: 2rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 6px;
    }

    .step-num {
      font-family: 'Instrument Serif', serif;
      font-size: 3.5rem;
      color: var(--border);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .step h3 { font-weight: 500; font-size: 1.05rem; margin-bottom: 0.6rem; }
    .step p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

    /* WISHLIST SECTION */
    .wishlist-section {
      background: var(--dark);
      padding: 6rem 2.5rem;
    }

    .wishlist-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .wishlist-inner .section-label { color: var(--orange-light); }

    .wishlist-inner .section-title {
      color: var(--cream);
      margin: 0 auto 1rem;
      max-width: 100%;
    }

    .wishlist-sub {
      color: rgba(245,240,232,0.55);
      margin-bottom: 3rem;
      font-size: 0.95rem;
    }

    .wish-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: left;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    label {
      font-size: 0.8rem;
      color: rgba(245,240,232,0.5);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    input, select, textarea {
      background: rgba(245,240,232,0.06);
      border: 1px solid rgba(245,240,232,0.15);
      color: var(--cream);
      padding: 0.85rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      border-radius: 3px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

    input::placeholder, textarea::placeholder { color: rgba(245,240,232,0.25); }
    input:focus, select:focus, textarea:focus { border-color: var(--orange); }
    select option { background: var(--dark); }
    textarea { resize: vertical; min-height: 90px; }

    .submit-btn {
      background: var(--orange);
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      border-radius: 3px;
      transition: background 0.2s, transform 0.15s;
      margin-top: 0.5rem;
      align-self: flex-start;
    }

    .submit-btn:hover { background: var(--orange-light); transform: translateY(-1px); }

    .success-msg {
      display: none;
      background: rgba(232, 80, 10, 0.15);
      border: 1px solid var(--orange);
      color: var(--cream);
      padding: 1.2rem 1.5rem;
      border-radius: 3px;
      font-size: 0.95rem;
      text-align: center;
    }

    /* EARLY ACCESS */
    .early-section {
      padding: 6rem 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .early-left .section-title { margin-bottom: 1.2rem; }

    .early-left p {
      color: var(--muted);
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .email-row {
      display: flex;
      gap: 0;
    }

    .email-row input {
      border-radius: 3px 0 0 3px;
      border-right: none;
      background: var(--card);
      color: var(--dark);
      border-color: var(--border);
    }

    .email-row input::placeholder { color: var(--muted); }
    .email-row input:focus { border-color: var(--orange); }
    .email-row .btn-primary { border-radius: 0 3px 3px 0; white-space: nowrap; }

    .benefits {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .benefit {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .benefit-dot {
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 50%;
      margin-top: 0.5rem;
      flex-shrink: 0;
    }

    .benefit-text strong { display: block; font-weight: 500; margin-bottom: 0.1rem; }
    .benefit-text span { font-size: 0.875rem; color: var(--muted); }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-logo { font-family: 'Instrument Serif', serif; font-size: 1.2rem; }
    .footer-logo span { color: var(--orange); }
    footer p { font-size: 0.8rem; color: var(--muted); }
    .footer-links { margin-top: 0.4rem; }
    .footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--dark); }

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

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 3rem; }
      .steps { grid-template-columns: 1fr; }
      .early-section { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }
      nav { padding: 1rem 1.5rem; }
      .email-row { flex-direction: column; }
      .email-row input { border-radius: 3px; border-right: 1px solid var(--border); }
      .email-row .btn-primary { border-radius: 3px; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
      .tool-card:nth-child(2), .tool-card:nth-child(4) { margin-top: 0; }
    }
	

	/* ----- Oprema section ----- */
  #oprema {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #E8E2D6;
    border-bottom: 1px solid #E8E2D6;
  }

  #oprema .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }

	/* ----- Section ----- */
  .oprema-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E8500A;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
  }

  .oprema-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #1A1A18;
    font-family: 'Instrument Serif', serif;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .oprema-sub {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-family: 'DM Sans', sans-serif;
  }

  /* ----- Filters ----- */
  .oprema-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .oprema-filter {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: 99px;
    border: 1.5px solid #ddd;
    background: transparent;
    color: #555;
    cursor: pointer;
    transition: all 0.18s ease;
  }

  .oprema-filter:hover {
    border-color: #E8500A;
    color: #E8500A;
  }

  .oprema-filter.active {
    background: #E8500A;
    border-color: #E8500A;
    color: #fff;
  }

  /* ----- Grid ----- */
  .oprema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  /* ----- Card ----- */
  .oprema-card {
    background: #FDFAF4;
    border: 1px solid #E8E2D6;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  .oprema-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .oprema-card-img {
    width: 100%;
    height: 120px;
    background: #EDE8DF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .oprema-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .oprema-card-placeholder {
    font-size: 2.5rem;
    line-height: 1;
    opacity: 0.35;
    font-family: sans-serif;
  }

  .oprema-card-body {
    padding: 16px;
  }

  .oprema-card-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #999;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 4px;
  }

  .oprema-card-name {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A18;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .oprema-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .oprema-price {
    font-size: 15px;
    font-weight: 700;
    color: #E8500A;
    font-family: 'DM Sans', sans-serif;
  }

  .oprema-kavcija {
    font-size: 12px;
    color: #888;
    background: #EDE8DF;
    padding: 3px 9px;
    border-radius: 99px;
    font-family: 'DM Sans', sans-serif;
  }

  .oprema-avail {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
  }

  .oprema-avail.available { background: #3B6D11; }
  .oprema-avail.unavailable { background: #A32D2D; }

  /* ----- Empty state ----- */
  .oprema-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 3rem 0;
    font-family: 'DM Sans', sans-serif;
  }

  /* ----- Modal overlay ----- */
  .oprema-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 24, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(2px);
  }

  .oprema-overlay.open {
    display: flex;
  }

  /* ----- Modal ----- */
  .oprema-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
  }

  .oprema-modal-img {
    width: 100%;
    height: 200px;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .oprema-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .oprema-modal-placeholder {
    font-size: 3.5rem;
    line-height: 1;
    opacity: 0.3;
    font-family: sans-serif;
  }

  .oprema-modal-body {
    padding: 1.5rem;
  }

  .oprema-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }

  .oprema-modal-close {
    background: #F5F0E8;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .oprema-modal-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #999;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 4px;
  }

  .oprema-modal-name {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A18;
    font-family: 'Instrument Serif', serif;
    line-height: 1.2;
  }

  .oprema-modal-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1.25rem;
  }

  .oprema-modal-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: #F5F0E8;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 1.25rem;
  }

  .oprema-modal-price-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .oprema-modal-price-label {
    font-size: 11px;
    color: #888;
    font-family: 'DM Sans', sans-serif;
  }

  .oprema-modal-price-val {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A18;
    font-family: 'DM Sans', sans-serif;
  }

  .oprema-modal-price-val.orange {
    color: #E8500A;
  }

  .oprema-modal-includes {
    font-size: 13px;
    color: #555;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .oprema-modal-includes strong {
    display: block;
    color: #1A1A18;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 13px;
  }

  .oprema-modal-cta {
    display: block;
    width: 100%;
    padding: 13px;
    background: #E8500A;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s ease;
  }

  .oprema-modal-cta:hover {
    background: #c93e00;
  }

  /* ----- Responsive ----- */
  @media (max-width: 480px) {
    .oprema-modal-prices {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  /* ── Nav links (for multi-page nav) ── */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-link:hover { color: var(--dark); }
  .nav-link-active { color: var(--dark) !important; font-weight: 500; }

  /* ── Oprema page header ── */
  .oprema-page-header {
    padding: 9rem 2.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .oprema-page-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--dark);
  }

  .oprema-page-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ── CTA strip at bottom of catalogue ── */
  .oprema-cta-strip {
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .oprema-cta-strip p {
    font-size: 1rem;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
  }

  @media (max-width: 768px) {
    .oprema-page-header { padding: 8rem 1.5rem 2rem; }
    .oprema-cta-strip { flex-direction: column; text-align: center; gap: 1rem; }
    .nav-links { gap: 1rem; }
  }
