/* =========================
   HELPERS STYLES
   ========================= */

/* Product Detail - Price Display */
.product-price-row {
    margin-top: 18px;
    font-family: 'Inter', sans-serif;
}

.normal-old-price {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    line-height: 1.1;
}

.normal-new-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.normal-discount {
    background: #1faa59;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.normal-new-price {
    font-size: 32px;
    font-weight: 700;
    color: #1faa59;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.sepette-ek-indirim {
    font-size: 14px;
    color: #1faa59;
    font-weight: 500;
    white-space: nowrap;
}

.kargo-bedava {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #1faa59;
    font-weight: 500;
    white-space: nowrap;
}

.pickup-title-line {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pickup-title {
    font-size: 17px;
    font-weight: 700;
    color: #e53935;
    letter-spacing: -0.3px;
}

.pickup-info {
    font-size: 12px;
    color: #b71c1c;
    text-decoration: underline;
    cursor: pointer;
}

.pickup-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.pickup-discount {
    background: #e53935;
    color: #fff;
    font-size: 15px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.pickup-price {
    font-size: 32px;
    color: #e53935;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.saving-text {
    font-size: 12px;
    color: #777;
    margin-left: 6px;
    font-weight: 500;
    white-space: nowrap;
}

/* Product Detail Modal */
#productdetailmodal .modal-dialog,
#productdetailmodal .modal-content {
    height: 90%;
}

#productdetailmodal .modal-body {
    max-height: calc(100% - 120px);
    overflow-y: scroll !important;
    overflow-x: hidden;
    font-size: 14px;
}

