/* =================================================
   HERO SECTION – MODERN GLASSMORPHISM (CLEAN)
================================================= */

.pf-hero {
    max-width: 1200px;
    margin: 15px auto;
    background: linear-gradient(135deg, #00A36C 0%, #16a34a 100%);
    padding: 40px 20px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 163, 108, 0.2);
}

/* Dekorasi Latar Belakang */
.pf-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pf-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pf-hero-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pf-hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Kategori Slider-like untuk Mobile */
.pf-hero-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Tombol Kategori Elegan */
.pf-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-cat-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.5);
}

.pf-cat-btn.active {
    background: #ffffff;
    color: #00A36C;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff;
}

.pf-cat-icon {
    font-size: 18px;
    line-height: 1;
}

/* Penyesuaian Responsif */
@media (max-width: 767px) {
    .pf-hero {
        margin: 10px;
        padding: 30px 15px;
    }
    .pf-hero-title { font-size: 22px; }
    .pf-hero-subtitle { font-size: 13px; }
    
    .pf-hero-categories {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none; /* Firefox */
    }
    .pf-hero-categories::-webkit-scrollbar { display: none; } /* Chrome/Safari */
    
    .pf-cat-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .pf-hero-title { font-size: 42px; }
    .pf-hero-subtitle { font-size: 17px; }
    .pf-hero { padding: 60px 20px; }
}
/* =================================================
   GLOBAL RESET & SAFETY
================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f5f6f8;
  color: #222;
}

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



/* =================================================
   SINGLE PRODUCT
================================================= */

.single-product {
  padding: 16px;
}

.product-detail {
  display: flex;
  flex-direction: column;
  gap:10px;
}

.product-image img {
  width: 100%;
  border-radius: 16px;
}

.product-summary {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
}

.product-price {
  margin: 12px 0;
}

.price-sale,
.price-normal {
  font-size: 22px;
  font-weight: bold;
}

.price-sale {
  color: #00A36C;
}

.discount-label {
  display: inline-block;
  background: #00A36C;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 12px;
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.product-meta li {
  margin-bottom: 6px;
}

.stock.tersedia {
  color: #00A36C;
}

.stock.habis {
  color: red;
}

/* =================================================
   ARCHIVE
================================================= */

.archive-header {
  padding: 16px;
}

.archive-header h1 {
  font-size: 20px;
  font-weight: bold;
}

.archive-content {
  padding: 0 16px 16px;
}

/* =================================================
   HEADER – PETUNGFRESH
================================================= */

.pf-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.pf-header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.pf-logo {
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
}

.pf-petung {
  color: #FF8C00;
}

.pf-fresh {
  color: #00A36C;
}

/* =================================================
   HERO – FINAL CLEAN & RAMPING
================================================= */

/* MOBILE DEFAULT */
.pf-hero {
  background: linear-gradient(135deg, #00A36C, #2ECC71);
  padding: 12px 16px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.pf-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pf-hero-title {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.pf-hero-subtitle {
  font-size: 13px;
  margin-top: 6px;
  color: #eafff6;
}

/* TABLET */
@media (min-width: 768px) {
  .pf-hero {
    padding: 24px 16px;
  }

  .pf-hero-title {
    font-size: 26px;
  }

  .pf-hero-subtitle {
    font-size: 15px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .pf-hero {
    padding: 32px 16px;
  }

  .pf-hero-title {
    font-size: 32px;
  }

  .pf-hero-subtitle {
    font-size: 17px;
  }
}

/* =================================================
   SEARCH BAR (LIVE)
================================================= */

.pf-search-bar {
  position: sticky;
  top: 64px;
  z-index: 998;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.pf-search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6f6f6;
  border-radius: 14px;
  padding: 12px 14px;
}

.pf-search-icon {
  font-size: 18px;
  opacity: 0.6;
}

#pf-live-search {
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  width: 100%;
}

/* =================================================
   RESPONSIVE LOCK
================================================= */

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
/* =========================================================
   PRODUCT SECTION
========================================================= */
.pf-product-section {
  padding: 16px 0 48px;
  background: #f9f9f9;
}

/* =========================================================
   PRODUCT GRID
========================================================= */
.pf-product-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
    .pf-product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* =========================================================
   PRODUCT CARD (FIXED SHAPE)
========================================================= */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   PRODUCT IMAGE (SUPPORT ACF IMAGE ARRAY)
========================================================= */
.product-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f2f2f2;
    display: block;
    overflow: hidden;
    margin-bottom: 0; /* Menghilangkan gap ke body teks */
}

/* Target langsung tag img dari ACF Image Array */
.product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* =========================================================
   BADGE DISKON
========================================================= */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00A36C;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* =========================================================
   PRODUCT BODY (VIRTICAL STRUCTURE - TIGHT SPACING)
========================================================= */
.product-body {
    padding: 6px 12px 12px; /* Padding atas dibuat sangat minim ke gambar */
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex-grow: 1;
}

/* =========================================================
   PRODUCT TITLE
========================================================= */
.product-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    color: #222;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}

/* =========================================================
   PRODUCT META (WEIGHT + UNIT)
========================================================= */
.product-meta {
    font-size: 13px;
    color: #777;
    margin-top: -2px; /* Menempel rapat ke judul */
    margin-bottom: 4px;
    line-height: 1;
}

/* =========================================================
   PRODUCT PRICE
========================================================= */
.product-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    padding-top: 2px;
}
.header-cart {
    position: relative;
    font-size: 20px;
    cursor: pointer;
}

.header-cart .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #28a745;
    color: #fff;
    font-size: 12px;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
}

.price-normal,
.price-sale {
    font-size: 16px;
    font-weight: 800;
    color: #00A36C;
}

.price-old {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
}

/* =========================================================
   BUY BUTTON
========================================================= */
.btn-buy {
    margin-top: 8px;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    border: none;
    background: #00A36C;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.btn-buy:hover {
    background: #00905E;
}

/* =========================================================
   MOBILE FINE TUNING (ULTRA COMPACT)
========================================================= */
@media (max-width: 480px) {
    .pf-product-grid {
        gap: 10px;
        padding: 0 10px;
    }

    .product-body {
        padding: 4px 10px 10px; /* Jarak sangat rapat ke gambar di HP */
    }
    
    .product-title {
        font-size: 14px;
        min-height: 32px;
        line-height: 1.1;
    }

    .product-meta {
        font-size: 12px;
        margin-top: -3px;
    }

    .price-normal,
    .price-sale {
        font-size: 15px;
    }

    .btn-buy {
        padding: 8px;
        font-size: 13px;
        margin-top: 6px;
    }
}
/* Sticky footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
    z-index: 999;
}

.footer-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

.footer-item {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-item span {
    font-size: 12px;
    margin-top: 2px;
}

/* Hover effect */
.footer-item:hover {
    color: #28a745;
    transform: translateY(-2px);
}

/* Active page highlight (optional) */
.footer-item.active {
    color: #28a745;
    font-weight: bold;
}
/* Produk stok habis */
.product-card.out-of-stock {
    opacity: 0.5;         /* tampak redup / mati */
    pointer-events: none; /* card & tombol tidak bisa diklik */
}
/* PF CART PAGE STYLES */
.pf-cart-page {
    background-color: #f8fafc;
    min-height: 80vh;
    padding-bottom: 50px;
}

.cart-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 16px;
}

.cart-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e293b;
}

/* Items Card */
.cart-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
}

.item-image {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    background: #f1f5f9;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    font-weight: 700;
    font-size: 15px;
    margin: 0;
    color: #1e293b;
}

.item-meta {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* Footer & Price inside Card */
.item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.price-sale {
    font-weight: 800;
    color: #00A36C;
    font-size: 16px;
}

/* Qty Picker */
.qty-picker {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 10px;
}

.qty-btn {
    background: none;
    border: none;
    font-weight: 800;
    cursor: pointer;
    color: #1e293b;
    font-size: 18px;
    padding: 0 4px;
}

.qty-val {
    font-weight: 700;
    font-size: 14px;
    min-width: 24px;
    text-align: center;
}

/* Buttons */
.btn-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #ef4444;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.cart-summary {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-top: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px -2px rgba(0,0,0,0.08);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #64748b;
}

.free-shipping-label {
    color: #00A36C;
    font-weight: 700;
}

.summary-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px dashed #e2e8f0;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    color: #1e293b;
}

.total-amount {
    color: #008558;
}

.checkout-btn {
    width: 100%;
    background: #00A36C;
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background: #008558;
}

.cart-actions-bottom {
    text-align: center;
    margin-top: 30px;
}

.btn-back-shop {
    color: #00A36C;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 0;
    background: white;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
}
.pf-single-resep { background: #f9f9f9; padding: 40px 0; }
    .resep-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
    
    .resep-header { margin-bottom: 30px; }
    .resep-breadcrumb a { color: #2d6a4f; text-decoration: none; font-size: 14px; }
    .entry-title { font-size: 32px; color: #333; margin-top: 10px; }

    .resep-flex-layout { display: flex; gap: 30px; align-items: flex-start; }
    
    /* Main Content */
    .resep-main-content { flex: 1; background: white; padding: 30px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
    .resep-featured-image img { width: 100%; border-radius: 10px; margin-bottom: 25px; }
    .resep-instructions h2 { border-bottom: 2px solid #2d6a4f; display: inline-block; margin-bottom: 20px; }

    /* Shopping Sidebar */
    .resep-sidebar-shopping { width: 350px; position: sticky; top: 20px; }
    .shopping-widget-card { background: white; border-radius: 15px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 5px solid #2d6a4f; }
    .shopping-widget-card h3 { margin-top: 0; font-size: 18px; display: flex; align-items: center; gap: 8px; }
    .widget-subtitle { font-size: 12px; color: #777; line-height: 1.4; margin-bottom: 20px; }

    .bahan-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eee; }
    .bahan-item.stok-habis { opacity: 0.6; }
    .bahan-img img { width: 45px; height: 45px; object-fit: cover; border-radius: 8px; }
    .bahan-info { flex: 1; display: flex; flex-direction: column; }
    .bahan-name { font-size: 14px; font-weight: 600; color: #333; }
    .bahan-price { font-size: 12px; color: #2d6a4f; }

    .btn-mini-add { background: #2d6a4f; color: white; border: none; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; }
    .badge-habis { font-size: 10px; background: #eee; padding: 3px 8px; border-radius: 4px; color: #999; }

    .shopping-summary { margin-top: 25px; background: #f8fdfb; padding: 15px; border-radius: 10px; }
    .total-box { display: flex; justify-content: space-between; margin-bottom: 15px; }
    .total-box strong { font-size: 18px; color: #2d6a4f; }

    .btn-checkout-all { width: 100%; padding: 15px; background: #2d6a4f; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s; }
    .btn-checkout-all:hover { background: #1b4332; }
    .btn-checkout-all:disabled { background: #ccc; cursor: not-allowed; }
    
    .notif-stok-kurang { font-size: 10px; color: #d9534f; margin-top: 10px; text-align: center; }

    @media (max-width: 850px) {
        .resep-flex-layout { flex-direction: column; }
        .resep-sidebar-shopping { width: 100%; position: static; }
    }

.btn-primary-inline {
    display: inline-block;
    background: #00A36C;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
}
/* CSS UNTUK STICKY FOOTER MENU 
    Gabungkan ke dalam file main.css Anda
*/

:root {
    --pf-primary: #00A36C;
    --pf-accent: #FF8C00;
    --pf-text-muted: #64748b;
    --pf-white: #ffffff;
}

/* Tambahkan margin pada body agar konten tidak tertutup footer */
body {
    padding-bottom: 90px;
}

.pf-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid #e2e8f0;
    z-index: 9999;
    /* Menangani Safe Area untuk iPhone modern */
    padding-bottom: env(safe-area-inset-bottom, 15px);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.05);
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    height: 80px; /* Ukuran besar sesuai permintaan */
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--pf-text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    gap: 6px;
    position: relative;
}

/* Ikon diperbesar menjadi 24px */
.footer-item i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Teks Label */
.footer-item span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Efek Menu Aktif */
.footer-item.active {
    color: var(--pf-primary);
}

.footer-item.active i {
    transform: translateY(-3px) scale(1.1);
}

/* Badge Keranjang Belanja */
.cart-badge {
    position: absolute;
    top: 6px;
    right: 20%;
    background-color: var(--pf-accent);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50px;
    border: 2px solid white;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .footer-nav {
        height: 70px;
    }
}
/* Global Reset */
:root {
    --pf-primary: #00A36C;
    --pf-secondary: #2ECC71;
    --pf-accent: #FF8C00;
    --pf-text-main: #1e293b;
    --pf-text-muted: #64748b;
    --pf-bg: #f8fafc;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--pf-bg);
    padding-bottom: 90px;
}

/* Header & Hero */
.pf-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pf-hero {
    background: linear-gradient(135deg, var(--pf-primary), var(--pf-secondary));
    padding: 30px 20px;
    color: #fff;
    text-align: center;
    border-radius: 0 0 25px 25px;
}

/* Product Grid */
.pf-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
}

@media (min-width: 768px) {
    .pf-product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.product-card:hover { transform: translateY(-5px); }

/* Sticky Footer */
.pf-sticky-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #edf2f7;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom, 15px);
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    height: 75px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-item {
    text-decoration: none;
    color: var(--pf-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.footer-item.active { color: var(--pf-primary); }

.icon-wrapper { position: relative; }

.cart-badge {
    position: absolute;
    top: -5px; right: -8px;
    background: var(--pf-accent);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
/* PAGE PROMO SPECIFIC STYLES */
.pf-promo-hero {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-radius: 0 0 30px 30px;
    margin-bottom: 30px;
}

.pf-promo-badge {
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.4);
}

.pf-promo-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pf-promo-desc {
    font-size: 14px;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto 20px;
}

.pf-promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

.timer-box {
    background: #ffffff;
    color: #ff4757;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 14px;
}

/* Tag Diskon di Card */
.promo-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.pf-empty-promo {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.pf-empty-promo img {
    width: 120px;
    margin-bottom: 20px;
    opacity: 0.5;
}
.timer-box {
    font-family: 'Courier New', Courier, monospace; /* Font tetap agar angka tidak geser */
    min-width: 35px;
    display: inline-block;
    text-align: center;
}

.expired {
    background: #fff;
    color: #ff4757;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
}
