/**
 * Theme Name: Luke Miller Child Theme
 * Template:   graycastle-wp-theme
 */

/* Override parent theme CSS variables
--------------------------------------------- */
:root {
    /* Typography overrides - uncomment and customize if needed */
    --headings-font: "Montserrat", sans-serif !important;
    --body-font: "Montserrat", serif !important;
}
/* Site-Wide Styles */
body {
    background: #b3dee7 !important;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
}
/* Header */
.custom-logo {
    max-width: 200px;
    height: auto;
}
.site-header-container {
    background: #333333 !important;
}

/* Blocks */
.card-dark {
    font-weight: 500;
    margin-top: 1rem;
}
.card-dark strong {
    font-weight: 700;
}

.bestseller-badge-wrapper {
    position: relative;
}
.bestseller-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    max-width: 70px;
}
@media screen and (max-width: 37.5em) {
    .bestseller-badge {
        top: auto;
        bottom: -45px;
        right: -5px;
    }
}