/* NAVBAR STYLING */
.navbar-transparent {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
    z-index: 9999;
}

.navbar-transparent .nav-link,
.navbar-transparent .navbar-brand {
    color: white !important;
}

.navbar-scrolled {
    background-color: black !important;
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-brand {
    color: white !important;
}

.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: red !important;
}

.navbar-static {
    background-color: #000000;

    .navbar-nav .nav-link {
        color: #FFFFFF;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: red !important;
    }

    .navbar-brand {
        color: white !important;
    }
}

.navbar-toggler {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link.active {
    color: #E92529 !important;
}

/* NAVBAR STYLING END */


/* HOMEPAGE HERO STYLING */
.hero-section {
    /* Layout */
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-top: 3rem;
    padding-bottom: 2.5rem;

    /* Background image */
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
        padding-bottom: 5rem;
    }
}

.hero-content {
    max-width: 48rem;
    padding: 0 50px;
}

.hero-content-homepage {
    max-width: 48rem;
    padding: 0 50px;
}

.hero-title {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 40px;
        line-height: 1.2;
    }


}

@media (max-width: 576px) {
    .hero-content {
        max-width: 48rem;
        padding: 32px 16px;
    }
    .hero-content-homepage {
        max-width: 48rem;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 61px;
        line-height: 71px;
    }
}

.hero-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

@media (min-width: 576px) {
    .hero-text {
        font-size: 1.125rem;
        line-height: 26px;
    }
}

@media (min-width: 992px) {
    .hero-text {
        font-size: 21px;
        line-height: 29px;
    }
}

.text-brand-red {
    color: #E92529 !important;
}

/* HOMEPAGE HERO STYLING END */


/* HOMEPAGE SECTION 2 STYLING */
.about-section {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    padding: 3rem 0;
}

@media (min-width: 576px) {
    .about-section {
        min-height: 600px;
        padding: 5rem 0;
    }
}

@media (min-width: 992px) {
    .about-section {
        min-height: 716px;
        padding: 161px 0;
    }
}

.about-content {
    width: 100%;
    max-width: 834px;
}

.about-article {
    background-color: rgba(233, 37, 41, 1);
    padding: 1.5rem;
}

@media (min-width: 576px) {
    .about-article {
        padding: 2.5rem;
    }
}

@media (min-width: 992px) {
    .about-article {
        padding: 83px 79px;
    }
}

.about-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.3;
}

@media (min-width: 576px) {
    .about-title {
        font-size: 24px;
        line-height: 1.4;
    }
}

@media (min-width: 992px) {
    .about-title {
        font-size: 25px;
        line-height: 32px;
    }
}

.about-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 576px) {
    .about-text {
        margin-top: 1.75rem;
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

@media (min-width: 992px) {
    .about-text {
        margin-top: 21px;
        font-size: 0.875rem; /* 14px */
        line-height: 21px;
    }
}

.about-link {
    display: inline-block;
    margin-top: 2rem;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    text-decoration: underline;
}

@media (min-width: 576px) {
    .about-link {
        font-size: 1.125rem;
    }
}

/* HOMEPAGE SECTION 2 STYLING END */


/* HOMEPAGE SECTION 3 STYLING */
.partners-section {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .partners-section {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .partners-section {
        padding: 3rem 2rem;
    }
}

@media (min-width: 1024px) {
    .partners-section {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1280px) {
    .partners-section {
        padding: 63px 2rem;
    }
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .partners-container {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .partners-container {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .partners-container {
        gap: 3rem;
    }
}

@media (min-width: 1280px) {
    .partners-container {
        gap: 74px;
    }
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.partner1 {
    max-width: 80px;
}

@media (min-width: 640px) {
    .partner1 {
        max-width: 100px;
    }
}

@media (min-width: 768px) {
    .partner1 {
        max-width: 120px;
    }
}

@media (min-width: 1024px) {
    .partner1 {
        max-width: 140px;
    }
}

@media (min-width: 1280px) {
    .partner1 {
        max-width: 147px;
    }
}

.partner2 {
    max-width: 60px;
}

@media (min-width: 640px) {
    .partner2 {
        max-width: 80px;
    }
}

@media (min-width: 768px) {
    .partner2 {
        max-width: 90px;
    }
}

@media (min-width: 1024px) {
    .partner2 {
        max-width: 100px;
    }
}

@media (min-width: 1280px) {
    .partner2 {
        max-width: 112px;
    }
}

.partner3 {
    max-width: 80px;
}

@media (min-width: 640px) {
    .partner3 {
        max-width: 100px;
    }
}

@media (min-width: 768px) {
    .partner3 {
        max-width: 110px;
    }
}

@media (min-width: 1024px) {
    .partner3 {
        max-width: 120px;
    }
}

@media (min-width: 1280px) {
    .partner3 {
        max-width: 136px;
    }
}

.partner4 {
    max-width: 90px;
}

@media (min-width: 640px) {
    .partner4 {
        max-width: 110px;
    }
}

@media (min-width: 768px) {
    .partner4 {
        max-width: 130px;
    }
}

@media (min-width: 1024px) {
    .partner4 {
        max-width: 150px;
    }
}

@media (min-width: 1280px) {
    .partner4 {
        max-width: 164px;
    }
}

.partner5 {
    max-width: 90px;
}

@media (min-width: 640px) {
    .partner5 {
        max-width: 110px;
    }
}

@media (min-width: 768px) {
    .partner5 {
        max-width: 130px;
    }
}

@media (min-width: 1024px) {
    .partner5 {
        max-width: 150px;
    }
}

@media (min-width: 1280px) {
    .partner5 {
        max-width: 159px;
    }
}

/* HOMEPAGE SECTION 3 STYLING END */


/* HOMEPAGE SECTION 4 STYLING */
.products-section {
    background-color: #fff;
}

.section-title h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: .75rem;
}

.section-title .highlight {
    color: #e92529;
}

.section-title p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.products-section .section-4-description {
    text-transform: none;
}

/* VERTICAL RAIL + NAV */
.product-list {
    position: relative;
}

.product-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px; /* mobile rail width */
    background: #c9c9c9;
    border-radius: 6px;
}

.product-list .nav {
    padding-left: 24px; /* space for rail + gap (mobile) */
}

/* NAV ITEM (button) */
.product-item {
    position: relative;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 12px 14px;
    border-radius: .5rem;
    color: #4b4b4b;
}

.product-item + .product-item {
    margin-top: 37px;
}

/* spacing between items */

/* active item card look */
.product-item.active {
    background: #FFFFFF;
}

/* red segment that lines up with the rail */
.product-item.active::before {
    content: "";
    position: absolute;
    left: -24px; /* align inside the rail on mobile */
    top: 0;
    bottom: 0;
    width: 6px;
    background: #e92529;
    border-radius: 6px;
}

/* text styles */
.product-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #4b4b4b;
}

.product-sub {
    display: block;
    margin-top: .25rem;
    font-size: 15px;
    line-height: 1.3;
    color: #4b4b4b;
}

.product-item.active .product-title {
    color: #e92529;
}

/* IMAGE */
.tab-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* DESKTOP TWEAKS */
@media (min-width: 992px) {
    .product-list::before {
        width: 11px; /* desktop rail width */
    }

    .product-list .nav {
        padding-left: 36px; /* rail + gap (desktop) */
    }

    .product-item.active::before {
        left: -36px; /* align red segment with desktop rail */
        width: 11px;
    }

    .product-title {
        font-size: 25px;
    }

    .product-sub {
        font-size: 14px;
    }
}

/* HOMEPAGE SECTION 4 STYLING END */


/* HOMEPAGE SECTION 5 STYLING */
.brand-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brand-track {
    display: flex;
    align-items: stretch;
    animation: scroll 25s linear infinite;
    /* Calculate width: (number of items + margin) * 2 for seamless loop */
    width: calc(200% + 40px);
}

.brand-item {
    flex: 0 0 auto;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
}

.brand-item img {
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly 20% to create seamless loop */
        transform: translateX(-20%);
    }
}

/* Pause animation on hover */
.brand-slider:hover .brand-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-item {
        margin-right: 60px;
        min-width: 140px;
        height: 60px;
    }

    .brand-item img {
        max-width: 100px;
        max-height: 45px;
    }

    .brand-track {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .brand-item {
        margin-right: 40px;
        min-width: 120px;
    }

    .brand-item img {
        max-width: 80px;
        max-height: 40px;
    }

    .brand-track {
        animation-duration: 15s;
    }
}

/* HOMEPAGE SECTION 5 STYLING END */


/* ABOUT US PAGE SECTION 2 STYLING */
.vision-section {
    min-height: 100vh;
}

.vision-content {
    padding: 3rem;
    width: 55%;
    flex: 0 0 55%;
}

.vision-text-container {
    max-width: 500px;
}

.vision-title-1,
.vision-title-2 {
    font-size: 32px;
    line-height: 40px;
}

.vision-paragraphs {
    margin-top: 2rem;

    p {
        font-size: 16px;
        line-height: 24px;
        color: #000000;
        margin-bottom: 1.5rem;
    }
}

.vision-image {
    min-height: 600px;
    width: 45%;
    flex: 0 0 45%;
}

.vision-img {
    object-fit: cover;
    top: 0;
    left: 0;
}

/* Responsive Design */
@media (min-width: 992px) {
    .vision-content {
        padding: 5rem;
        width: 55%;
        flex: 0 0 55%;
    }

    .vision-image {
        min-height: auto;
        width: 45%;
        flex: 0 0 45%;
    }
}

@media (max-width: 767.98px) {
    .vision-content {
        padding: 2rem;
        width: 100%;
        flex: 1 1 100%;
    }

    .vision-title-1,
    .vision-title-2 {
        font-size: 24px;
        line-height: 32px;
    }

    .vision-paragraph {
        font-size: 14px;
        line-height: 22px;
    }

    .vision-image {
        min-height: 400px;
        width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 575.98px) {
    .vision-content {
        padding: 1.5rem;
        width: 100%;
        flex: 1 1 100%;
    }

    .vision-image {
        min-height: 300px;
        width: 100%;
        flex: 1 1 100%;
    }
}

/* ABOUT US PAGE SECTION 2 STYLING END */


/* ABOUT US PAGE SECTION 3 STYLING */
.vision-mission-section {
    min-height: 980px;
    padding: 0;
}

.vision-header {
    padding: 1.5rem 5rem;
}

.vision-header-title {
    font-size: 32px;
    letter-spacing: 0.1em;
    margin: 0;
}

.vision-main-content {
    flex: 1;
    min-height: 500px;
    padding: 0 5rem;
}

.vision-bg-image {
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.vision-cards-container {
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: 4rem;
}

.vision-card {
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.vision-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vision-card-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .vision-cards-container {
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .vision-header {
        padding: 1.5rem 2rem;
    }

    .vision-header-title {
        font-size: 24px;
    }

    .vision-main-content {
        padding: 0 2rem;
    }

    .vision-cards-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .vision-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .vision-header {
        padding: 1.5rem 1rem;
    }

    .vision-main-content {
        padding: 0 1rem;
    }

    .vision-card {
        padding: 1.25rem;
    }

    .vision-card-title {
        font-size: 1.25rem;
    }
}

/* Ensure proper stacking context */
.vision-mission-section {
    position: relative;
    overflow: hidden;
}

/* ABOUT US PAGE SECTION 3 STYLING END */


/* ABOUT US PAGE SECTION 4 STYLING */
.brands-section {
    padding: 5rem 1rem 5rem 1rem;
}

.brands-header {
    margin-bottom: 3rem;
}

.brands-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.brands-description {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    color: #6b7280;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Desktop Layout */
.brands-grid-desktop {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.brands-logos-row {
    border-collapse: collapse;
}

.brands-stores-row {
    margin-top: -1px;
}

/* Brand Cards */
.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background-color: white;
    padding: 1rem;
    border: 0.1px solid #E92529;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.brand-card:hover {
    background-color: #E92529;
}

.brand-card-no-effect:hover .brand-logo {
    opacity: 1 !important;
    transition: none !important;
}

.brand-card-no-effect:hover {
    background-color: white !important;
}

.brand-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.brand-card:hover .brand-logo {
    opacity: 0;
}

.brand-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.brand-card:hover .brand-overlay {
    opacity: 1;
}

.brand-outlets {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.brand-location {
    font-size: 1.125rem;
}

/* Store Images */
.store-image-container {
    aspect-ratio: 1;
    overflow: hidden;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Layout */
/*.brands-mobile-grid {*/
/*    gap: 1px;*/
/*}*/

.brand-mobile-pair {
    border: 0.1px solid #E92529;
}

.brand-card-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background-color: white;
    padding: 0.5rem;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 0.1px solid #E92529;
}

.brand-card-mobile:hover {
    background-color: #E92529;
}

.brand-logo-mobile {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.brand-card-mobile:hover .brand-logo-mobile {
    opacity: 0;
}

.brand-overlay-mobile {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.brand-card-mobile:hover .brand-overlay-mobile {
    opacity: 1;
}

.brand-outlets-mobile {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.brand-location-mobile {
    font-size: 0.75rem;
}

.store-image-container-mobile {
    aspect-ratio: 1;
    overflow: hidden;
}

.store-image-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .brands-section {
        padding: 3rem 1rem;
    }

    .brands-title {
        font-size: 2rem;
    }

    .brands-header {
        margin-bottom: 2rem;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .brands-section {
        padding: 4rem 2rem;
    }
}

@media (min-width: 992px) {
    .brands-section {
        padding: 5rem 5rem;
    }
}

/* ABOUT US PAGE SECTION 4 STYLING */


/* OUR BRANDS PAGE SECTION 2 STYLING */
.brands-title {
    color: rgba(233, 37, 41, 1);
}

.brand-box {
    aspect-ratio: 1;
    border: 0.1px solid #E92529;
    background-color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Desktop: Remove gaps between grid items */
@media (min-width: 992px) {
    .desktop-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        border-collapse: collapse;
        gap: 0;
    }

    .desktop-grid .brand-box {
        border-collapse: collapse;
    }
}

@media (max-width: 576px) {
    .brand-box {
        max-height: 250px;
        max-width: 250px;
    }

    .brand-box img {
        height: 250px;
        width: 250px;
    }
}

/* Mobile/Tablet: Small gaps */
@media (max-width: 991.98px) {
    .brand-box-mobile {
        display: flex !important;
        justify-content: center;
    }
}

/* OUR BRANDS PAGE SECTION 2 STYLING END*/


/* OUR BRANDS PAGE SECTION 3 STYLING */
.brand-section {
    position: relative;
    min-height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: normal;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .brand-section {
        min-height: 100vh;
        padding: 161px 0;
    }
}

.brand-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.brand-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 992px) {
    .brand-content-wrapper {
        justify-content: flex-start;
    }
}

.brand-content-box {
    background-color: white;
    color: black;
    padding: 1.5rem;
    width: 100%;
    max-width: 834px;
    border-radius: 0.5rem;
}

@media (min-width: 576px) {
    .brand-content-box {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .brand-content-box {
        padding: 79px;
        max-width: 600px;
        margin-right: auto;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
}

@media (min-width: 1200px) {
    .brand-content-box {
        max-width: 834px;
    }
}

.brand-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .brand-logo {
        height: 4rem;
    }
}

@media (min-width: 992px) {
    .brand-logo {
        height: 4rem;
    }
}

.brand-subtitle {
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .brand-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .brand-subtitle {
        font-size: 25px;
        line-height: 2rem;
    }
}

.brand-title {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .brand-title {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) {
    .brand-title {
        font-size: 1.125rem;
    }
}

.brand-description {
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .brand-description {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .brand-description {
        font-size: 0.875rem;
        line-height: 21px;
    }
}

.brand-bullet-points {
    margin-bottom: 2rem;
}

.brand-bullet-points ul {
    list-style: none;
    padding-left: 0;
    color: #374151;
    font-size: 0.875rem;
}

@media (min-width: 576px) {
    .brand-bullet-points ul {
        font-size: 1rem;
    }
}

.brand-bullet-points li {
    margin-bottom: 0.5rem;
}

.brand-bullet-points li::before {
    content: "•";
    margin-right: 0.5rem;
}

.brand-learn-more {
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    color: #374151;
    text-decoration: underline;
    text-underline-offset: 4px;
    background: none;
    border: none;
    padding: 0;
    min-height: 44px;
    transition: color 0.3s ease;
    cursor: pointer;
}

@media (min-width: 576px) {
    .brand-learn-more {
        font-size: 1.125rem;
        min-height: auto;
    }
}

.brand-learn-more:hover {
    color: #dc2626;
}

.brand-learn-more:focus {
    outline: 2px solid rgba(0, 0, 0, 0.5);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* OUR BRANDS PAGE SECTION 3 STYLING END */


/* STORE LOCATOR STYLING*/
.store-locator-header {
    /* Layout */
    position: relative;
    min-height: 60vh;
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    padding-top: 25vh;
    padding-bottom: 2.5rem;

    /* Background image */
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

.store-locator-header-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.store-locator-header-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    width: 30vw;
}

@media (min-width: 766px) {
    .store-locator-header {
        min-height: 60vh;
        padding-bottom: 5rem;
    }

    .store-locator-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 2fr;
        height: 80vh;
    }

    .location-card-container {
        overflow-y: scroll;
        
    }

    .google-map-container-desktop {
        position: relative;
        display: initial;
        height: 80vh;
    }

    .google-map-container-phone {
        display: none;
    }

    .google-map-section #googleMap {
        height: 80vh;
        width: 100%;
    }
}

@media (max-width: 765px) {
    .store-locator-content-wrapper {
        display: flex;
        flex-direction: column;
        overflow: scroll;
        margin-bottom: min(50px, 2vh);
    }

    .store-locator-header-text {
        text-align: center;
        font-size: 1.2rem;
        font-weight: 500;
        width: 100%;
    }

    .location-container {
        position: sticky;
        top: 0; /* stick to the top of the viewport */
        background: #fff; /* prevent overlap transparency */
        z-index: 1000; /* stay above map and other elements */
        padding: 1rem; /* optional: spacing so text doesn’t stick to edge */
    }

    .location-card-container {
        max-height: 50vh; /* keep list scrollable */
        overflow-y: auto;
    }

    .google-map-container-phone {
        display: initial;
    }

    .google-map-container-desktop {
        display: none;
    }

    .info-window {
        width: 80vw;
    }
}


.store-locator-content-find-our-store {
    padding: 4svh 2svw;

    overflow: scroll;
}

.store-locator-content-find-our-store h1 {
    font-weight: 700;
}

.store-locator-content-card {
    border-color: transparent;
    border-radius: 0.375rem;
    overflow-wrap: break-word;
}

.store-locator-modal-content p {
    font-size: 0.8rem;
    font-weight: 400;
}

.store-locator-modal-content span {
    min-width: 50px;
}

.store-locator-content-find-our-store-details > p, h3 {
    margin: 0.3svh;
    text-align: start;
}

.info-window {
    width: 20vw;
    height: auto;
    overflow: hidden;
}

.info-window h3, .info-window p {
    overflow-wrap: break-word;
}

/* OUR BRANDS PAGE SECTION 4 STYLING */
.store-stats-section {
    background-color: white;
    padding: 48px 16px;
    --brand-red: #E92529;
}

@media (min-width: 576px) {
    .store-stats-section {
        padding: 64px 32px;
    }
}

@media (min-width: 992px) {
    .store-stats-section {
        padding: 80px 80px;
    }
}

.main-heading {
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .main-heading {
        margin-bottom: 64px;
    }
}

.heading-primary {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 8px;
}

.heading-secondary {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-red);
    text-align: center !important;
}

@media (min-width: 576px) {
    .heading-primary,
    .heading-secondary {
        font-size: 1.875rem;
    }
}

@media (min-width: 992px) {
    .heading-primary,
    .heading-secondary {
        font-size: 2.25rem;
    }
}

.stats-grid {
    margin-bottom: 48px;
}

.store-card {
    background-color: white;
    padding: 24px;
    border: 1px solid #d1d5db;
    margin-bottom: 32px;
    height: 340px;
}

@media (min-width: 992px) {
    .store-card {
        padding: 32px;
        margin-bottom: 48px;
    }
}

.store-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 8px;
}

.region-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: black;
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .store-count {
        font-size: 1.875rem;
    }

    .region-title {
        font-size: 1.5rem;
    }
}

.state-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.state-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.state-name {
    font-weight: 600;
    color: black;
}

.state-count {
    color: black;
}

.learn-more-btn {
    font-size: 1rem;
    font-weight: 700;
    color: black;
    background: none;
    border: none;
    border-bottom: 2px solid black;
    padding-bottom: 4px;
    transition: all 0.3s ease;
    min-height: 44px;
    cursor: pointer;
}

.learn-more-btn:hover,
.learn-more-btn:focus {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
    outline: none;
}

.learn-more-btn:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

@media (min-width: 576px) {
    .learn-more-btn {
        font-size: 1.125rem;
        min-height: auto;
    }
}

/* OUR BRANDS PAGE SECTION 4 STYLING END */


/* OUR PRODUCTS PAGE SECTION 3 STYLING */
.product-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.section-row {
    margin-bottom: 64px;
}

.section-row:last-child {
    margin-bottom: 0;
}

.text-container {
    background-color: #e92529; /* Bootstrap's red-500 equivalent */
    color: white;
    display: flex;
    align-items: center;
    padding: 32px 16px;
}

.text-content {
    width: 100%;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* rounded-start */
.rounded-start {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

/* rounded-end */
.rounded-end {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.square-end {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.square-start {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

@media (max-width: 575px) {
    .image-container {
        height: auto !important;
    }
}

/* Small screens (sm) */
@media (min-width: 576px) {
    .image-container {
        height: 250px;
        padding: 0;
    }

    .tab-content img {
        max-width: 100%;
        display: block;
    }

    .text-container {
        padding: 32px 32px;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .section-description {
        font-size: 1.125rem;
    }
}

/* Large screens (lg) */
@media (min-width: 992px) {
    .section-row {
        height: auto;
    }

    .image-container,
    .text-container {
        height: 100%;
        padding: 0;
    }

    .text-container {
        padding: 0 16px;
        display: flex;
        align-items: center;
    }

    .text-content {
        padding: 0 64px;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* OUR PRODUCTS PAGE SECTION 3 STYLING END */


/* OUR PRODUCTS PAGE SECTION 4 STYLING */
.bottom-banner {
    width: 100%;
    margin-top: 80px; /* mt-20 equivalent (20 * 0.25rem * 16 = 80px) */
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* OUR PRODUCTS PAGE SECTION 4 STYLING END */


/* CSG ESR EFFORTS PAGE SECTION 3 */
.tabs-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .tabs-section {
        padding: 0 32px;
        margin-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .tabs-section {
        padding: 0;
        margin-bottom: 80px;
    }
}

/* Custom tab styling */
.custom-nav-tabs {
    border: none;
    justify-content: center;
    gap: 40px;
    margin: 40px 0px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .custom-nav-tabs {
        gap: 50px;
        flex-wrap: nowrap;
    }
}

.custom-nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    color: black;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    padding: 8px 0;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

@media (min-width: 576px) {
    .custom-nav-tabs .nav-link {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .custom-nav-tabs .nav-link {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .custom-nav-tabs .nav-link {
        font-size: 1.25rem;
    }
}

/* Active tab styling */
.custom-nav-tabs .nav-link.active {
    border-bottom: 3px solid #dc3545;
    color: #dc3545;
    background: none;
}

/* Hover effect */
.custom-nav-tabs .nav-link:hover:not(.active) {
    color: #666;
}

/* Focus styles for accessibility */
.custom-nav-tabs .nav-link:focus {
    outline: none;
}

/* Content sections */
.content-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

.section-row {
    margin-bottom: 64px;
}

.section-row:last-child {
    margin-bottom: 0;
}

.image-container {
    height: 250px;
    padding: 0;
}

.text-container {
    background-color: #e92529;
    color: white;
    display: flex;
    align-items: center;
    padding: 32px 16px;
}

.text-content {
    width: 100%;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Small screens (sm) */
@media (min-width: 576px) {
    .image-container {
        height: 300px;
    }

    .text-container {
        padding: 32px 32px;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .section-description {
        font-size: 1.125rem;
    }
}

/* Large screens (lg) */
@media (min-width: 992px) {
    .section-row {
        margin-bottom: 64px;
    }

    .image-container,
    .text-container {
        height: 100%;
        padding: 0;
    }

    .text-container {
        padding: 0 16px;
        display: flex;
        align-items: center;
    }

    .text-content {
        padding: 0 64px;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* CSG ESR EFFORTS PAGE SECTION 3 END */


/* CONTACT US PAGE STYLING */
/* Left Side - Contact Info */
.contact-info {
    background-color: black;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 16px;
}

@media (min-width: 576px) {
    .contact-info {
        padding: 80px 32px;
    }
}

@media (min-width: 768px) {
    .contact-info {
        padding: 80px 48px;
    }
}

@media (min-width: 992px) {
    .contact-info {
        padding: 80px 96px;
    }
}

@media (min-width: 1200px) {
    .contact-info {
        padding: 80px 128px;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    color: #E92529;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 48px;
    line-height: 1.6;
}

@media (min-width: 576px) {
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 160px;
        max-width: 80%;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 576px) {
    .contact-details {
        gap: 40px;
    }
}

.contact-item h3 {
    color: #E92529;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 576px) {
    .contact-item p {
        font-size: 1.125rem;
    }
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Right Side - Inquiry Form */
.inquiry-form {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 16px;
}

.form-container {
    max-width: 512px;
    margin: 0 auto;
    width: 100%;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: black;
}

@media (min-width: 576px) {
    .form-title {
        font-size: 2.25rem;
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) {
    .form-title {
        font-size: 3rem;
    }
}

.form-title .text-red {
    color: #E92529;
}

.form-group {
    margin-bottom: 24px;
}

@media (min-width: 576px) {
    .form-group {
        margin-bottom: 28px;
    }
}

.form-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

@media (min-width: 576px) {
    .form-label {
        font-size: 1rem;
    }
}

.form-control {
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    height: 48px;
    font-size: 0.875rem;
    padding: 0 12px;
}

@media (min-width: 576px) {
    .form-control {
        height: 56px;
        font-size: 1rem;
    }
}

.form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 0.2rem rgba(233, 37, 41, 0.25);
}

.form-textarea {
    min-height: 200px !important;
    resize: none;
    padding: 12px;
}

.submit-btn {
    width: 100%;
    background-color: black;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 32px;
    transition: background-color 0.3s ease;
}

@media (min-width: 576px) {
    .submit-btn {
        padding: 28px;
        font-size: 1.25rem;
        margin-top: 40px;
    }
}

.submit-btn:hover {
    background-color: #374151;
}

/* CONTACT US PAGE STYLING END */


/* FOOTER STYLING */
.hover-red:hover {
    color: #e92529 !important;
}

footer img:hover {
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

/* Support Section Styling */
.support-section {
    background-color: rgba(233, 37, 41, 1);
    min-height: 200px;
    padding: 60px 0;
}

.support-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.support-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
}

.support-btn {
    color: black !important;
    background-color: white !important;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    min-width: 160px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.support-btn:hover {
    background-color: #f8f9fa !important;
    color: black !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.support-btn:active {
    background-color: #e9ecef !important;
    color: black !important;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .support-section {
        min-height: 180px;
        padding: 40px 0;
    }

    .support-title {
        font-size: 24px;
        text-align: center;
    }

    .support-text {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .support-section {
        min-height: 160px;
        padding: 30px 0;
    }

    .support-title {
        font-size: 22px;
    }

    .support-text {
        font-size: 15px;
    }

    .support-btn {
        padding: 14px 32px;
        font-size: 15px;
        min-width: 140px;
    }
}

@media (max-width: 575.98px) {
    .support-section {
        padding: 25px 15px;
    }

    .support-title {
        font-size: 20px;
    }

    .support-text {
        font-size: 14px;
    }

    .support-btn {
        padding: 12px 28px;
        font-size: 14px;
        min-width: 120px;
    }
}

/* Large screens optimization */
@media (min-width: 1200px) {
    .support-section {
        padding: 80px 0;
    }

    .support-title {
        font-size: 32px;
    }

    .support-text {
        font-size: 17px;
    }

    .support-btn {
        font-size: 17px;
        padding: 20px 80px;
        min-width: 180px;
    }
}

.logo-carousel {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.logo {
    flex: 0 0 auto;
    padding: 0 2rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}

/* FOOTER STYLING END */