/* 1. Import Poppins (Regular, Semi-Bold, and Bold weights) */
@import url('https://fonts.googleapis.com');

/* 2. Apply Poppins to Headings Only */
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6,
#products .product-title a, 
.cart-grid-body .product-line-info .label {
    font-family: 'Poppins', sans-serif !important;
    text-transform: none; /* Optional: preserves original capitalization */
}

/* 3. Specific Weights for Hierarchy */
h1, .h1 {
    font-weight: 700 !important; /* Bold for Main Titles */
}

h2, .h2, h3, .h3 {
    font-weight: 600 !important; /* Semi-Bold for Mid-level Titles */
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 400 !important; /* Regular for smaller headings */
}


.product-miniature .product-miniature__prices {
    display: flex;
    justify-content: center;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #5FA50C;
    --bs-btn-border-color: #5FA50C;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.page-product .product__discount {
    color: #212529;
    font-size: 1rem;
}

.page-product .product-comments-additional-info {
    align-items: center;
    display: flex;
    flex: 0 0 0;
    gap: 0rem;
    margin: 1rem 0 0;
}

.page-product #product-comments-list .comment-top {
    align-items: center;
    display: flex;
    font-size: .875rem;
    gap: 2rem;
    justify-content: unset;
    margin-bottom: .25rem
}

.header-bottom .navbar-brand .logo {
    max-height: 50px;
    width: auto
}

