/* 1. THE CONTAINER - Softer shadow and smoother corners */
.theme-portal-form-container {
    max-width: 450px;
    margin: 80px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

/* 2. THE INPUT FIELDS - Cleaner and more modern */
.signin-iframe .zp-input-field {
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-family: 'Inter', 'Manrope', sans-serif !important;
    font-size: 15px !important;
    background-color: #fff !important;
    transition: all 0.2s ease !important;
    outline: none !important;
}

/* Focus state for inputs */
.signin-iframe .zp-input-field:focus {
    border-color: #000 !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}

/* 3. THE BUTTON - Premium look with subtle hover */
.signin-iframe .zpbutton-type-primary {
    background-color: #000000 !important;
    color: #ffffff !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 14px !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.signin-iframe .zpbutton-type-primary:hover {
    background-color: #333333 !important;
    opacity: 0.9;
    transform: translateY(-1px);
}

.signin-iframe .zpbutton-type-primary:active {
    transform: scale(0.98);
}

/* 4. THE LINKS - Adding the Zalon Gold touch */
.theme-noaccount-signup a {
    color: #d4a017;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-noaccount-signup a:hover {
    color: #b08512;
    text-decoration: underline;
}

/* 5. HEADER - Quotes icon alignment fix */
[data-search-cart-scrollposition-non-responsive] {
    margin-inline-end: 1% !important;
}

@media (max-width: 992px) {
    [data-zs-view-quote] {
        padding-inline-start: 0 !important;
    }
}

/* 6. SCROLLBAR - Thin and light */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d0d0d0;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #aaaaaa;
}

/* ── Discount Badge ── */
.zs-discount-badge {
    display: inline-flex;
    align-items: center;
    background: #16A34A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.4;
    pointer-events: none;
    vertical-align: middle;
}

/* Detail page – appears below the price row */

.zs-detail-badge {
    display: inline-flex;
    font-size: 12px;
    padding: 4px 10px;
    margin-left: 10px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

/* Listing card – top-right corner over the card */
.zs-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    font-size: 10px;
    padding: 3px 7px;
}