/* ============================================================
   Custom overrides on top of the W3Cart template (assets/css/style.css)
   Only what's needed for our own markup that doesn't use the
   bootstrap-touchspin plugin directly (we drive qty with our own JS).
   ============================================================ */

.app-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary, #3d5afe);
}

.about-us-box {
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    color: #555;
    line-height: 1.6;
}

.single-product-media {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    background: #f5f6fa;
    text-align: center;
}
.single-product-media img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Simple quantity stepper (used on Home + Cart pages) */
.dz-stepper.style-2 {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}
.dz-stepper.style-2 .stepper-btn {
    background: #f5f6fa;
    border: none;
    width: 34px;
    height: 34px;
    font-size: 18px;
    cursor: pointer;
}
.dz-stepper.style-2 .qty-value {
    width: 40px;
    text-align: center;
    border: none;
    height: 34px;
    background: #fff;
}

/* ===== DUMMY PAYMENT MODAL ===== */
.dummy-pay-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.dummy-pay-box {
    background: #fff;
    border-radius: 12px;
    padding: 35px 40px;
    text-align: center;
    width: 320px;
    max-width: 85vw;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.dummy-pay-logo {
    font-size: 20px;
    font-weight: bold;
    color: #3d5afe;
    margin-bottom: 10px;
}
.dummy-pay-logo span { font-size: 12px; color: #888; font-weight: normal; }
.dummy-pay-amount { font-size: 26px; font-weight: bold; margin-bottom: 20px; }
.dummy-pay-spinner {
    width: 50px; height: 50px;
    border: 5px solid #eee;
    border-top: 5px solid #3d5afe;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: dummy-spin 0.8s linear infinite;
}
.dummy-pay-spinner.success {
    animation: none;
    border: 5px solid #2e7d32;
    border-top: 5px solid #2e7d32;
    background: #e8f5e9;
}
@keyframes dummy-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.dummy-pay-status { font-size: 15px; color: #444; }

/* ===== CHECKOUT PAYMENT METHOD CARDS ===== */
.payment-option-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 15px;
    background: #fff;
}
.payment-option-card.disabled {
    background: #f7f7f7;
    opacity: 0.85;
}
.payment-option-card input[type="radio"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== PRODUCT REVIEWS ===== */
.star-rating-input {
    font-size: 24px;
    cursor: pointer;
}
.star-rating-input i {
    margin-right: 4px;
    color: #FFC107;
}
.star-rating-input i.text-secondary {
    color: #ccc !important;
}
