/**
 * CODLEADE Theme - Core Styles
 * Compiled and minified for production
 */

/* Base Typography */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff
}

.font-oswald {
    font-family: 'Oswald', sans-serif
}

/* Admin Bar Fix */
.admin-bar #site-navigation {
    top: 32px !important
}

@media screen and (max-width:782px) {
    .admin-bar #site-navigation {
        top: 46px !important
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #000
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #555
}

/* Selection */
.selection\:bg-white ::selection {
    background-color: #fff;
    color: #000
}

/* Price Styling */
.price {
    font-family: 'Oswald', sans-serif !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline;
    gap: 16px;
    color: #fff !important;
    font-weight: 900 !important;
    text-transform: uppercase
}

.text-2xl .price {
    font-size: 2rem !important;
    letter-spacing: .02em
}

.price del {
    color: rgba(255, 255, 255, .35) !important;
    text-decoration: line-through !important;
    font-size: 1em !important;
    font-weight: 700 !important;
    order: 1
}

.price del .woocommerce-Price-amount {
    color: rgba(255, 255, 255, .35) !important
}

.price ins {
    text-decoration: underline !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 6px !important;
    color: #fff !important;
    font-weight: 900 !important;
    order: 2
}

.price .woocommerce-Price-currencySymbol {
    margin-right: 4px
}

.price bdi {
    display: flex;
    align-items: baseline
}