/**
 * Product Card Quick Actions - Navy Blue & Field Green Edition
 */

/* ===== 3 Dot Button on Product Card ===== */
.prod-card {
    position: relative;
}

.prod-card-actions-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* Latar belakang off-white kebiruan yang sangat bersih */
    background: rgba(250, 251, 253, 0.95);
    border: 1px solid #D0D9E5; /* Border abu-abu kebiruan halus */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(27, 54, 93, 0.1); /* Bayangan berbasis Biru Navy lembut */
    color: #1B365D; /* Warna ikon Biru Navy */
    -webkit-tap-highlight-color: transparent;
}

.prod-card-actions-btn:hover {
    background: #FFFFFF;
    border-color: #2E7D32; /* Border berubah menjadi Hijau Lapangan saat hover */
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25); /* Bayangan glow Hijau Lapangan */
    transform: scale(1.05);
}

.prod-card-actions-btn:active {
    transform: scale(0.95);
}

/* ===== Bottom Sheet Navy & Field Green Style ===== */
.pca-bottom-sheet {
    background: #FAFBFD; /* Latar belakang off-white kebiruan */
    border-top: 2px solid #1B365D; /* Dipertegas dengan border atas Biru Navy */
    box-shadow: 0 -10px 30px rgba(27, 54, 93, 0.12); /* Bayangan atas berbasis Navy */
}

.pca-sheet-product {
    border-bottom: 1px solid #D0D9E5; /* Pemisah abu-abu kebiruan halus */
}

.pca-product-name {
    color: #0F172A; /* Slate gelap (charcoal modern) */
}

.pca-product-price {
    color: #2E7D32; /* Harga menggunakan warna Hijau Lapangan agar segar dan jelas */
    font-weight: 700;
}

/* ===== Action Items ===== */
.pca-action-item {
    color: #0F172A;
    transition: all 0.2s ease;
}

.pca-action-item:hover {
    background: #F1F5F9; /* Hover efek menggunakan warna slate terang kebiruan */
    color: #2E7D32; /* Teks berubah menjadi Hijau Lapangan */
}

.pca-action-icon {
    color: #1B365D; /* Ikon menu menggunakan warna Biru Navy */
}

/* ===== Animation for Flying Product ===== */
.flying-product {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border: 2px solid #2E7D32; /* Efek terbang menggunakan border Hijau Lapangan agar dinamis */
    border-radius: 8px;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 640px) {
    .pca-bottom-sheet {
        border-radius: 16px 16px 0 0;
    }
    
    .pca-sheet-product {
        padding: 10px 16px;
    }
    
    .pca-product-image {
        border: 1px solid #D0D9E5; /* Border gambar responsif menggunakan abu-abu kebiruan */
    }
}