@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --dark-blue-color: #22223B;
    --golden-color: #C9ADA7;
    --light-golden-color: #F2E9E4;
    --light-blue-color: #4A4E69;
    --navbar-link-hover-bg: rgba(242, 233, 228, 0.1);
    --navbar-border-subtle: rgba(201, 173, 167, 0.14);
    --navbar-dropdown-hover: #2d3748;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    background-color: var(--light-golden-color);
}

body a{
    text-decoration: none;
}

body a:hover{
    text-decoration: none;
}

/* ----- Shared page content offset below fixed-top navbar ----- */
/* Use padding (not margin) so space is not collapsed with the parent .container; 5.5rem matches prior Opportunities/About offset */
.page-content-inner {
    padding-top: 5.5rem;
    margin-bottom: 30px;
}

.page-content-inner > .page-heading:first-child,
.page-content-inner > header:first-child .page-heading {
    padding-top: 0.35rem;
    margin-top: 0;
}

@media (max-width: 575.98px) {
    .page-content-inner {
        padding-top: 4.75rem;
    }

    /* Extra space below fixed navbar on all pages except the marketing home (Home/Index) */
    body.site-body--interior .page-content-inner {
        padding-top: 5.75rem;
    }

    body.site-body--interior .page-content-inner > .page-heading:first-child,
    body.site-body--interior .page-content-inner > header:first-child .page-heading {
        padding-top: 0.65rem;
    }
}

.page-content-inner .alert + .page-heading,
.page-content-inner .alert + h2.page-heading {
    padding-top: 0.35rem;
    margin-top: 0;
}

.page-content-inner .cart-flash-alert {
    margin-top: 0.35rem;
}

/* CTO payout admin banner: sits first in <main>; must clear fixed-top navbar like .page-content-inner */
.cto-payout-admin-reminder-bar {
    padding-top: 5.5rem;
}

@media (max-width: 575.98px) {
    .cto-payout-admin-reminder-bar {
        padding-top: 4.75rem;
    }

    body.site-body--interior .cto-payout-admin-reminder-bar {
        padding-top: 5.75rem;
    }
}

/* Reminder already offsets below navbar; avoid stacking a second full navbar gap before page headings */
main > .cto-payout-admin-reminder-bar ~ * .page-content-inner {
    padding-top: 1rem;
}

@media (max-width: 575.98px) {
    main > .cto-payout-admin-reminder-bar ~ * .page-content-inner {
        padding-top: 0.85rem;
    }

    body.site-body--interior main > .cto-payout-admin-reminder-bar ~ * .page-content-inner {
        padding-top: 1.1rem;
    }
}

/* ----- Main site header navbar ----- */
.site-navbar {
    background-color: var(--dark-blue-color);
    padding: 0.5rem clamp(0.75rem, 3vw, 2.5rem);
    border-bottom: 1px solid var(--navbar-border-subtle);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.site-navbar .navbar-brand {
    margin-right: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-navbar .navbar-brand:hover {
    opacity: 0.92;
}

.site-navbar .navbar-brand:focus-visible {
    outline: 2px solid var(--golden-color);
    outline-offset: 4px;
    border-radius: 6px;
}

.navbar-brand-logo {
    max-height: 44px;
    width: auto;
    display: block;
}

.site-navbar .nav-link {
    color: var(--golden-color) !important;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
    color: var(--light-golden-color) !important;
    background-color: var(--navbar-link-hover-bg);
}

.site-navbar .nav-link:focus-visible {
    outline: 2px solid var(--golden-color);
    outline-offset: 2px;
}

.site-navbar-primary .nav-link {
    text-transform: uppercase;
    font-size: 0.8125rem;
}

.site-navbar .navbar-collapse {
    flex-grow: 1;
}

/* Below lg: collapse menu full width under the logo row. At lg+: one row (do not use w-100 on collapse or it wraps under the logo). */
@media (max-width: 991.98px) {
    .site-navbar .site-navbar-collapse {
        flex-basis: 100%;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .site-navbar .navbar-brand {
        margin-right: 2rem;
    }

    .site-navbar .navbar-collapse {
        flex-basis: auto;
        width: auto !important;
        min-width: 0;
        justify-content: flex-end;
    }
}

.nav-link-cart {
    min-height: 44px;
    min-width: 44px;
}

.cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    color: var(--dark-blue-color);
    background: var(--golden-color);
    border-radius: 999px;
}

.nav-link-profile {
    padding: 0.4rem 0.65rem !important;
}

.site-navbar-profile-icon {
    font-size: 1.65rem;
    color: var(--golden-color);
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link-profile:hover .site-navbar-profile-icon,
.nav-link-profile:focus .site-navbar-profile-icon {
    color: var(--light-golden-color);
    transform: scale(1.05);
}

.site-navbar .nav-link-profile.dropdown-toggle::after {
    display: none;
}

.user-profile-dropdown {
    background-color: var(--dark-blue-color);
    border: 1px solid var(--navbar-border-subtle);
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.35rem !important;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.site-navbar-dropdown-divider {
    border-color: var(--light-blue-color);
    margin: 0.4rem 0;
    opacity: 0.6;
}

.site-navbar-dropdown-item {
    color: var(--light-golden-color) !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 0.65rem 1.15rem !important;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.site-navbar-dropdown-item:hover,
.site-navbar-dropdown-item:focus {
    background-color: var(--navbar-dropdown-hover) !important;
    color: var(--light-golden-color) !important;
}

.site-navbar-dropdown-item--disabled {
    cursor: not-allowed !important;
    opacity: 0.45;
    color: var(--golden-color) !important;
}

.site-navbar-dropdown-item--disabled:hover {
    background-color: transparent !important;
}

.site-navbar-dropdown-logout {
    cursor: pointer;
}

.logoutbutton {
    background-color: #C9ADA7;
    border: 1px solid var(--golden-color);
    border-radius: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.button-style {
    border: 1px solid var(--golden-color);
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.site-navbar-login-cta {
    border: 1px solid var(--golden-color);
    border-radius: 999px;
    padding: 0.45rem 1.15rem !important;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-navbar-login-cta:hover,
.site-navbar-login-cta:focus {
    background-color: var(--golden-color) !important;
    color: var(--dark-blue-color) !important;
    border-color: var(--golden-color) !important;
    box-shadow: 0 4px 16px rgba(201, 173, 167, 0.35);
}

.site-navbar .navbar-toggler {
    border: 1px solid transparent;
    background-color: rgba(242, 233, 228, 0.06);
}

.site-navbar .navbar-toggler:hover {
    background-color: var(--navbar-link-hover-bg);
}

.site-navbar .navbar-toggler:focus {
    box-shadow: none !important;
}

.site-navbar .navbar-toggler:focus-visible {
    outline: 2px solid var(--golden-color);
    outline-offset: 2px;
}

.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(201,173,167,100)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile header: cart + hamburger outside the collapsible menu */
.site-navbar-mobile-controls .site-navbar-cart-btn {
    padding: 0.35rem 0.5rem !important;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
}

.site-navbar-mobile-account-header .nav-link.disabled {
    color: var(--golden-color) !important;
    opacity: 0.75;
    font-size: 0.68rem !important;
    letter-spacing: 0.14em !important;
    padding-bottom: 0.35rem !important;
    margin-bottom: 0.15rem !important;
    border-bottom: 1px solid var(--navbar-border-subtle);
}

.site-navbar-mobile-logout {
    color: var(--golden-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8125rem !important;
}

.site-navbar-mobile-logout:hover,
.site-navbar-mobile-logout:focus {
    background-color: var(--navbar-link-hover-bg) !important;
    color: var(--light-golden-color) !important;
}

@media (max-width: 991.98px) {
    .site-navbar-actions .nav-item.d-lg-none:not(.site-navbar-mobile-account-header) .nav-link:not(.site-navbar-mobile-logout) {
        text-transform: uppercase;
        font-size: 0.8125rem;
    }
}

.hero-wrapper {
    width: 100%; /* full width */
    height: 80vh; /* adjust height as needed */
    background-image: url('/images/hero.jpg'); /* path to your image */
    background-size: cover; /* image covers entire div */
    background-position: center; /* center the image */
    background-repeat: no-repeat;
    position: relative;
}

.hero-section {
    height: 100%; /* fill the parent div height */
    width: 100%; /* fill the parent div width */
    position: relative;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* optional overlay */
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2; /* ensures text is above overlay */
}

.SubMainBox {
    width: 85%;
    margin: 0 auto;
}

.vision{
    padding-top:40px;
}

.vision-grid-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-direction: row;
}
.vision-grid-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-direction: row;
}

.vision-item {
    text-align: center;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vision-item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.vision-item p {
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark-blue-color);
}

.opportunitybox {
    border: 1px solid #b3a9a4;
    padding: 40px;
    margin-top: 150px;
    margin-bottom: 30px;
    box-sizing: border-box;
    text-align: left;
}

.income-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

    .income-grid button {
        background-color: #4A4E69;
        color: #C9ADA7;
        border: none;
        border-radius: 4px;
        padding: 15px 25px;
        width: 220px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

.income-grid button:hover {
    background-color: #2d3152;
    transform: translateY(-2px);
}

.arrow {
    display: block;
    width: 50px; /* adjust size */
    margin: 10% auto;
    cursor: pointer;
    animation: moveUpDown 2s infinite ease-in-out;
}

.product-category-card {
    min-width: 20rem;
    background-color: var(--light-golden-color);
}

    .product-category-card img {
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }


    .product-category-card a, h5 {
        color: var(--dark-blue-color);
    }

    .product-category-card a {
        border: 1px solid var(--dark-blue-color);
    }

        .product-category-card a:hover {
            background-color: var(--dark-blue-color);
            color: var(--golden-color);
        }

/* ----- Home: shared container for quote + Our Products ----- */
.home-moto-products-wrap .home-moto-quote {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

/* ----- Home: Our Products — symmetric row (arrows + strip); centered on mobile ----- */
.home-products-section .home-products-heading {
    letter-spacing: 0.06em;
}

.home-products-section .home-products-carousel {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.home-products-section .home-products-nav-col {
    flex: 0 0 auto;
}

.home-products-section .home-products-nav-btn {
    line-height: 1;
    border: none;
    box-shadow: none;
}

.home-products-section .home-products-strip-wrap {
    min-width: 0;
}

.home-products-section .home-products-card-strip {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.home-products-section .home-products-card-strip::-webkit-scrollbar {
    display: none;
}

.home-products-section .home-product-category-card {
    flex: 0 0 auto;
    width: min(20rem, calc(100vw - 7rem));
    max-width: 20rem;
    min-width: 0 !important;
}

.home-products-section .home-product-category-img {
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
    display: block;
}

.home-products-section .home-product-category-title {
    letter-spacing: 0.04em;
}

/* Our Products: hide side arrows; wider cards; rely on touch scroll (not arrow taps) */
@media (max-width: 767.98px) {
    .home-products-section .home-products-nav-col {
        display: none !important;
    }

    .home-products-section .home-product-category-card {
        width: min(24rem, calc(100vw - 1.25rem)) !important;
        max-width: min(24rem, calc(100vw - 1.25rem));
    }

    .home-products-section .home-product-category-img {
        height: clamp(180px, 48vw, 220px);
    }
}

@media (max-width: 575.98px) {
    .home-products-section .home-products-heading.display-5 {
        font-size: 1.65rem;
    }
}

#cardContainer::-webkit-scrollbar {
    display: none;
}

.left-right-arrow {
    color: var(--dark-blue-color);
    font-size: 5rem;
}

.search-box {
    background-color: var(--light-blue-color);
    width: 400px;
    border-style: none;
    border-radius: 5px;
    color: var(--golden-color) !important;
}

.search-box::placeholder{
    color: var(--golden-color);
    opacity: 0.7;
}

    .search-box:focus {
        outline: none;
        box-shadow: none;
        border: none;
    }

.cart-btn {
    background-color: var(--light-blue-color);
    color: var(--golden-color);
    border: 1px solid var(--golden-color);
}

    .cart-btn:hover {
        background-color: var(--golden-color);
    }

footer {
    background-color: var(--dark-blue-color);
    color: var(--golden-color);
    width: 100%;
    height: auto;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-content {
    text-decoration: underline;
    color: var(--golden-color);
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-content:hover {
    color: var(--light-golden-color);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    color: var(--golden-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: var(--light-golden-color);
    transform: translateY(-3px);
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-info {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Product filters/cards: see Product index section at end of file */

/* Smooth up-down animation */
@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.qty-btn{
    border-style: none;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 1.3rem;
    background-color: var(--dark-blue-color);
    color: var(--golden-color);
}

    .qty-btn:focus {
        border-style: none;
    }

.qty-input {
    border: none;
    outline: none;
    text-align: center;
    padding: 8px;
    font-size: 1rem;
    background-color: var(--golden-color);
    border-bottom: 1px solid var(--dark-blue-color);
    color: var(--dark-blue-color);
    width: 50px;
}

    .qty-input:focus {
        box-shadow: none;
        border-style: none;
    }

.add-to-cart {
    border: none;
    outline: none;
    text-align: center;
    background-color: var(--dark-blue-color);
    color: var(--golden-color);
    padding: 8px;
    font-size: 1rem;
    border-radius: 5px;
}

@media (max-width: 991.98px) {
    .site-navbar .navbar-nav {
        align-items: stretch !important;
    }

    .site-navbar-actions {
        padding-top: 0.5rem;
        border-top: 1px solid var(--navbar-border-subtle);
        margin-top: 0.35rem;
    }

    .site-navbar-login-cta {
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .site-navbar {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .card {
        min-width: 17.1rem;
    }

    .left-right-arrow {
        font-size: 2rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section {
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
        gap: 1.25rem;
    }

    .social-icon {
        font-size: 1.3rem;
    }
    
    .footer-content {
        font-size: 0.8rem;
    }

    .footer-logo {
        max-width: 160px;
        margin: 0 auto;
        display: block;
    }

    .footer-info {
        text-align: center;
        font-size: 0.85rem;
    }

    /* Product Index Page Mobile Styles */
    .products-section {
        width: 100% !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
        box-sizing: border-box;
    }

    #product-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }

    #product-container.row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .product-card {
        width: 100% !important;
        max-width: 100%;
        margin: 0.75rem 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }

    /* Mobile Filter Button (Bubble) */
    .mobile-filter-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: var(--light-blue-color);
        color: var(--golden-color);
        border: 2px solid var(--golden-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-filter-btn:hover {
        background-color: var(--dark-blue-color);
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .mobile-filter-btn:active {
        transform: scale(0.95);
    }

    /* Mobile Filter Modal */
    .mobile-filter-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 2000;
        overflow-y: auto;
    }

    .mobile-filter-modal-content {
        background-color: var(--light-blue-color);
        color: var(--golden-color);
        margin: 20px auto;
        padding: 0;
        border-radius: 10px;
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-filter-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 2px solid var(--golden-color);
    }

    .mobile-filter-modal-header h3 {
        margin: 0;
        color: var(--golden-color);
        font-size: 1.5rem;
    }

    .mobile-filter-close {
        background: none;
        border: none;
        color: var(--golden-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

    .mobile-filter-close:hover {
        transform: rotate(90deg);
    }

    .mobile-filter-modal-body {
        padding: 1.5rem;
    }

    .mobile-filter-section {
        margin-bottom: 2rem;
    }

    .mobile-filter-section h4 {
        color: var(--golden-color);
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .mobile-filter-section label {
        display: block;
        margin-bottom: 0.75rem;
        font-size: 1rem;
        cursor: pointer;
    }

    .mobile-filter-section input[type="radio"],
    .mobile-filter-section input[type="checkbox"] {
        margin-right: 0.5rem;
        cursor: pointer;
    }

    .mobile-filter-modal-footer {
        padding: 1.5rem;
        border-top: 2px solid var(--golden-color);
        text-align: center;
    }

    .mobile-filter-modal-footer .btn {
        background-color: var(--dark-blue-color);
        color: var(--golden-color);
        border: 2px solid var(--golden-color);
        padding: 0.75rem 2rem;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .mobile-filter-modal-footer .btn:hover {
        background-color: var(--golden-color);
        color: var(--dark-blue-color);
    }

    .search-box {
        width: 100%;
        max-width: 100%;
    }

    .vision-grid-1,
    .vision-grid-2 {
        gap: 15px; /* reduced gap for tablet/mobile */
    }

    .vision-item {
        padding: 10px;
        margin: 10px;
    }

    .vision-item img {
        width: 180px;
        height: 180px;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table {
        font-size: 0.85rem;
    }

    .table th,
    .table td {
        padding: 0.5rem;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .footer-heading {
        font-size: 0.95rem;
    }

    .social-icon {
        font-size: 1.2rem;
    }
    
    .footer-content {
        font-size: 0.75rem;
    }

    .footer-logo {
        max-width: 140px;
    }

    .footer-info {
        font-size: 0.8rem;
    }

    /* Product Index Page Small Mobile Styles */
    .mobile-filter-modal-content {
        width: 95%;
        margin: 10px auto;
    }

    .mobile-filter-modal-header {
        padding: 1rem;
    }

    .mobile-filter-modal-header h3 {
        font-size: 1.3rem;
    }

    .mobile-filter-modal-body {
        padding: 1rem;
    }

    .mobile-filter-section h4 {
        font-size: 1.1rem;
    }

    .mobile-filter-section label {
        font-size: 0.9rem;
    }

    .mobile-filter-modal-footer {
        padding: 1rem;
    }

    .table {
        font-size: 0.75rem;
    }

    .table th,
    .table td {
        padding: 0.4rem;
    }

    .vision-grid-1,
    .vision-grid-2 {
        gap: 10px; /* reduced gap for mobile */
        justify-content: center;
    }

    .vision-item {
        padding: 8px;
        margin: 8px;
    }

    .vision-item img {
        width: 150px;
        height: 150px;
    }

    .vision-item p {
        font-size: 14px;
    }
}

/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}*/

/* ----- Product index (browse + admin) — Cart-style cards & typography ----- */
/* Top offset comes from .page-content-inner (aligned with Cart / About / Opportunities) */
.product-admin-page,
.product-browse-page {
    padding-top: 0;
    padding-bottom: 2.5rem;
}

.product-page-title {
    color: #2c3e50;
    font-size: 2rem;
}

.product-index-lead {
    color: #4A4E69;
    font-size: 1.05rem;
    max-width: 640px;
    letter-spacing: 0.04em;
    line-height: 1.55;
}

.btn-product-primary {
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(34, 34, 59, 0.3);
    background-color: #22223B;
    color: #C9ADA7 !important;
    border: 1px solid #22223B;
    letter-spacing: 0.04em;
}

.btn-product-primary:hover {
    color: #C9ADA7 !important;
    background-color: #2f2f4a;
    border-color: #2f2f4a;
}

.product-admin-table-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0 !important;
    background: #fff;
}

.product-table-head th {
    background: #f8f9fa;
    color: #2c3e50;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e9ecef;
    padding: 0.85rem 1rem;
}

.product-admin-table-card tbody td {
    padding: 0.75rem 1rem;
    border-color: #f0f0f0;
}

.product-filter-panel {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(34, 34, 59, 0.08);
    padding: 1.25rem 1.25rem;
    position: sticky;
    top: 6rem;
    color: #22223B;
}

.product-filter-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-filter-label {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: 0.95rem;
    color: #4A4E69;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.product-filter-options .product-filter-label:last-of-type {
    margin-bottom: 0;
}

.products-section {
    background-color: transparent;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(34, 34, 59, 0.12) !important;
}

.product-card-img-wrap {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-card-img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-desc {
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-product-add-cart {
    border-radius: 8px;
    min-width: 42px;
    background-color: #22223B;
    color: #C9ADA7;
    border: none;
    padding: 0.45rem 0.65rem;
}

.btn-product-add-cart:hover {
    background-color: #1a1a2e;
    color: #C9ADA7;
}

.product-mobile-filter-sheet {
    background-color: #fff !important;
    color: #22223B !important;
}

.product-mobile-filter-sheet .mobile-filter-modal-header {
    border-bottom-color: #e0e0e0 !important;
}

.product-mobile-filter-sheet .mobile-filter-modal-header h3 {
    color: #2c3e50 !important;
}

.product-mobile-filter-sheet .mobile-filter-section h4 {
    color: #22223B !important;
}

.product-mobile-filter-sheet .mobile-filter-modal-footer {
    border-top-color: #e0e0e0 !important;
}

.product-mobile-filter-sheet .mobile-filter-close {
    color: #4A4E69 !important;
}
