/*
Theme Name: Florist Jakarta
Theme URI: https://kirimbungajakarta.com
Author: Florist Jakarta
Description: Tema pSEO florist Jabodetabek — bunga papan, papan bunga, karangan bunga, bunga duka cita.
Version: 2.0
Requires at least: 5.8
Requires PHP: 7.4
Text Domain: florist-jakarta
*/

/* ============================================================
   DESIGN SYSTEM — Florist Jakarta
   Palet: Hijau hutan #1B4332 + Emas #C8A84B + Krem #FAF7F2
   ============================================================ */

:root {
  --green:        #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #52B788;
  --gold:         #C8A84B;
  --gold-light:   #E3CD8E;
  --cream:        #FAF7F2;
  --white:        #FFFFFF;
  --ink:          #1A2616;
  --ink-soft:     #5A6B54;
  --line:         #E8EDE6;

  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 999px;

  --shadow-sm: 0 2px 8px rgba(27,67,50,0.08);
  --shadow-md: 0 8px 24px rgba(27,67,50,0.12);
  --shadow-lg: 0 16px 40px rgba(27,67,50,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 56px; /* ruang sticky bar */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   TOPBAR
   ============================================================ */
.fj-topbar {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.4px;
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.fj-topbar a { color: var(--gold-light); }
.fj-topbar .badge {
  background: var(--gold);
  color: var(--green);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.fj-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.fj-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.fj-brand { display: flex; align-items: center; gap: 10px; }
.fj-brand-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(27,67,50,0.3);
}
.fj-brand-mark svg { width: 22px; height: 22px; }
.fj-brand-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.8px;
}
.fj-brand-tagline {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.fj-nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background .15s;
}
.fj-nav-cta:hover { background: var(--green-mid); }

/* ============================================================
   HERO
   ============================================================ */
.fj-hero {
  background:
    radial-gradient(ellipse at top right, rgba(200,168,75,0.15), transparent 55%),
    linear-gradient(160deg, #0F2B1E 0%, var(--green) 55%, #1B5C3F 100%);
  color: var(--white);
  padding: 64px 20px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fj-hero::before {
  content: "✿";
  position: absolute;
  font-size: 300px;
  color: rgba(255,255,255,0.03);
  top: -80px; left: -60px;
  transform: rotate(-15deg);
  pointer-events: none;
}
.fj-hero::after {
  content: "✿";
  position: absolute;
  font-size: 240px;
  color: rgba(255,255,255,0.03);
  bottom: -80px; right: -40px;
  transform: rotate(20deg);
  pointer-events: none;
}
.fj-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.fj-hero h1 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 16px;
}
.fj-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 600;
}
.fj-hero p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 440px;
  margin: 0 auto 32px;
}
.fj-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   TOMBOL
   ============================================================ */
.fj-btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s, box-shadow .15s;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
.fj-btn:active { transform: scale(0.97); }
.fj-btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.fj-btn-outline {
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  background: transparent;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.fj-trust {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--sans);
}
.fj-trust-item { text-align: center; }
.fj-trust-item .num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}
.fj-trust-item .lbl {
  font-size: 10.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.fj-trust-item .stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}
.fj-trust-sep { color: var(--line); font-size: 20px; }

/* ============================================================
   SECTION UMUM
   ============================================================ */
.fj-section { padding: 60px 20px; }
.fj-section-cream { background: var(--cream); }
.fj-section-green {
  background: linear-gradient(160deg, #0F2B1E, var(--green));
  color: var(--white);
}

.fj-section-head { text-align: center; margin-bottom: 40px; }
.fj-section-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.fj-section-green .fj-section-eyebrow { color: var(--gold-light); }
.fj-section-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 12px;
}
.fj-section-green .fj-section-title { color: var(--white); }
.fj-section-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

/* ============================================================
   GRID KATEGORI
   ============================================================ */
.fj-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
}
.fj-cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  padding: 22px 18px;
  transition: box-shadow .2s, transform .2s;
  display: block;
}
.fj-cat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.fj-cat-icon { font-size: 26px; margin-bottom: 12px; }
.fj-cat-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}
.fj-cat-card p {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   OCCASION PILLS
   ============================================================ */
.fj-occasion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto;
}
.fj-occasion-pill {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--green-mid);
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fj-occasion-pill:hover { background: var(--green); }

/* ============================================================
   TESTIMONI
   ============================================================ */
.fj-testi-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}
.fj-testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.fj-testi-card .stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.fj-testi-card blockquote {
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 10px;
}
.fj-testi-card .who {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   AREA GRID
   ============================================================ */
.fj-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}
.fj-area-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: block;
  transition: background .15s;
}
.fj-area-card:hover { background: rgba(255,255,255,0.14); }
.fj-area-card h3 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.fj-area-card p {
  font-family: var(--sans);
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.fj-cta {
  text-align: center;
  padding: 56px 20px 48px;
  background: linear-gradient(160deg, #0F2B1E, var(--green));
  color: var(--white);
}
.fj-cta h2 { font-size: 24px; font-weight: 400; margin-bottom: 10px; }
.fj-cta p {
  font-family: var(--sans);
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.fj-action-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.fj-pill-wa {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fj-pill-tel {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fj-foot-meta {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* ============================================================
   STICKY BAR MOBILE
   ============================================================ */
.fj-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: flex;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
}
.fj-sticky a {
  flex: 1;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.fj-sticky .fj-sticky-tel {
  color: var(--green);
  border-right: 1px solid var(--line);
}
.fj-sticky .fj-sticky-wa {
  color: var(--green);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
@media (min-width: 768px) {
  .fj-sticky { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   PAGE HERO (halaman dalam)
   ============================================================ */
.fj-page-hero {
  background: linear-gradient(160deg, #0F2B1E 0%, var(--green) 70%);
  color: var(--white);
  padding: 52px 20px 44px;
  text-align: center;
}
.fj-breadcrumb {
  font-family: var(--sans);
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.fj-breadcrumb a { color: var(--gold-light); }
.fj-breadcrumb a:hover { text-decoration: underline; }
.fj-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.fj-page-hero h1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  max-width: 600px;
  margin: 0 auto 12px;
}
.fj-page-hero p {
  font-family: var(--sans);
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   KATALOG (page-kategori.php)
   ============================================================ */
.fj-kat-section { padding: 48px 20px; }
.fj-kat-section:nth-of-type(even) { background: var(--cream); }
.fj-kat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 24px;
}
.fj-kat-head .icon { font-size: 28px; }
.fj-kat-head h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
}
.fj-kat-head p {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.fj-produk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.fj-produk-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.fj-produk-card .info h4 {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.fj-produk-card .info p {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.fj-produk-card .price {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.fj-produk-card .order-btn {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--gold-light);
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background .15s;
}
.fj-produk-card .order-btn:hover { background: var(--gold); }

/* ============================================================
   KONTEN ARTIKEL (page-kota.php, page-kecamatan.php)
   ============================================================ */
.fj-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 20px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
}
.fj-article h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  margin: 36px 0 14px;
}
.fj-article h2:first-child { margin-top: 0; }
.fj-article h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--green-mid);
  margin: 24px 0 10px;
}
.fj-article p { margin-bottom: 16px; }
.fj-article ul, .fj-article ol { margin: 0 0 16px 22px; }
.fj-article li { margin-bottom: 6px; }
.fj-article a { color: var(--green); text-decoration: underline; text-decoration-color: var(--gold); }
.fj-article blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 20px 0;
}

/* ============================================================
   SCHEMA / INFO BOX
   ============================================================ */
.fj-info-box {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 24px 0;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.7;
}
.fj-info-box strong { color: var(--green); }

/* ============================================================
   KECAMATAN LIST
   ============================================================ */
.fj-kec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
}
.fj-kec-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background .15s, border-color .15s;
  display: block;
}
.fj-kec-link:hover {
  background: var(--white);
  border-color: var(--gold);
}

/* ============================================================
   FAQ
   ============================================================ */
.fj-faq { max-width: 680px; margin: 0 auto; }
.fj-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.fj-faq-item:last-child { border-bottom: none; }
.fj-faq-q {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}
.fj-faq-a {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   404
   ============================================================ */
.fj-404 {
  text-align: center;
  padding: 80px 20px;
  max-width: 480px;
  margin: 0 auto;
}
.fj-404 .code {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.fj-404 h1 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 12px;
}
.fj-404 p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .fj-hero h1 { font-size: 40px; }
  .fj-hero-actions { flex-direction: row; }
  .fj-btn { width: auto; max-width: none; }
  .fj-cat-grid { grid-template-columns: repeat(4, 1fr); max-width: 920px; }
  .fj-testi-grid { flex-direction: row; max-width: 920px; }
  .fj-area-grid { grid-template-columns: repeat(3, 1fr); max-width: 920px; }
  .fj-kec-grid { grid-template-columns: repeat(3, 1fr); }
  .fj-produk-card { flex-wrap: nowrap; }
}

@media (min-width: 1024px) {
  .fj-area-grid { grid-template-columns: repeat(4, 1fr); }
  .fj-kec-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   MAPS EMBED
   ============================================================ */
.fj-maps-wrap {
  margin: 32px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.fj-maps-wrap iframe {
  display: block;
  width: 100%;
}
