/* =========================================
   RAWAJA FRONT CSS – loaded by plugin
   Works with any WordPress theme
========================================= */

/* =========================================
   CUSTOM HEADER
   Layout: [logo] [nav] ........... [icons]
========================================= */
#rawaja-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9990;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
  font-family: -apple-system, 'Segoe UI', system-ui, sans-serif;
}

#rawaja-header.has-admin-bar { top: 32px; }

.rawaja-header-inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  gap: 0;
}

/* ---- FAR LEFT: logo ---- */
.rawaja-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
  margin-right: 24px;
}

/* ---- nav links (next to logo) ---- */
.rawaja-header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;                  /* push actions to the right */
  justify-content: flex-start;
}

.rawaja-header-nav a,
.rawaja-nav-link {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1A1A2E !important;
  text-decoration: none !important;
  border-radius: 5px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}

.rawaja-header-nav a:hover,
.rawaja-nav-link:hover,
.rawaja-nav-active {
  color: #2D6A4F !important;
  background: rgba(45,106,79,.07);
}

.rawaja-logo-img {
  max-height: 40px;
  width: auto;
  display: block;
}

.rawaja-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2D6A4F;
  white-space: nowrap;
}

/* ---- RIGHT: action buttons ---- */
.rawaja-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.rawaja-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1A1A2E;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .18s, color .18s;
  position: relative;
  white-space: nowrap;
}

.rawaja-header-btn:hover {
  background: rgba(45,106,79,.07);
  color: #2D6A4F !important;
}

.rawaja-header-btn svg {
  display: block;
  flex-shrink: 0;
}

.rawaja-header-btn-label {
  display: none; /* hidden on desktop for cleanliness */
}

/* Cart count badge */
.rawaja-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: #F4845F;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---- Hamburger (mobile only) ---- */
.rawaja-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background .18s;
}

.rawaja-hamburger:hover { background: rgba(45,106,79,.07); }

.rawaja-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #1A1A2E;
  border-radius: 2px;
  transition: all .25s;
}

.rawaja-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rawaja-hamburger.open span:nth-child(2) { opacity: 0; }
.rawaja-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile nav drawer ---- */
.rawaja-mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  padding: 8px 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.rawaja-mobile-nav.open {
  display: flex;
  max-height: 400px;
}

.rawaja-mobile-nav-link {
  display: block;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1A2E !important;
  text-decoration: none !important;
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
}

.rawaja-mobile-nav-link:hover {
  background: rgba(45,106,79,.05);
  color: #2D6A4F !important;
}

/* ---- Expandable search bar ---- */
.rawaja-search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s;
  background: #f9f7f4;
  border-top: 1px solid transparent;
}

.rawaja-search-bar.open {
  max-height: 64px;
  border-top-color: #E5E7EB;
}

.rawaja-search-form {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 24px;
  gap: 8px;
}

.rawaja-search-form input[type="text"] {
  flex: 1;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s;
}

.rawaja-search-form input[type="text"]:focus {
  border-color: #2D6A4F;
}

.rawaja-search-form button[type="submit"] {
  background: #2D6A4F;
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.88rem;
}

.rawaja-search-form button[type="button"] {
  background: none;
  border: none;
  color: #6B7280;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.rawaja-search-form button[type="button"]:hover {
  background: #f3f4f6;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .rawaja-header-nav { display: none; }
  .rawaja-hamburger  { display: flex; }
  .rawaja-header-inner { height: 54px; }
}

@media (max-width: 480px) {
  .rawaja-header-inner { padding: 0 12px; height: 52px; }
  body { padding-top: 52px !important; }
}

/* ---- Variables ---- */
:root {
  --rw-primary:   #2D6A4F;
  --rw-secondary: #52B788;
  --rw-accent:    #F4845F;
  --rw-bg:        #F9F7F4;
  --rw-surface:   #FFFFFF;
  --rw-text:      #1A1A2E;
  --rw-muted:     #6B7280;
  --rw-border:    #E5E7EB;
  --rw-radius:    8px;
  --rw-radius-lg: 16px;
  --rw-shadow:    0 2px 12px rgba(0,0,0,0.08);
  --rw-shadow-h:  0 6px 24px rgba(0,0,0,0.14);
}

/* =========================================
   HERO
========================================= */
/* ---- Hide WordPress page title on homepage ---- */
.home .entry-title,
.home .page-title,
.home h1.entry-title,
body.home .ast-page-title-wrap,
body.home .entry-header,
body.page .entry-header .entry-title {
  display: none !important;
}

/* =========================================
   HERO BANNER — layout Canva style
   Kiri: warna solid + teks besar
   Kanan: ilustrasi / gambar
========================================= */
.rawaja-hero {
  position: relative;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  padding: 0;
  display: flex !important;
  flex-direction: row !important;   /* paksa horizontal */
  align-items: stretch;
  min-height: 200px;
  max-height: 280px;                /* cegah terlalu tinggi */
  border-radius: 0;
}

/* LEFT panel – warna solid hijau muda hangat */
.rawaja-hero-left {
  flex: 0 0 48%;
  background: #D4EDE1;        /* hijau muda pastel — menyatu dgn #2D6A4F */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
  position: relative;
  z-index: 1;
}

/* Subtle texture dots di kiri */
.rawaja-hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,106,79,.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* Judul besar */
.rawaja-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #2D6A4F;             /* hijau tua – warna primary Rawaja */
  line-height: 1.15;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

/* Subtitle bar — mirip canva: strip warna + teks */
.rawaja-hero-subtitle-bar {
  display: inline-block;
  background: #2D6A4F;        /* hijau tua — ganti biru canva */
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* CTA button */
.rawaja-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F4845F;        /* oranye accent */
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.rawaja-hero-cta:hover {
  background: #e05a35;
  transform: translateY(-2px);
  color: #fff !important;
}

/* RIGHT panel – ilustrasi */
.rawaja-hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #D4EDE1;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rawaja-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* contain: tidak crop, tampilkan full gambar */
  object-position: center center;
  display: block;
}

/* Placeholder jika belum ada gambar */
.rawaja-hero-illustration-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EBF7EF 0%, #D4EDE1 100%);
}

.rawaja-hero-illustration-placeholder svg {
  width: 120px;
  opacity: .35;
}

/* Responsive */
@media (max-width: 768px) {
  .rawaja-hero         { flex-direction: column; }
  .rawaja-hero-left    { flex: none; padding: 28px 24px; }
  .rawaja-hero-right   { min-height: 180px; }
  .rawaja-hero h1      { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .rawaja-hero h1               { font-size: 1.25rem; }
  .rawaja-hero-subtitle-bar     { font-size: 0.78rem; }
  .rawaja-hero-left             { padding: 20px 18px; }
}

/* =========================================
   SECTION WRAPPER
========================================= */
.rawaja-section {
  padding: 28px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  overflow: hidden;          /* ← cegah overflow kanan */
}

.rawaja-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: nowrap;         /* ← jaga header tetap 1 baris */
}

.rawaja-section-title {
  font-size: 1.1rem;         /* ← lebih kecil */
  font-weight: 700;
  color: var(--rw-text);
  margin: 0;
  padding-left: 12px;
  position: relative;
  white-space: nowrap;
}

.rawaja-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: var(--rw-primary);
  border-radius: 4px;
}

.rawaja-view-all {
  color: var(--rw-primary);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid var(--rw-primary);
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.rawaja-view-all:hover {
  background: var(--rw-primary);
  color: #fff;
}

/* =========================================
   CATEGORY PILLS
========================================= */
.rawaja-category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.rawaja-pill {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 2px solid var(--rw-border);
  color: var(--rw-muted);
  background: var(--rw-surface);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.rawaja-pill:hover,
.rawaja-pill.active {
  border-color: var(--rw-primary);
  color: var(--rw-primary);
  background: rgba(45,106,79,.06);
}

/* =========================================
   PRODUCT GRID & CARD
========================================= */
.rawaja-product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
}

/* Override Astra WooCommerce grid yang kadang nge-wrap produk */
.entry-content .rawaja-product-grid,
.ast-container .rawaja-product-grid,
.site-content .rawaja-product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)) !important;
  gap: 14px !important;
}

/* =========================================
   BOOKS + PROMO TWO-COLUMN LAYOUT
========================================= */
.rawaja-books-promo-wrap {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  align-items: start;
}

.rawaja-books-column {
  min-width: 0;                  /* ← penting: cegah overflow */
}

.rawaja-books-column .rawaja-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
}

.rawaja-promo-column {
  flex-shrink: 0;
}

/* Promo vertical (untuk sidebar) */
.rawaja-promo-vertical {
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 24px 20px !important;
  border-radius: 12px;
  min-height: 200px;
}

.rawaja-promo-vertical h2 {
  font-size: 1.1rem !important;
  margin-bottom: 8px !important;
}

.rawaja-promo-vertical p {
  font-size: 0.82rem !important;
  margin-bottom: 16px !important;
}

.rawaja-promo-vertical .promo-cta {
  width: 100%;
  text-align: center;
  display: block !important;
}

@media (max-width: 768px) {
  .rawaja-books-promo-wrap {
    grid-template-columns: 1fr;
  }
  .rawaja-promo-column { order: -1; }   /* promo di atas di mobile */
}

.rawaja-product-card {
  background: var(--rw-surface);
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
  box-shadow: var(--rw-shadow);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.rawaja-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rw-shadow-h);
}

.rawaja-product-card .product-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--rw-bg);
}

.rawaja-product-card .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.rawaja-product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.rawaja-product-card .product-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Badges */
.rawaja-badge-out-of-stock,
.rawaja-badge-category,
.rawaja-badge-discount {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .3px;
  z-index: 2;
}

.rawaja-badge-out-of-stock {
  top: 8px; left: 8px;
  background: rgba(0,0,0,.6);
  color: #fff;
  text-transform: uppercase;
}

.rawaja-badge-category {
  top: 8px; right: 8px;
  background: var(--rw-primary);
  color: #fff;
}

.rawaja-badge-preloved  { background: #6B4C2A !important; }
.rawaja-badge-preorder  { background: #1D3557 !important; }

.rawaja-badge-discount {
  bottom: 8px; left: 8px;
  background: var(--rw-accent);
  color: #fff;
}

/* Wishlist heart btn on card */
.rawaja-wishlist-btn {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: all .2s;
  z-index: 3;
  padding: 0;
}

.rawaja-wishlist-btn:hover,
.rawaja-wishlist-btn.active {
  background: var(--rw-accent);
}

.rawaja-wishlist-btn svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: #888;
  stroke-width: 2;
}

.rawaja-wishlist-btn.active svg,
.rawaja-wishlist-btn:hover svg {
  fill: #fff;
  stroke: #fff;
}

/* Card body */
.rawaja-product-card .product-info {
  padding: 12px;
}

.rawaja-product-card .product-title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  color: var(--rw-text);
}

.rawaja-product-card .product-title a {
  color: inherit;
  text-decoration: none;
}

.rawaja-product-card .product-author {
  font-size: 0.76rem;
  color: var(--rw-muted);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rawaja-product-card .product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.rawaja-product-card .price-final {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rw-primary);
}

.rawaja-product-card .price-original {
  font-size: 0.75rem;
  color: var(--rw-muted);
  text-decoration: line-through;
}

.rawaja-product-card .product-reading-age {
  font-size: 0.7rem;
  color: var(--rw-muted);
  margin-top: 5px;
}

/* =========================================
   PROMO BANNER
========================================= */
.rawaja-promo-banner {
  background: linear-gradient(135deg, #F4845F 0%, #e05a35 100%);
  border-radius: var(--rw-radius-lg);
  padding: 36px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.rawaja-promo-banner h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
}

.rawaja-promo-banner p {
  opacity: .92;
  font-size: .95rem;
  margin: 0;
  color: #fff;
}

.rawaja-promo-banner .promo-cta {
  background: #fff;
  color: var(--rw-accent);
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .2s;
  flex-shrink: 0;
}

.rawaja-promo-banner .promo-cta:hover {
  transform: scale(1.04);
  color: var(--rw-accent);
}

/* =========================================
   WHATSAPP FLOAT BUTTON  ← CRITICAL FIX
========================================= */
a.rawaja-whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 0 !important;
  max-width: 54px !important;
  background: #25D366 !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 18px rgba(37,211,102,.45) !important;
  z-index: 9999 !important;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden !important;
  padding: 0 !important;
}

a.rawaja-whatsapp-float:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 6px 26px rgba(37,211,102,.55) !important;
  color: #fff !important;
}

a.rawaja-whatsapp-float svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* =========================================
   STATUS BADGES
========================================= */
.rawaja-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.rawaja-status.waiting     { background: #FEF3C7; color: #92400E; }
.rawaja-status.ongoing     { background: #DBEAFE; color: #1E40AF; }
.rawaja-status.completed   { background: #D1FAE5; color: #065F46; }
.rawaja-status.packing     { background: #EDE9FE; color: #4C1D95; }
.rawaja-status.in-delivery { background: #DBEAFE; color: #1E40AF; }
.rawaja-status.delivered   { background: #D1FAE5; color: #065F46; }

/* =========================================
   BUTTONS
========================================= */
.rawaja-btn-primary {
  display: inline-block;
  background: var(--rw-primary);
  color: #fff !important;
  border: none;
  padding: 13px 22px;
  border-radius: var(--rw-radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background .2s, transform .1s;
}

.rawaja-btn-primary:hover { background: #1e4d38; }
.rawaja-btn-primary:active { transform: scale(.98); }
.rawaja-btn-primary:disabled {
  background: var(--rw-border);
  color: var(--rw-muted) !important;
  cursor: not-allowed;
}

.rawaja-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #25D366;
  color: #fff !important;
  border: none;
  padding: 13px 22px;
  border-radius: var(--rw-radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}

.rawaja-btn-whatsapp:hover { background: #1aab52; color: #fff !important; }

/* =========================================
   ONBOARDING POPUP
========================================= */
.rawaja-onboarding-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
  display: none;
}
.rawaja-onboarding-overlay.active { display: block; }

.rawaja-guide-popup {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border-radius: var(--rw-radius-lg);
  padding: 18px 22px;
  max-width: 270px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  font-size: .86rem;
  line-height: 1.5;
}

.rawaja-guide-popup .guide-title {
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 5px;
  color: var(--rw-primary);
}

.rawaja-guide-popup .guide-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 8px;
}

.rawaja-guide-popup .guide-btn-skip {
  color: var(--rw-muted);
  font-size: .8rem;
  cursor: pointer;
}

.rawaja-guide-popup .guide-btn-next {
  background: var(--rw-primary);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
}

/* =========================================
   EMPTY STATE
========================================= */
.rawaja-empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--rw-muted);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .rawaja-hero { padding: 52px 20px; }
  .rawaja-hero h1 { font-size: 1.8rem; }
  .rawaja-promo-banner { padding: 24px; flex-direction: column; text-align: center; }
  .rawaja-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rawaja-section { padding: 36px 16px; }
}

@media (max-width: 400px) {
  .rawaja-hero h1 { font-size: 1.5rem; }
  .rawaja-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
