/* =========================================================================
   SanalPazaryerim - Additional E-Commerce Styles (Appended to style.css)
   ========================================================================= */

/* Replace existing product-btn logic with these new Marketplace Buttons */
.product-footer-block {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 15px;
}

.product-price-large {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.btn-marketplace {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    display: block;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Enhancing existing buttons for product cards */
.product-card .btn-primary {
    background-color: #27ae60;
    /* A distinct 'Buy' color, e.g., Green for Shopier/WhatsApp */
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.product-card .btn-primary:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.product-card .btn-secondary {
    border-color: #f39c12;
    /* Amazon Orange accent */
    color: #f39c12;
}

.product-card .btn-secondary:hover {
    background-color: #f39c12;
    color: #fff;
    transform: translateY(-2px);
}