﻿/* =====================================================
COMPONENTS / SHARED UI
===================================================== */

/* =====================================================
BREADCRUMBS
===================================================== */

.bread,
.bread-list,
.bread-list li,
.bread-list a,
.bread-current,
.bread-sep::before {
    font-family: 'Oswald', sans-serif;
}

.bread {
    width: 100%;
    margin: 0;
    padding-top: 4px;
    color: #333;
}

.bread-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
}

    .bread-list a {
        color: #333;
        text-decoration: none;
    }

        .bread-list a:hover {
            text-decoration: underline;
        }

.bread-sep::before {
    content: "›";
    color: red;
    font-weight: 700;
}

.bread-current {
    color: red;
    font-weight: 700;
}

.breadcrumb {
    max-height: 40px;
    height: auto;
    padding-left: 10px;
    text-align: left;
    font-size: .9rem;
}

/* =====================================================
BUTTONS / SHARED CONTROLS
===================================================== */

.submit,
.submit-coupon {
    margin-right: 10px;
    padding: 5px 20px;
    border: 1px solid #A80000;
    background: #E60000 url(../images/buttons.gif) repeat-x;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
}

    .submit:hover,
    .submit-coupon:hover,
    .submit:active,
    .submit-coupon:active {
        background-color: red;
        color: #fff;
        cursor: pointer;
    }

.reset {
    margin-right: 10px;
    padding: 5px 20px;
    border: none;
    background: #E0E0E0;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
}

    .reset:hover,
    .reset:active {
        background: #9CF;
        cursor: pointer;
    }

.btn-estimate {
    height: 42px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f5f5f5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;/* 15px */
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease;
}

    .btn-estimate:hover {
        background: #e9e9e9;
    }

.shop_button {
    padding: 5px 40px;
    border: 1px solid gold;
    background: gold;
    color: #000;
    font-family: 'Oswald', sans-serif;
}

    .shop_button:hover {
        border-color: yellow;
        color: #000;
    }



/* =====================================================
STATUS PILLS / BADGES
===================================================== */

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-bottom: 6px;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    background: #f4f7f4;
}

.stock-icon {
    margin-right: 2px;
    font-size: 0.875rem;
}

.stock-good {
    color: #1a7f37;
    background: #e8f5e9;
}

.stock-bad {
    color: #c47a00;
    background: #fff6d6;
}




/* =====================================================
TRUST / CONFIDENCE BLOCKS
===================================================== */

.cart-trust {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 18px 0;
    color: #555;
    font-size: 0.8125rem;
    flex-wrap: nowrap;
}

.trust-item {
    flex: 1;
    padding: 8px 6px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #f7f7f7;
    text-align: center;
    white-space: nowrap;
}

.cart-security {
    margin-top: 10px;
    color: #777;
    text-align: center;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.checkout-confidence {
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.8125rem;
    font-family: 'Inter', sans-serif;
}

.confidence-row {
    margin: 6px 0;
}

.checkout-powered {
    margin-top: 10px;
    color: #666;
    font-size: 0.8125rem;
    font-family: 'Inter', sans-serif;
}


/* =====================================================
MISC SHARED ELEMENTS
===================================================== */

.you_may_also_like {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

    .you_may_also_like li {
        display: inline-block;
        min-width: 120px;
        max-width: 16%;
        min-height: 250px;
        margin: 4px;
        font-size: .95rem;
        text-align: center;
        list-style: none;
    }

.box_close {
    float: right;
    margin-right: 50px;
    padding: 5px 10px;
    background: #373737;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 100;
}

    .box_close:hover {
        color: red;
    }

.search_close {
    float: right;
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 100;
}

    .search_close:hover {
        color: red;
    }


.view-all-btn {
    display: inline-block;
    width: 92%;
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 6px;
    background: #F0F1F5;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem; /* 14px */
    font-weight: 600;
    transition: background-color .3s ease, color .3s ease;
}

    .view-all-btn:hover {
        background: red;
        color: #fff;
    }

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width:700px) {
    .bread {
        padding: 4px 0;
        text-align: center;
        background: #fff;
    }

    .bread-list {
        justify-content: center;
        font-size: 0.8125rem;
    }
}

@media (max-width:600px) {
    .cart-trust {
        gap: 6px;
    }

    .trust-item {
        font-size: 0.75rem;
        padding: 6px 4px;
    }

    .checkout-confidence {
        color: #000;
    }

    .btn-estimate {
        width: 100%;
    }
}

.recaptcha-wrapper {
    min-height: 78px;
    width: 100%;
    max-width: 304px; /* native recaptcha width */
    margin: 10px 0;
}

/* Hide form labels but keep for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Better placeholder styling */
.form-input::placeholder {
    /*color: #888;
    font-weight: 400;*/
    color: rgba(0,0,0,.24);
}

/* Optional: highlight required */
.form-input:required::placeholder {
    color: #999;
}
.form-input.error,
.form-select.error {
    border-color: #d93025;
    background: #fff5f5;
}

    .form-input.error:focus,
    .form-select.error:focus {
        border-color: #d93025;
        box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12);
    }

.account-field-error {
    margin-top: 6px;
    color: #d93025;
    font-size: 0.92rem;
    line-height: 1.35;
}

.word-wrap {
    overflow-wrap: break-word;
    word-break: break-word;
}
.line-break {
    display: block;
}