html {
    color-scheme: light;
    forced-color-adjust: none;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Georgia', serif;
    background-color: #ffffff;
    color: #000;
    overflow-x: hidden;
    width: 100%;
}

/* Sticky Header */
.navbar {
    background-color: #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-brand img {
    height: 100px;
    width: auto;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: #000000 !important;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 20px;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc3545 !important;
}

.nav-link.active {
    color: #dc3545 !important;
}

.nav-link-icon {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link-icon i {
    font-size: 2rem;
}

.nav-link-icon:hover i {
    transform: scale(1.1);
}

.social-icons a {
    margin-left: 15px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.instagram-icon {
    color: #E4405F;
}

.whatsapp-icon {
    color: #25D366;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: calc(100vh - 100px);
}

#inicio {
    padding-top: 0px !important;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000000;
}

.category-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 40px;
    background-color: #e9ecef;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    color: #000000;
}

.category-container {
    text-align: center;
}

/* Product Cards */
.product-carousel {
    position: relative;
    padding: 0 60px;
}

.product-carousel .row {
    display: flex;
    flex-wrap: wrap;
}

.product-carousel .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.product-card {
    background-color: #f0f0f5;
    border-radius: 20px;
    padding: 40px 20px;
    margin: 15px;
    text-align: center;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.5;
}

.product-description {
    font-size: 1rem;
    color: #666;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 50px;
    }

    .nav-link {
        font-size: 1.1rem;
        margin: 10px 0;
    }

    .social-icons a {
        font-size: 1.5rem;
        margin: 10px 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .product-carousel {
        padding: 0 40px;
    }

    .product-card {
        min-height: 400px;
    }
}

.zip-required {
    display: none;
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 60px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .category-title {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .product-card {
        min-height: 350px;
        padding: 30px 15px;
    }

    .product-image {
        height: 200px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-carousel {
        padding: 0 30px;
    }
}

/* Contact Form */
.contact-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000000;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-intro h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.contact-intro p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.contact-form-container {
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 50px;
}

.contact-form .form-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    background-color: #ffffff;
    box-shadow: none;
}

.contact-form .form-control:focus {
    outline: 2px solid #dc3545;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-submit {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 60px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    margin: 30px auto 0;
}

.contact-form .btn-submit:hover {
    background-color: #333333;
    transform: scale(1.05);
}

.contact-form .btn-submit:disabled {
    background-color: #666666;
    cursor: not-allowed;
    transform: none;
}

.contact-info {
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #000000;
}

.contact-info-item {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #333333;
    display: flex;
    align-items: start;
}

.contact-info-item i {
    color: #dc3545;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.alert-message {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: none;
}

.alert-message.show {
    display: block;
}

/* Responsive for contact form */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form .btn-submit {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.6rem;
    }

    .contact-intro h3 {
        font-size: 1.1rem;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .contact-form .form-label {
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }
}

/* Footer */
.site-footer {
    background-color: #dc3545;
    color: #ffffff;
    padding: 30px 0 0px;
    margin-top: 60px;
}

.footer-message {
    text-align: center;
}

.footer-message h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    padding: 0 20px;
    letter-spacing: 1px;
}

.footer-copyright {
    text-align: center;
    font-size: 1rem;
    margin: 0;
    padding: 15px 20px;
}

@media (max-width: 768px) {
    .footer-message h2 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .footer-copyright {
        font-size: 0.9rem;
    }

    .site-footer {
        padding: 30px 0 0px;
    }
}

@media (max-width: 576px) {
    .footer-message h2 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }
}




/* Controls the overall carousel size */
.custom-carousel {
    width: 100dvw;              /* Dynamic viewport width - excludes scrollbar */
    max-width: 100dvw;
    margin: 40px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50dvw;        /* Use dvw units consistently */
    margin-right: -50dvw;
    padding: 0 60px; /* Space for external arrows */
}

/* Fallback for older browsers (pre-2022) */
@supports not (width: 100dvw) {
    .custom-carousel {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }
}

/* 10:3 aspect ratio for desktop */
.ratio-16x9 {
    position: relative;
    width: 100%;
    padding-top: 30%; /* 10:3 aspect ratio for desktop */
    /*border-radius: 20px;*/
    overflow: hidden;
}

.ratio-16x9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel inner with rounded corners */
.custom-carousel .carousel-inner {
    /*border-radius: 20px;*/
    overflow: hidden;
}

/* Position arrows outside the image */
.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.custom-carousel .carousel-control-prev {
    left: -60px;
}

.custom-carousel .carousel-control-next {
    right: -60px;
}

.custom-carousel .carousel-control-prev-icon,
.custom-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100%;
    filter: brightness(0);
}

.custom-carousel .carousel-control-prev-icon:hover,
.custom-carousel .carousel-control-next-icon:hover {
    filter: brightness(0) opacity(0.7);
}

/* Position indicators below the image */
.custom-carousel .carousel-indicators {
    position: static;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
    bottom: auto;
}

.custom-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
    opacity: 1;
}

.custom-carousel .carousel-indicators .active {
    background-color: #dc3545;
}

/* Desktop full-width: Remove padding and overlay controls */
@media (min-width: 769px) {
    .custom-carousel {
        padding: 0;
    }

    /* Position controls over the image */
    .custom-carousel .carousel-control-prev,
    .custom-carousel .carousel-control-next {
        width: 60px;
        height: 60px;
        padding: 12px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .custom-carousel .carousel-control-prev {
        left: 20px;
    }

    .custom-carousel .carousel-control-next {
        right: 20px;
    }

    .custom-carousel .carousel-control-prev-icon,
    .custom-carousel .carousel-control-next-icon {
        width: 36px;
        height: 36px;
    }

    /* Show controls on hover */
    .custom-carousel:hover .carousel-control-prev,
    .custom-carousel:hover .carousel-control-next {
        opacity: 1;
        visibility: visible;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-carousel {
        width: 90%;
        max-width: 500px;
        padding: 0 50px;
        left: auto;
        right: auto;
        margin-left: auto;
        margin-right: auto;
    }

    /* Adjust aspect ratio for mobile devices */
    .ratio-16x9 {
        padding-top: 56.25%; /* 16:9 aspect ratio for mobile */
    }

    .custom-carousel .carousel-control-prev {
        left: -50px;
    }

    .custom-carousel .carousel-control-next {
        right: -50px;
    }

    .custom-carousel .carousel-control-prev,
    .custom-carousel .carousel-control-next {
        width: 45px;
        height: 45px;
        padding: 8px;
    }

    .custom-carousel .carousel-control-prev-icon,
    .custom-carousel .carousel-control-next-icon {
        width: 29px;
        height: 29px;
    }
}

@media (max-width: 576px) {
    .custom-carousel {
        width: 100%;
        padding: 0 40px;
        left: auto;
        right: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .custom-carousel .carousel-control-prev {
        left: -10px;
    }

    .custom-carousel .carousel-control-next {
        right: -10px;
    }

    .custom-carousel .carousel-control-prev,
    .custom-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        padding: 6px;
    }

    .custom-carousel .carousel-control-prev-icon,
    .custom-carousel .carousel-control-next-icon {
        width: 28px;
        height: 28px;
    }
}

/* Section Separator */
.section-separator {
    height: 14px;
    background-color: #EBEFF2;
    margin: 80px 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #000000;
}

.testimonial-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

.testimonial-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.testimonial-card {
    flex: 1;
    max-width: 600px;
    min-height: 200px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    font-style: italic;
    margin: 0;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Testimonial Carousel Controls */
.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.testimonial-carousel .carousel-control-prev {
    left: 0;
}

.testimonial-carousel .carousel-control-next {
    right: 0;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
    width: 36px;
    height: 36px;
    background-size: 100%;
    filter: brightness(0);
}

.testimonial-carousel .carousel-control-prev-icon:hover,
.testimonial-carousel .carousel-control-next-icon:hover {
    filter: brightness(0) opacity(0.6);
}

/* Testimonial Indicators */
.testimonial-carousel .carousel-indicators {
    position: static;
    margin-top: 30px;
    margin-bottom: 0;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 6px;
    opacity: 1;
}

.testimonial-carousel .carousel-indicators .active {
    background-color: #dc3545;
}

/* Commitment Section */
.commitment-section {
    padding: 0 60px 0;
}

.commitment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #000000;
}

.commitment-content {
    display: flex;
    align-items: stretch;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

#home .commitment-content {
    align-items: flex-start;
}

.commitment-text {
    flex: 1;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
    background-color: #EBEFF2;
    border-radius: 15px;
    padding: 40px;
}

.commitment-image {
    flex: 1;
}

#home .commitment-image {
    flex: 1.5;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .testimonials-section h2,
    .commitment-section h2 {
        font-size: 2rem;
    }

    .testimonial-carousel {
        padding: 0 60px;
    }

    .commitment-content {
        gap: 30px;
    }

    #home .commitment-content {
        flex-direction:column;
        align-items: normal;
    }
}

@media (max-width: 768px) {
    .section-separator {
        margin: 40px 0;
    }

    .product-card {
        min-height: 380px;
    }

    .testimonials-section h2,
    .commitment-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonial-carousel {
        padding: 0 50px;
    }

    .testimonial-row {
        flex-direction: column;
        gap: 15px;
    }

    /* Hide second testimonial card on mobile */
    .testimonial-card:nth-child(2) {
        display: none;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }

    .testimonial-stars i {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }

    .testimonial-carousel .carousel-control-prev,
    .testimonial-carousel .carousel-control-next {
        width: 50px;
        height: 50px;
        padding: 10px;
    }

    .testimonial-carousel .carousel-control-prev-icon,
    .testimonial-carousel .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }

    .commitment-content {
        flex-direction: column;
        gap: 30px;
    }

    .commitment-text {
        text-align: left;
        padding: 30px;
    }

    .commitment-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 576px) {
    .testimonials-section h2,
    .commitment-section h2 {
        font-size: 1.5rem;
    }

    .commitment-section {
        padding: 0 20px 0;
    }

    .testimonial-carousel {
        padding: 0 40px;
    }

    /* Ensure second card is hidden on small mobile too */
    .testimonial-card:nth-child(2) {
        display: none;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 180px;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    .testimonial-stars i {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }

    .testimonial-carousel .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .commitment-text {
        font-size: 0.95rem;
        padding: 20px;
    }
}


.content-generic {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
    background-color: #EBEFF2;
    border-radius: 15px;
    padding: 40px;
}

.btn-cotizar {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 50px;
    background-color: #dc3545;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cotizar:hover {
    background-color: #c82333;
    color: #ffffff;
    transform: scale(1.05);
}

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

    .btn-cotizar {
        font-size: 1rem;
        padding: 12px 40px;
    }
}

/* WhatsApp Buttons Container */
.whatsapp-buttons-container {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.btn-whatsapp span {
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .whatsapp-buttons-container {
        margin: 30px auto;
        gap: 15px;
    }

    .btn-whatsapp {
        padding: 18px 25px;
        font-size: 1.1rem;
    }

    .btn-whatsapp i {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-buttons-container {
        gap: 12px;
    }

    .btn-whatsapp {
        padding: 15px 20px;
        font-size: 1rem;
        gap: 12px;
    }

    .btn-whatsapp i {
        font-size: 1.5rem;
    }
}

/* Checkmark List Style */
.checkmark-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.checkmark-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .checkmark-list li {
        padding-left: 35px;
    }

    .checkmark-list li::before {
        font-size: 1.3rem;
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 576px) {
    .checkmark-list li {
        padding-left: 30px;
        margin-bottom: 12px;
    }

    .checkmark-list li::before {
        font-size: 1.2rem;
        width: 22px;
        height: 22px;
    }
}

/* Branch Selector */
.branch-selector-container {
    text-align: center;
    margin: 40px auto 30px;
    max-width: 600px;
}

.branch-selector-text {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 500;
}

.branch-selector {
    max-width: 500px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 1.1rem;
    border: 2px solid #dc3545;
    border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.branch-selector:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    outline: none;
}

.branch-selector:hover {
    border-color: #c82333;
}

/* Branch Map Section */
.branches-map-container {
    margin: 20px auto 40px;
    max-width: 1200px;
}

#branchesMap {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
}

.branch-popup {
    padding: 10px;
    min-width: 200px;
}

.branch-popup h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
}

.branch-popup p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #333333;
}

.branch-popup .popup-icon {
    margin-right: 8px;
    color: #dc3545;
}

.branch-popup .directions-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.branch-popup .directions-link:hover {
    background-color: #c82333;
    color: white;
}

/* Responsive map and selector */
@media (max-width: 768px) {
    .branch-selector-text {
        font-size: 1.1rem;
    }

    .branch-selector {
        font-size: 1rem;
        padding: 10px 15px;
    }

    #branchesMap {
        height: 450px;
    }

    .branch-popup h3 {
        font-size: 1.1rem;
    }

    .branch-popup p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .branch-selector-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .branch-selector-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .branch-selector {
        font-size: 0.95rem;
        padding: 10px 15px;
        max-width: 100%;
    }

    #branchesMap {
        height: 400px;
        border-radius: 10px;
    }

    .branch-popup h3 {
        font-size: 1rem;
    }

    .branch-popup p {
        font-size: 0.85rem;
    }
}