/* =============================================
   PARTILAHSHOP - style.css
   ============================================= */

/* ── BODY ── */
body {
    padding-top: 90px; /* dari 58tinggi navbar */
}

/* padding top 100 */
h3.text-white          { padding-top: 80px; }
div#home.px-3.mb-3     { padding-top: 100px; }
h3#product.text-center { padding-top: 100px; }

/* Judul di halaman (bukan navbar) */
.my-profession        { font-style: oblique; color: #010101; }
.my-profession span   { color: #fa5b0f; }

/* ── FORM ── */
.error               { color: red; font-size: 12px; }
.input-error         { border: 1px solid red; }
textarea#address.form-control { height: 10rem; margin: 0.5rem 0 1%; }
input#name.form-control       { margin: 0.5rem 0 1%; }
label.form-label     { position: relative; }


  


/* =========================================
   NAVBAR
   ========================================= */
.custom-navbar {
    height: auto;
    padding: 10px 18px 6px;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    z-index: 1040;
}

.nav-brand h1 {
    font-size: 1.6rem;
    font-style: oblique;
    font-weight: 700;
    color: #eaeaea !important;
    margin: 0 0 4px 0;
    white-space: nowrap;
}

 div.nav-brand { 
    display: flex; 
   
    align-items: center; gap: 12px;
 } 

.nav-brand h1 span {
    color: #fa5b0f !important;
    
}

.nav-menu .list-inline    { white-space: nowrap; margin: 0; }
.nav-menu .list-inline-item { margin: 0 3px; }

svg.feather.feather-home {
    color: #ffffff;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 600;
    color: #eaeaea !important;
    text-decoration: none;
    padding: 4px 3px;
    transition: color 0.2s ease;
}

.nav-menu a:hover { color: #fa5b0f !important; }

/* Tombol ikon 🔍 di navbar */
.btn-search-toggle {
    background: none;
    border: none;
    color: #eaeaea;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: color 0.2s, background 0.2s;
    vertical-align: middle;
}

.btn-search-toggle:hover {
    color: #fa5b0f;
    background: rgba(255,255,255,0.08);
}

.btn-search-toggle svg { width: 18px; height: 18px; }

/* =========================================
   SEARCH BAR — slide down di bawah navbar
   ========================================= */
.search-bar-slide {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    background: #1a1a2e;
    z-index: 1039;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 14px;
}

.search-bar-slide.open {
    max-height: 70px;
    padding: 10px 14px;
}

.search-bar-inner {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    height: 42px;
}

.search-icon-left { padding: 0 10px; color: #888; flex-shrink: 0; }
.search-icon-left svg { width: 17px; height: 17px; }

.search-bar-inner input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9rem;
    padding: 0 8px;
    color: #333;
    background: transparent;
}

.search-bar-inner input::placeholder { color: #aaa; }

#btnCloseSearch {
    background: none;
    border: none;
    padding: 0 12px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    transition: color 0.2s;
    flex-shrink: 0;
}

#btnCloseSearch:hover { color: #fa5b0f; }
#btnCloseSearch svg   { width: 16px; height: 16px; }

/* Saat search bar terbuka, konten turun */
body.search-open { padding-top: 146px; }

/* ── Responsive navbar ── */
 @media (max-width: 480px) {
    .custom-navbar { padding: 20px 8px 6px; }
     /* .nav-brand h1  { font-size: 1.05rem; }  */
    .nav-menu a    { font-size: 0.95rem; }
    .nav-menu .list-inline-item { margin: 0 1px; }
}

@media (max-width: 360px) {
    .nav-menu a { font-size: 0.82rem; }
} 


/* ── TOMBOL KERANJANG ── */
button.cart-animated.position-fixed {
    z-index: 9999;
    margin-top: 95px !important;
}


/* ── WHATSAPP FLOAT ── */
/* .whatsapp-float {
    position: fixed;
    width: 44px;
    height: 44px;
    left: 1.5rem;
    bottom: 1.5rem;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: ring 2s infinite ease-in-out;
    } */

/* =========================================
   OPERATOR ANIME WIDGET (WhatsApp)
   ========================================= */
.wa-trigger-btn {
    position: fixed;
    bottom: 5rem;
    right: 1.4rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    border: 3px solid #25d366;
    box-shadow: 0 4px 18px rgba(37,211,102,0.5);
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: waFloat 3s ease-in-out infinite;
}

.wa-trigger-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wa-trigger-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.65);
    animation-play-state: paused;
}

/* Titik online berkedip */
.wa-online-pulse {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 13px;
    height: 13px;
    background: #4caf50;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: pulseDot 1.4s infinite;
}

/* Popup card — muncul di atas tombol, rata kanan */
.wa-popup-card {
    position: fixed;
    bottom: 7.5rem;
    right: 1.4rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    padding: 14px 16px 14px 14px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    min-width: 240px;
    max-width: 280px;
}

.wa-popup-card.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Tombol tutup */
.wa-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: #bbb;
    font-size: 14px;
    cursor: pointer;
    padding: 2px 5px;
    transition: color 0.2s;
    line-height: 1;
}

.wa-popup-close:hover { color: #555; }

/* Isi popup — avatar kiri + teks kanan */
.wa-popup-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar-left img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fa5b0f;
    flex-shrink: 0;
    display: block;
}

.wa-popup-right {
    flex: 1;
}

.wa-popup-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    white-space: nowrap;
}

/* Tombol chat hijau */
.wa-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wa-chat-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

.wa-chat-btn .fab { font-size: 1rem; }

/* ── Animasi ── */
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.65); }
    50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

/* ── KERANJANG ANIMASI ── */
@keyframes cartMove {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(16px); }
    100% { transform: translateX(0); }
}

.cart-animated {
    animation: cartMove 2s infinite ease-in-out;
    transition: all 0.3s ease;
}

.cart-animated:hover { animation-play-state: paused; }


/* ── CARD PRODUK ── */
small.text-muted.text-decoration-line-through.d-block { font-size: 0.8rem; }

.card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.badge-promo {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    z-index: 10;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-transform: uppercase;
}

.bg-diskon      { background-color: #ff3e3e; }
.bg-best-seller { background-color: #ffc107; color: #000; }
.bg-new         { background-color: #007bff; }


/* ── TOMBOL TANYA PRODUK ── */
.btn-tanya-produk {
    display: block;
    width: 100%;
    margin-bottom: 6px;
    padding: 5px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #ffb300, #fa5b0f);
    transition: all 0.25s ease;
}

.btn-tanya-produk:hover {
    background: linear-gradient(135deg, #fa5b0f, #c0392b);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(250,91,15,0.35);
}


/* ── MODAL TANYA PRODUK ── */
#modalTanyaProduk .modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}

#modalTanyaProduk .modal-header {
    background: linear-gradient(135deg, #fa5b0f, #ff8c42);
    color: white;
    padding: 14px 18px;
}

#modalTanyaProduk .produk-preview {
    background: #fff8f5;
    border: 1px solid #ffe0cc;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

#tanyaGambar {
    width: 65px; height: 65px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #fa5b0f;
    flex-shrink: 0;
}

#tanyaNamaProduk {
    color: #333;
    line-height: 1.3;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

#tanyaHargaProduk {
    font-size: 0.9rem;
    font-weight: 700;
    color: #dc3545;
}

#errorTanyaNama,
#errorTanyaPhone,
#errorTanyaPertanyaan {
    font-size: 11px;
    color: #dc3545;
    min-height: 14px;
}

#modalTanyaProduk .form-control:focus {
    border-color: #fa5b0f;
    box-shadow: 0 0 0 0.2rem rgba(250,91,15,0.2);
}

#modalTanyaProduk .alert-info-tanya {
    font-size: 11px;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    padding: 8px 12px;
}

#btnKirimTanya {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    transition: all 0.2s ease;
}

#btnKirimTanya:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}


/* ── SPLASH SCREEN ── */
#splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
    overflow: hidden;
}

.splash-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 400px;
    animation: fadeUpSplash 1s ease-out;
}

.splash-hero-container {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255,254,254,0.1);
}

.splash-hero-img {
    width: 100%; height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOutHero 2s ease-out forwards;
}

.splash-brand-container { text-align: center; }

.splash-logo-small { width: 60px; height: auto; margin-bottom: 15px; }

.splash-store-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0eded;
    margin: 0 0 5px 0;
}

.splash-store-name span { color: #fa5b0f; }

.splash-slogan { font-size: 1rem; color: #eaeaea; margin: 0; font-weight: 300; }

@keyframes fadeUpSplash {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes zoomOutHero {
    from { transform: scale(1.1); }
    to   { transform: scale(1); }
}

body.stop-scroll { overflow: hidden; }


/* ── REVIEW ── */
.review-mega-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 5px;
}

.review-mega-container::-webkit-scrollbar { width: 8px; }
.review-mega-container::-webkit-scrollbar-thumb {
    background-color: #ffca08;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.review-card {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    transition: transform 0.3s ease;
    border-left: 4px solid transparent;
}

.review-card:hover {
    transform: translateX(5px);
    border-left: 4px solid #ffca08;
    background-color: #fff9e6;
}

.review-img-preview {
    width: 60px; height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 5px;
}

.rating-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
}

.rating-wrapper input { display: none; }

.rating-wrapper label {
    cursor: pointer;
    font-size: 40px;
    color: #dee2e6;
    transition: color 0.2s ease-in-out;
}

.rating-wrapper label::before { content: "★"; }

.rating-wrapper input:checked ~ label,
.rating-wrapper label:hover,
.rating-wrapper label:hover ~ label { color: #ffca08; }

#modalTulisReview   { background: rgba(0,0,0,0.5); }
div.alert.alert-info.py-2 { font-size: 11px; }

/* zoo start */
/* Gaya untuk Overlay Hitam */
.zoom-overlay {
  display: none; 
  position: fixed;
  z-index: 2000; /* Di atas navbar */
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  cursor: zoom-out;
}

/* Gambar yang di-zoom */
.zoom-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
  animation: zoomAnim 0.3s;
}

/* Teks Judul di Bawah Gambar */
#zoomCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

/* Tombol Close (X) */
.close-zoom {
  position: absolute;
  top: 15px;
  left: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
   transition: transform 0.2s ease; 
}

/* Animasi muncul */
@keyframes zoomAnim {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}

/* Responsif Mobile */
@media only screen and (max-width: 700px){
  .zoom-content { width: 95%; }
}
/* zoom end */



/* download */
#download {
    scroll-margin-top: 100px;
}

#all-reviews {
    scroll-margin-top: 80px;
}

img.mt-2 {
    max-width: 250px;
    border-radius: 8px;
    cursor: zoom-in;
    display: block;
    margin:8px -0.66rem;
    
}

button.btn.btn-outline-warning.btn-sm.fw-bold {
background-color: #333;
}

/* ── INPUT QTY ── */
.qty-input {
    width: 45px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 1rem;
}

/* produk habis */
/* ── PRODUK HABIS START── */
.badge-habis {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #6c757d;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.card.produk-habis {
    opacity: 0.80;
}

.card.produk-habis .card-img-top {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.card.produk-habis .btnDetail {
    background-color: #adb5bd !important;
    border-color: #adb5bd !important;
    color: #fff !important;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(100%);
    opacity: 0.7;
}

.card.produk-habis .btn-tanya-produk {
    background: #adb5bd !important;
    color: #fff !important;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(100%);
    opacity: 0.7;
}

.card.produk-habis .badge-promo {
    display: none;
}
/* ── PRODUK HABIS END */


/*meratahan bagian bawah border walaupun berbeda konten  */
/* ── CARD SAMA TINGGI ── */
#productList .col {
    display: flex;
}

#productList .card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#productList .card-body {
    flex: 1;
}

#productList .card-footer {
    margin-top: auto;
}



/* ── SELLER REPLY (Balasan Penjual) ── */
.seller-reply-wrapper {
    display: flex;
    justify-content: flex-start;
    padding: 4px 8px 16px 8px;
    animation: replySlideIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transform-origin: bottom center;
}


/* Inner: logo kiri + bubble kanan */
.seller-reply-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin-left: 0;
}

/* Logo bulat di KIRI ATAS */
.seller-reply-logo-wrap {
    flex-shrink: 0;
    position: relative;
    order: 0;
}

.seller-reply-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #fa5b0f;
    box-shadow: 0 3px 10px rgba(250, 91, 15, 0.30);
    display: block;
    background: #fff;
}

/* Titik hijau online */
.seller-reply-logo-wrap::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #25d366;
    border: 2px solid #fff;
    border-radius: 50%;
}

/* Bubble melebar ke kanan */
.seller-reply-bubble {
    background: linear-gradient(135deg, #fff8f3, #fff3eb);
    border: 1.5px solid #ffd4b3;
    border-radius: 0px 16px 16px 16px;
    padding: 10px 14px 10px 12px;
    flex: 1;
    position: relative;
    box-shadow: 0 3px 12px rgba(250, 91, 15, 0.12);
}

/* Ekor segitiga kiri atas */
.seller-reply-bubble::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    border-width: 5px 10px 5px 0;
    border-style: solid;
    border-color: transparent #ffd4b3 transparent transparent;
}
.seller-reply-bubble::after {
    content: '';
    position: absolute;
    top: 11px;
    left: -8px;
    border-width: 4px 8px 4px 0;
    border-style: solid;
    border-color: transparent #fff8f3 transparent transparent;
}

/* Logo bulat di KIRI */
.seller-reply-logo-wrap {
    flex-shrink: 0;
    position: relative;
}

.seller-reply-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #fa5b0f;
    box-shadow: 0 3px 10px rgba(250, 91, 15, 0.30);
    display: block;
    background: #fff;
}

/* Titik hijau online di sudut logo */
.seller-reply-logo-wrap::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    background: #25d366;
    border: 2px solid #fff;
    border-radius: 50%;
}

/* Bubble balasan — melebar ke kanan */
.seller-reply-bubble {
    background: linear-gradient(135deg, #fff8f3, #fff3eb);
    border: 1.5px solid #ffd4b3;
    border-radius: 4px 16px 16px 16px;
    padding: 10px 14px 10px 12px;
    flex: 1;
    position: relative;
    box-shadow: 0 3px 12px rgba(250, 91, 15, 0.12);
}

/* Ekor segitiga kiri atas bubble → mengarah ke logo */
.seller-reply-bubble::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    border-width: 5px 10px 5px 0;
    border-style: solid;
    border-color: transparent #ffd4b3 transparent transparent;
}
.seller-reply-bubble::after {
    content: '';
    position: absolute;
    top: 11px;
    left: -8px;
    border-width: 4px 8px 4px 0;
    border-style: solid;
    border-color: transparent #fff8f3 transparent transparent;
}

/* Header: nama + badge */
.seller-reply-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
}

.seller-reply-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fa5b0f;
    white-space: nowrap;
}

.seller-reply-badge {
    font-size: 0.65rem;
    background: #fa5b0f;
    color: white;
    padding: 1px 7px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* Teks balasan */
.seller-reply-text {
    font-size: 0.82rem;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

/* Animasi muncul dari bawah-tengah */
@keyframes replySlideIn {
    0%   { opacity: 0; transform: scale(0.5) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Wrapper tiap pasangan review + reply */
.review-card-wrap {
    margin-bottom: 4px;
}

/* ── MODAL REVIEW — beri ruang agar tidak tertutup widget WA ── */
/* ── MODAL FOOTER — beri ruang agar tidak tertutup widget WA ── */
#modalTulisReview .modal-dialog,
#modalTanyaProduk .modal-dialog {
    margin-bottom: 90px;
}
 
/* ── FILTER KATEGORI ── */
.filter-kategori-wrapper {
    background: #f8f9fa;
    border-radius: 12px;
    margin: 10px 8px 4px;
}

.btn-filter {
    background: #fff;
    border: 2px solid #dee2e6;
    color: #555;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-filter:hover {
    border-color: #fa5b0f;
    color: #fa5b0f;
}

.btn-filter.active {
    background: #fa5b0f;
    border-color: #fa5b0f;
    color: #fff;
}

/* ── LOAD MORE ── */
.btn-load-more {
    background: linear-gradient(135deg, #fa5b0f, #ffb300);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(250,91,15,0.3);
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(250,91,15,0.4);
}

.btn-load-more:disabled {
    background: #adb5bd;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

/* ── SEARCH BAR PERMANEN ── */
.search-inline-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    overflow: hidden;
    padding: 4px 10px;
    transition: border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-inline-bar:focus-within {
    border-color: #fa5b0f;
    box-shadow: 0 2px 12px rgba(250,91,15,0.2);
}

.search-inline-icon {
    color: #aaa;
    flex-shrink: 0;
    padding-right: 6px;
}

.search-inline-icon svg { width: 16px; height: 16px; }

.search-inline-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.88rem;
    color: #333;
    background: transparent;
    padding: 4px 0;
}

.search-inline-bar input::placeholder { color: #bbb; }

#btnClearSearch {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    padding: 0 4px;
    display: none;
    align-items: center;
    transition: color 0.2s;
}

#btnClearSearch.show {
    display: flex;
}

#btnClearSearch:hover { color: #fa5b0f; }
#btnClearSearch svg   { width: 15px; height: 15px; }


/* tpmbol hapus supaya tidak tertutupi oleh kerangjang */
.cart-modal-body {
    padding-top: 4rem !important;
     overflow-y: auto;
    max-height: 100vh;
}


/* download */

/* ── TOMBOL DOWNLOAD NAVBAR ── */
.btn-download-nav {
    background: transparent;
    border: none;
    position: relative;
   right: 2rem;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0 1px 2px 0;
    color: #fa5b0f !important;
    animation: kedipInstall 1.5s infinite;
    border-radius: 50px;
    border: 1.5px solid transparent;
    background-color: #186ede;
   
}


#btnInstallToko {
  color: #18181a !important;
}


.btn-download-nav:hover {
    animation: none;
    color: #fa5b0f !important;
}
.btn-download-nav svg {
    width: 11px;
    height: 11px;
    animation: kedipInstall 1s infinite;
}
@keyframes kedipInstall {
    0%, 100% { 
        color: #fa5b0f !important;
        opacity: 1;
    }
    50% { 
        color: #fa5b0f !important;
        opacity: 0;
    }
}

/* tombol geser dropship */
/* Sembunyikan tombol Geser Dropship dari posisi semula */
/* Sembunyikan tombol asli dari modal-footer */
/* Tombol Slide Toggle */
/* #btnGeserDropshipFloat {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 50px;
  border: none;
  background-color: #28a745;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: background-color 0.3s;
  flex-shrink: 0;
  padding: 0;
} */

/* Lingkaran putih yang bisa bergeser */
/* #btnGeserDropshipFloat::after {
  content: '📦';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 22px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
} */

/* Saat di-hover, lingkaran geser ke kanan */
/* #slideDropship {
  position: relative;
  width: 80px;
  height: 32px;
  background-color: #28a745;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  flex-shrink: 0;
  overflow: hidden;
  touch-action: none;
} */

/* #slideDropship::before {
  content: '▶▶';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: -2px;
  pointer-events: none;
} */

/* #slideThumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  cursor: grab;
  user-select: none;
  touch-action: none;
} */
 /* ── FULLSCREEN MODAL UNTUK DROPSHIP (RAM HP AMAN) ── */
/* ── SEMBUNYIKAN KERANJANG MELAYANG SAAT MODAL TERBUKA ── */
.modal.show ~ .cart-animated,
.modal.show ~ * .cart-animated,
.modal.show + .cart-animated {
    display: none !important;
}

/* Fallback: kalau struktur DOM berbeda */
/* ── KERANJANG MELAYANG HANYA MUNCUL DI HALAMAN UTAMA ── */
body:has(.modal-backdrop) .cart-animated {
    visibility: hidden !important;
    pointer-events: none !important;
}

/* css dropsip dan review start */
/* ── TOMBOL DROPSHIP & REVIEW DI KARTU ── */
.card-action-row {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}
.btn-dropship-card,
.btn-review-card {
    flex: 1;
    padding: 5px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    line-height: 1.3;
}
.btn-dropship-card {
    background: linear-gradient(135deg, #0dcaf0, #0284c7);
}
.btn-dropship-card:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(2,132,199,0.35);
    color: #fff;
}
.btn-review-card {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #333;
}
.btn-review-card:hover {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255,152,0,0.35);
    color: #222;
}
.card.produk-habis .btn-dropship-card,
.card.produk-habis .btn-review-card {
    background: #adb5bd !important;
    color: #fff !important;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(100%);
    opacity: 0.7;
    box-shadow: none;
    transform: none;
}
/* css dropsip dan review   end */


/* ── BUKTI BAYAR OTOMATIS ── */
.bukti-reguler .card {
    border-left: 5px solid #198754;
    background: linear-gradient(135deg, #f0fff4, #ffffff);
}
.bukti-dropship .card {
    border-left: 5px solid #0dcaf0;
    background: linear-gradient(135deg, #e8f8ff, #ffffff);
}
#buktiNama:disabled,
#buktiPhone:disabled {
    background: #e9ecef;
    cursor: not-allowed;
    opacity: 0.8;
}
.bukti-info-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}