/**
 * Product Card Quick Actions - Luxury Gold 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 krem premium */
    background: rgba(253, 251, 247, 0.95);
    border: 1px solid #E6D8B8; /* Border emas tipis */
    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(212, 175, 55, 0.1);
    color: #B58529; /* Warna ikon emas */
    -webkit-tap-highlight-color: transparent;
}

.prod-card-actions-btn:hover {
    background: #FFFFFF;
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

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

/* ===== Bottom Sheet Luxury Style ===== */
.pca-bottom-sheet {
    background: #FDFBF7; /* Cream premium */
    border-top: 2px solid #E6D8B8;
    box-shadow: 0 -10px 30px rgba(181, 133, 41, 0.1);
}

.pca-sheet-product {
    border-bottom: 1px solid #E6D8B8;
}

.pca-product-name {
    color: #1A1814; /* Deep charcoal */
}

.pca-product-price {
    color: #B58529; /* Gold */
    font-weight: 700;
}

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

.pca-action-item:hover {
    background: #F5F4F0;
    color: #B58529;
}

.pca-action-icon {
    color: #D4AF37; /* Gold */
}

/* ===== Animation for Flying Product ===== */
.flying-product {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border: 2px solid #D4AF37;
    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 #E6D8B8;
    }
}