/*
 * BallıÇubuk — minimal legacy markup compatibility for the Ekomart storefront.
 *
 * This file intentionally replaces only the small set of Bootstrap 3 / Naturix
 * utility styles still used by older inner-page markup. It is NOT a theme skin.
 * Keeping these rules here lets Ekomart remain the only loaded frontend theme
 * without breaking cart, checkout, auth or legacy article layouts.
 */

/* Legacy page spacing used by cart / checkout / simple content screens. */
.sec-space {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Legacy CTA classes, restyled with the current BallıÇubuk / Ekomart palette. */
.theme-btn,
.theme-btn-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--color-primary, #714441);
    border-radius: 6px;
    box-shadow: none;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.theme-btn {
    background: var(--color-primary, #714441);
    color: #fff;
}

.theme-btn-2 {
    background: #fff;
    color: var(--color-primary, #714441);
}

.theme-btn:hover,
.theme-btn:focus,
.theme-btn-2:hover,
.theme-btn-2:focus {
    background: #5b342f;
    border-color: #5b342f;
    color: #fff;
}

/* Bootstrap 3 helpers still present in cart / checkout markup. */
.well {
    min-height: 20px;
    padding: 24px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #e8e5e1;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(47, 38, 35, .04);
}

.pull-right {
    float: right !important;
}

.radio-inline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 14px 0 0;
    padding: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}

.radio-inline input[type="radio"] {
    position: static;
    margin: 0;
}

/* Bootstrap 3 offset names retained by two older templates. */
@media (min-width: 768px) {
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
}

@media (min-width: 992px) {
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
}

@media (max-width: 767px) {
    .sec-space {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .well {
        padding: 18px;
    }
}
