/* ===========================
   FAQ PAGE
   =========================== */

   .faq-page {
    max-width: 980px;
    margin: 120px auto 100px;
    padding: 0 16px;
  }
  
  .faq-hero {
    text-align: center;
    margin-bottom: 28px;
  }
  .centrirani-naslov2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(34px, 6vw, 64px);
    color: var(--brand, #c9a27e);
    text-align: center;
    margin: 180px 0 24px;
  }
  .faq-hero__sub {
    color: #6b645f;
    margin: 0 auto;
    max-width: 700px;
  }
  
  .faq-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }
  
  /* Kartica */
  .faq-card {
    background: #fff;
    border: 1px solid var(--border, #e8e2dc);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
    overflow: hidden;
  }
  
  .faq-toggle {
    width: 100%;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #2b2a28;
    font-weight: 700;
    padding: 16px 18px;
    border: 0;
    cursor: pointer;
  }
  .faq-toggle i {
    transition: transform .2s ease, color .2s ease;
    color: var(--brand, #c9a27e);
  }
  .faq-toggle:hover i { transform: translateY(-1px); }
  
  .faq-content {
    height: 0;
    overflow: hidden;
    padding: 0 18px;
    background: linear-gradient(180deg,#fff 0%, #fdf9f6 100%);
    border-top: 1px solid transparent;
    opacity: 0;
  }
  .faq-content p {
    color: #4a4a4a;
    line-height: 1.75;
    margin: 12px 0 18px;
  }
  .faq-card.is-open .faq-toggle i { transform: rotate(180deg); }
  .faq-card.is-open .faq-content { border-top-color: var(--border, #e8e2dc); }
  
  /* CTA Instagram */
  .faq-cta-ig {
    margin-top: 42px;
  }
  .faq-cta-ig__card {
    position: relative;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    align-items: center;
    border-radius: 18px;
    border: 1px solid var(--border, #e8e2dc);
    background:
      radial-gradient(1200px 200px at 10% 0%, rgba(201,162,126,.10), transparent 60%),
      #fff;
    box-shadow: 0 16px 36px rgba(0,0,0,.08);
    padding: 16px;
  }
  .faq-cta-ig__logo img {
    width: 76px; height: 76px; object-fit: contain;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border,#e8e2dc);
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
  }
  .faq-cta-ig__body h2 {
    font-family: 'Playfair Display', serif;
    margin: 2px 0 6px;
    font-size: clamp(1.3rem, 1.1rem + .7vw, 1.6rem);
  }
  .faq-cta-ig__body p { margin: 0 0 10px; color: #5c4f45; }
  .faq-cta-ig__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand,#c9a27e);
    border-color: var(--brand,#c9a27e);
  }
  .faq-cta-ig__btn:hover { transform: translateY(-1px); }
  
  /* Responsive na dnu */
  @media (max-width: 640px) {
    .faq-page { margin-top: 110px; }
    .faq-cta-ig__card { grid-template-columns: 64px 1fr; }
    .faq-cta-ig__logo img { width: 64px; height: 64px; }
  }
  