:root {
    --blue: #5C5D60;
    --light-blue: #B9BABB;
    --bg-blue: #FFF8EF;
    --dark-blue: #3d3f43;
    --gray: #5C5D60;
    --bg-gray: #f9f9f8;
    --orange: #F9A01D;
    /* Distrito Dental brand palette */
    --dd-orange: #F9A01D;
    --dd-dark-gray: #5C5D60;
    --dd-light-gray: #B9BABB;
    --dd-peach: #FDD7A1;
    --dd-white: #FFFFFF;
    /* Visa / MC / Amex / MP → gris marca #5C5D60 (aplana color) */
    --dd-brand-mono-filter: brightness(0) saturate(100%) invert(39%) sepia(5%) saturate(260%) hue-rotate(178deg) brightness(94%) contrast(90%);
    /* Redes: tinte naranja marca --orange #F9A01D (mantiene zonas claras vs oscuras) */
    --dd-social-orange-filter: sepia(1) saturate(2.35) hue-rotate(347deg) brightness(0.96) contrast(1.08);
    --dd-social-orange-filter-hover: sepia(1) saturate(2.35) hue-rotate(347deg) brightness(1.08) contrast(1.1);
}

/* Tipografía Distrito Dental */
body, p, a, input, button, select, textarea, li, td, th {
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6, .section-title h2, .hero-title, .hero-title-mobile {
    font-family: 'League Spartan', sans-serif;
}

.bg-orange {
    background-color: var(--orange);
}

.text-small {
    font-size: 12px;
}

.text-blue {
    color: var(--blue) !important;
}

.text-700 {
    font-weight: 700;
}

.social-icon {
    margin-top: -5px;
    color: var(--light-blue);
    font-size: 18px;
    margin-left: 10px;
    padding: 4px 7px;
    width: 28px;
    height: 28px;
    aspect-ratio: 1;
    border-radius: 50%;
    /* background-color: white; */
    float: left;
    cursor: pointer;
}

.social-icon>a {
    color: var(--light-blue) !important;
}

.logo>a>img {
    margin-top: 5px;
    width: 140px;
}


/* Estilos para los botones del hero */
.btn-register,
.btn-know-more,
.add-cart-btn {
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 10px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-register,
.add-cart-btn {
    background-color: var(--blue);
    color: white;
    min-width: 200px;
    min-height: 70px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 40px;
}

.add-cart-btn {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
    min-height: 40px;
    min-width: 150px;
    width: max-content;
    margin: 0 auto;
}

.btn-register,
.add-cart-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(33, 48, 144, 0.3);
}

.btn-know-more {
    background: linear-gradient(135deg, #F68E2F 0%, #F07F00 100%);
    color: white;
    min-width: 200px;
    min-height: 70px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 40px;
    text-align: left;
    position: relative;
}

.btn-know-more i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #F68E2F;
    font-size: 30px;
    background-color: #FEECD9;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.btn-know-more:hover {
    background: linear-gradient(135deg, #F07F00 0%, #E66F00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(247, 147, 30, 0.3);
}


/* Responsive para móviles */
@media (max-width: 768px) {

    .btn-register,
    .btn-know-more {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }

    .btn-know-more {
        text-align: center;
    }

    .btn-know-more i {
        position: static;
        transform: none;
        margin-left: 8px;
    }
}

#offersHomeCarousel>.carousel-control-prev {
    left: -12%;
    opacity: 1 !important;
}

#offersHomeCarousel>.carousel-control-prev>span {
    background-image: url(../img/icons/arrow_left.png);
    background-size: contain;
    height: 40px;
}

#offersHomeCarousel>.carousel-control-next {
    right: -12%;
    opacity: 1 !important;
}

#offersHomeCarousel>.carousel-control-next>span {
    background-image: url(../img/icons/arrow_right.png);
    background-size: contain;
    height: 40px;
}

/* Estilos para enlaces en carrusel de banners */
#offersHomeCarousel .carousel-item a,
#offersHomeCarouselMobile .carousel-item a {
    display: block;
    text-decoration: none;
    width: 100%;
}

#offersHomeCarousel .carousel-item a img,
#offersHomeCarouselMobile .carousel-item a img {
    width: 100%;
    height: auto;
    display: block;
}

.home-category-container {
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    height: 150px;
}

.home-category-container>img {
    object-fit: contain;
    margin-bottom: 20px;
    margin-top: -60px;
    width: 80px;
    height: 80px;
}

.home-category-container>.category-name {
    text-align: center;
    margin: 0;
}

.home-category-container>.category-name h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
}

/* Carrusel de productos con ofertas */
.home-offer-products {
    padding: 60px 0;
}

.home-new-products {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.home-offer-products .section-title h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.offer-product-card {
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.product-image-container {
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    padding: 15px;
    margin-bottom: 15px;
    background: white;
}

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

.offer-product-card h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.offer-price {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-price .current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    display: block;
    /* margin-bottom: 5px; */
}

.offer-price .original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    display: block;
    /* margin-top: 4px; */
}


.offer-add-cart-btn {
    background-color: var(--blue);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.offer-add-cart-btn:hover {
    background-color: #3d3f43;
    color: white;
}

/* Controles del carrusel de ofertas */
#homeOfferProductsCarousel .carousel-control-prev,
#homeNewProductsCarousel .carousel-control-prev {
    left: -15%;
    opacity: 1 !important;
}

#homeOfferProductsCarousel .carousel-control-prev>span,
#homeNewProductsCarousel .carousel-control-prev>span {
    background-image: url(../img/icons/arrow_left.png);
    background-size: contain;
    height: 40px;
    width: 40px;
}

#homeOfferProductsCarousel .carousel-control-next,
#homeNewProductsCarousel .carousel-control-next {
    right: -15%;
    opacity: 1 !important;
}

#homeOfferProductsCarousel .carousel-control-next>span,
#homeNewProductsCarousel .carousel-control-next>span {
    background-image: url(../img/icons/arrow_right.png);
    background-size: contain;
    height: 40px;
    width: 40px;
}

/* Responsive para el carrusel - Los estilos móviles están en responsive.css */

/* Sección "Nuestra comunidad opina" */
.our-community-opinion {
    background-color: #FFF8EF;
    padding: 80px 0;
}

.our-community-opinion .section-title h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    height: 90%;
    position: relative;
    margin: 0 20px 30px 20px;
    display: flex;
    flex-direction: column;
}


.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 12px;
    color: #5C5D60;
    margin-top: auto;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 5px 10px;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-text-wrapper {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
    text-align: center;
}

.testimonial-text-quote {
    background-image: url(../img/icons/quotes.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    vertical-align: top;
}

.testimonial-text-content {
    text-align: center;
    flex: 0 1 auto;
}

.testimonial-text-quote2 {
    background-image: url(../img/icons/quotes2.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    vertical-align: bottom;
    align-self: flex-end;
}

.testimonial-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.testimonial-info h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin: 20px 0 10px 0;
}

.testimonial-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.testimonial-rating {
    margin-top: 15px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fabd04;
    font-size: 18px;
    margin: 0 2px;
}

.testimonial-google-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
}

/* Carrusel de testimonios */
.testimonials-carousel {
    position: relative;
}

.testimonials-carousel .carousel-control-prev {
    left: -15%;
    opacity: 1 !important;
}

.testimonials-carousel .carousel-control-prev>span {
    background-image: url(../img/icons/arrow_left.png);
    background-size: contain;
    height: 40px;
    width: 40px;
}

.testimonials-carousel .carousel-control-next {
    right: -15%;
    opacity: 1 !important;
}

.testimonials-carousel .carousel-control-next>span {
    background-image: url(../img/icons/arrow_right.png);
    background-size: contain;
    height: 40px;
    width: 40px;
}

/* Responsive para testimonios */
@media (max-width: 768px) {
    .our-community-opinion {
        padding: 60px 0;
    }

    .our-community-opinion .section-title h2 {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonials-carousel .carousel-control-prev {
        left: -5%;
    }

    .testimonials-carousel .carousel-control-next {
        right: -5%;
    }
}

.clients-section {
    background-color: #F9A01D;
    padding: 0;
}

/* Estilos para logos de marcas con efecto hover */
.clients-section .col-md-2 {
    text-align: center;
    padding: 20px 10px;
    position: relative;
    transition: transform 0.3s ease;
}

.clients-section .col-md-2 img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.clients-section .col-md-2:hover {
    /* transform: translateY(-5px); */
}

.brand-logo {
    width: 80%;
}


.clients-section .col-md-2:hover .brand-logo {
    display: none;
}

.clients-section .col-md-2:hover .brand-logo-color {
    display: block !important;
    /* transform: scale(1.1); */
}

/* Footer personalizado Distrito Dental */
.footer-area {
    background-color: #FFFFFF !important;
    color: #5C5D60;
}

.footer-custom {
    padding: 60px 0 40px 0;
}

.footer-logo-section {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

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

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.footer-logo-icon i {
    color: white;
    font-size: 20px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #5C5D60;
}

.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
    max-width: 100%;
}

.footer-nav-links a {
    color: #5C5D60;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: var(--light-blue);
}

.footer-social-icons {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-social-icon {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    text-decoration: none;
    transition: background-color 0.3s ease, filter 0.2s ease;
}

.footer-social-icon:hover {
    background-color: var(--blue);
    color: white;
}

.footer-social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: var(--dd-social-orange-filter);
    transition: filter 0.2s ease;
}

.footer-social-icon:hover img {
    filter: var(--dd-social-orange-filter-hover);
}

.footer-payment-methods {
    display: contents;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-payment-logo {
    height: 100px;
    object-fit: contain;
    filter: var(--dd-brand-mono-filter);
}

.footer-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #F9A01D;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #5C5D60;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-blue);
}

.footer-contact-info {
    color: #5C5D60;
    font-size: 12px;
}

.footer-contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-info strong {
    color: var(--light-blue);
}

/* Responsive para footer */
@media (max-width: 768px) {
    .footer-nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-payment-methods {
        justify-content: center;
    }
}

/* ===== ESTILOS PARA OVERLAY DEL CARRITO ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.cart-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.cart-panel {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background-color: var(--blue);
    color: white;
    border-radius: 12px 12px 0 0;
}

.cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-cart:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.cart-items {
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-cart i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
}

.empty-cart p {
    margin: 0;
    font-size: 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 15px;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.item-details {
    flex: 1;
    min-width: 0;
}

.item-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 10px 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--blue);
    transition: all 0.3s ease;
}

.quantity-controls button:hover {
    background-color: var(--blue);
    color: white;
    border-color: var(--blue);
}

.quantity-controls span {
    font-weight: 600;
    color: var(--blue);
    min-width: 20px;
    text-align: center;
}

.item-actions {
    display: flex;
    align-items: center;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.remove-btn:hover {
    background-color: #f8d7da;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.cart-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: white;
}

.btn-primary {
    background-color: var(--blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    color: white;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive para el overlay del carrito */
@media (max-width: 768px) {
    .cart-panel {
        width: 95%;
        max-height: 90vh;
        margin: 20px;
    }

    .cart-header {
        padding: 15px;
    }

    .cart-header h3 {
        font-size: 18px;
    }

    .cart-items {
        padding: 15px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .item-image {
        width: 80px;
        height: 80px;
        align-self: center;
    }

    .item-details {
        width: 100%;
    }

    .item-details h4 {
        font-size: 13px;
    }

    .quantity-controls {
        justify-content: center;
        width: 100%;
    }

    .cart-footer {
        padding: 15px;
    }

    .cart-actions {
        flex-direction: column;
    }

    .cart-actions .btn {
        width: 100%;
    }
}

/* ===== ESTILOS PARA PÁGINA DE LOGIN ===== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F9A01D 0%, #5C5D60 100%);
    padding: 0;
    margin: 0;
}

.login-left-section {
    background: #F9A01D;
    min-height: 100vh;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.login-left-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.login-logo-section {
    text-align: center;
    z-index: 2;
    position: relative;
    margin-bottom: 40px;
}

.login-logo {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-tagline {
    color: white;
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 0;
}

.login-luggage-image {
    z-index: 2;
    position: relative;
}

.login-luggage-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.login-right-section {
    background: white;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.login-welcome-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 15px;
    line-height: 1.2;
}

.login-welcome-subtitle {
    font-size: 16px;
    color: var(--blue);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.4;
}

.login-form {
    width: 100%;
}

.login-form-group {
    margin-bottom: 25px;
}

.login-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
}

.login-form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: var(--blue);
}

.login-form-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 160, 29, 0.15);
}

.login-form-input::placeholder {
    color: #999;
    font-size: 14px;
}

.login-forgot-password {
    text-align: right;
    margin-bottom: 30px;
}

.login-forgot-password a {
    color: var(--blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-forgot-password a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.login-submit-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(92, 93, 96, 0.3);
}

.login-register-link {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-register-link span {
    color: #666;
    font-size: 14px;
}

.login-register-link a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.login-register-link a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Responsive para login */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-left-section {
        min-height: 40vh;
        padding: 40px 20px;
    }

    .login-logo {
        font-size: 36px;
    }

    .login-tagline {
        font-size: 14px;
    }

    .login-luggage-image img {
        max-width: 150px;
    }

    .login-right-section {
        min-height: 60vh;
        padding: 40px 20px;
    }

    .login-welcome-title {
        font-size: 24px;
    }

    .login-welcome-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .login-form-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .login-submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login-left-section {
        min-height: 35vh;
        padding: 30px 15px;
    }

    .login-logo {
        font-size: 28px;
    }

    .login-luggage-image img {
        max-width: 120px;
    }

    .login-right-section {
        padding: 30px 15px;
    }

    .login-welcome-title {
        font-size: 20px;
    }

    .login-form-container {
        max-width: 100%;
    }
}

/* ===== ESTILOS PARA MODAL DE LOGIN ===== */
.login-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.login-modal-left {
    background: var(--blue);
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.login-modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.login-modal-branding {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
}

.login-modal-logo {
    margin-bottom: 30px;
}

.login-modal-logo img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.login-modal-tagline h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-modal-tagline p {
    color: white;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
}

.login-modal-image {
    margin-top: 20px;
}

.login-modal-image img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.login-modal-right {
    background: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.login-modal-form-container {
    width: 100%;
    padding: 40px;
    position: relative;
}

.login-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.login-modal-close:hover {
    color: var(--blue);
}

.login-modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.login-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.login-modal-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.login-modal-form {
    width: 100%;
}

.login-modal-form-group {
    margin-bottom: 25px;
}

.login-modal-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
}

.login-modal-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: var(--blue);
}

.login-modal-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(7, 41, 147, 0.1);
}

.login-modal-input::placeholder {
    color: #999;
    font-size: 14px;
}

.login-modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.login-modal-options .form-check {
    margin: 0;
}

.login-modal-options .form-check-input {
    border-color: var(--blue);
}

.login-modal-options .form-check-input:checked {
    background-color: var(--blue);
    border-color: var(--blue);
}

.login-modal-options .form-check-label {
    font-size: 14px;
    color: var(--blue);
    font-weight: 500;
}

.login-modal-forgot {
    color: var(--blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-modal-forgot:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.login-modal-submit-btn {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.login-modal-submit-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(7, 41, 147, 0.3);
}

.login-modal-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.login-modal-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-modal-register-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.login-modal-register-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.login-modal-register-link:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Responsive para modal de login */
@media (max-width: 768px) {
    /* Permitir scroll en móviles */
    #registerModal .modal-dialog {
        max-height: 90vh;
        margin: 1rem auto;
        display: flex;
        align-items: flex-start;
    }

    #registerModal .modal-dialog-centered {
        align-items: flex-start;
        min-height: auto;
    }

    #registerModal .modal-content {
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }

    #registerModal .login-modal-content {
        overflow: visible;
        max-height: 90vh;
    }

    #registerModal .login-modal-body-scrollable {
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        max-height: 90vh;
        flex: 1 1 auto;
    }

    .login-modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .login-modal-left {
        min-height: 300px;
        padding: 30px 20px;
    }

    .login-modal-logo img {
        max-width: 100px;
    }

    .login-modal-tagline h3 {
        font-size: 20px;
    }

    .login-modal-tagline p {
        font-size: 12px;
    }

    .login-modal-image img {
        max-width: 120px;
    }

    .login-modal-right {
        min-height: auto;
    }

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

    .login-modal-title {
        font-size: 24px;
    }

    .login-modal-subtitle {
        font-size: 14px;
    }

    .login-modal-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .login-modal-submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .login-modal-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Permitir scroll en móviles pequeños */
    #registerModal .modal-dialog {
        max-height: 95vh;
        margin: 0.5rem auto;
    }

    #registerModal .modal-content {
        max-height: 95vh;
    }

    #registerModal .login-modal-content {
        max-height: 95vh;
    }

    #registerModal .login-modal-body-scrollable {
        max-height: 95vh;
    }

    .login-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .login-modal-left {
        min-height: 250px;
        padding: 20px 15px;
    }

    .login-modal-logo img {
        max-width: 80px;
    }

    .login-modal-tagline h3 {
        font-size: 18px;
    }

    .login-modal-image img {
        max-width: 100px;
    }

    .login-modal-form-container {
        padding: 20px 15px;
    }

    .login-modal-title {
        font-size: 20px;
    }
}

/* ===== ESTILOS PARA PANTALLA DE PERFIL ===== */
.profile-container {
    background-color: var(--bg-gray);
    min-height: 100vh;
    padding: 40px 0;
}

.profile-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: sticky;
    top: 20px;
}

.profile-user-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-blue);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-user-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 5px;
}

.profile-user-email {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.profile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-nav-item {
    margin-bottom: 5px;
}

.profile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.profile-nav-link i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
}

.profile-nav-link:hover {
    background-color: var(--bg-blue);
    color: var(--blue);
}

.profile-nav-item.active .profile-nav-link {
    background-color: var(--blue);
    color: white;
}

.profile-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-section {
    display: none;
    padding: 30px;
}

.profile-section.active {
    display: block;
}

.profile-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-blue);
}

.profile-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    margin: 0;
}

.profile-edit-btn,
.profile-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-edit-btn {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
}

.profile-edit-btn:hover {
    background: var(--blue);
    color: white;
}

.profile-add-btn {
    background: var(--blue);
    border: 2px solid var(--blue);
    color: white;
}

.profile-add-btn:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
}

.profile-form {
    max-width: 100%;
}

.profile-form-group {
    margin-bottom: 25px;
}

.profile-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
}

.profile-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: var(--blue);
}

.profile-form-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(7, 41, 147, 0.1);
    background: white;
}

.profile-form-input.editing {
    background: white;
    border-color: var(--light-blue);
}

.profile-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.profile-cancel-btn,
.profile-save-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-cancel-btn {
    background: #6c757d;
    border: 2px solid #6c757d;
    color: white;
}

.profile-cancel-btn:hover {
    background: #5a6268;
    border-color: #5a6268;
}

.profile-save-btn {
    background: var(--blue);
    border: 2px solid var(--blue);
    color: white;
}

.profile-save-btn:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Estilos para direcciones */
.addresses-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.address-card:hover {
    border-color: var(--light-blue);
    box-shadow: 0 4px 12px rgba(7, 41, 147, 0.1);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin: 0;
}

.address-actions {
    display: flex;
    gap: 8px;
}

.address-details {
    margin-bottom: 15px;
    line-height: 1.6;
}

.address-details p {
    margin: 0 0 5px 0;
    color: #666;
}

.address-details p:first-child {
    font-weight: 600;
    color: var(--blue);
}

.address-default {
    text-align: right;
}

/* Estilos para pedidos */
.profile-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-filter select {
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: var(--blue);
    font-weight: 500;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background: white;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: var(--light-blue);
    box-shadow: 0 4px 12px rgba(7, 41, 147, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.order-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 5px 0;
}

.order-date {
    font-size: 14px;
    color: #666;
}

.order-status .badge {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
}

.badge-success {
    background: #28a745;
    color: white;
}

.badge-warning {
    background: #ffc107;
    color: #212529;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.order-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.order-item-details h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    margin: 0 0 5px 0;
}

.order-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin: 0;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.order-total {
    font-size: 18px;
    color: var(--blue);
}

.order-actions {
    display: flex;
    gap: 10px;
}

.order-actions .btn {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
}

/* Responsive para perfil */
@media (max-width: 768px) {
    .profile-container {
        padding: 20px 0;
    }

    .profile-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .profile-section {
        padding: 20px;
    }

    .profile-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .profile-section-title {
        font-size: 20px;
    }

    .profile-form-actions {
        flex-direction: column;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .order-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .order-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .order-item-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .profile-sidebar {
        padding: 20px;
    }

    .profile-section {
        padding: 15px;
    }

    .address-card,
    .order-card {
        padding: 15px;
    }

    .profile-nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .profile-nav-link i {
        font-size: 14px;
        width: 18px;
    }
}

/* Estilos para enlaces de redes sociales dinámicos */
.social-link-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.social-link-item .form-group {
    margin-bottom: 0;
}

.social-link-item .form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.social-link-item .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.social-link-item .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.remove-social-link {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.remove-social-link:hover {
    background-color: #dc3545;
    border-color: #dc3545;
}

#add-social-link {
    margin-top: 10px;
    border-radius: 6px;
    font-weight: 500;
}

#add-social-link:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .social-link-item .row {
        margin: 0;
    }

    .social-link-item .col-md-4,
    .social-link-item .col-md-6,
    .social-link-item .col-md-2 {
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .social-link-item .col-md-2 {
        margin-bottom: 0;
    }
}

/* ===== ESTILOS PARA VIDEOS EMBEBIDOS ===== */
.videos-content {
    padding: 20px 0;
}

.videos-content h6 {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 25px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.video-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-embed-wrapper iframe.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Facebook wrapper */
.facebook-wrapper {
    padding-bottom: 56.25%;
}

.facebook-wrapper .facebook-embed {
    height: 315px;
}

/* Instagram necesita altura fija */
.instagram-wrapper {
    padding-bottom: 0;
    height: 500px;
}

.instagram-wrapper .instagram-embed {
    height: 500px;
}

/* TikTok necesita altura fija */
.tiktok-wrapper {
    padding-bottom: 0;
    height: 600px;
}

.tiktok-wrapper .tiktok-embed {
    height: 600px;
}

/* Twitter wrapper */
.twitter-wrapper {
    padding-bottom: 0;
    min-height: 400px;
}

/* LinkedIn wrapper */
.linkedin-wrapper {
    padding-bottom: 0;
    height: 400px;
}

.linkedin-wrapper .linkedin-embed {
    height: 400px;
}

.video-info {
    padding: 15px 20px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e9ecef;
}

.video-network {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--blue);
}

.video-network i {
    font-size: 20px;
    color: var(--light-blue);
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.video-link:hover {
    background: var(--dark-blue);
    color: #fff;
    text-decoration: none;
}

.video-link i {
    font-size: 16px;
}

/* Placeholder para videos que no se pueden embebir */
.video-thumbnail-placeholder {
    width: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumbnail-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.placeholder-content i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.placeholder-content span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.video-external-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-external-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive para videos */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-embed-wrapper {
        padding-bottom: 56.25%;
    }

    .instagram-wrapper {
        height: 400px;
    }

    .instagram-wrapper .instagram-embed {
        height: 400px;
    }

    .tiktok-wrapper {
        height: 500px;
    }

    .tiktok-wrapper .tiktok-embed {
        height: 500px;
    }

    .video-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .video-link {
        width: 100%;
        justify-content: center;
    }
}

.modal {
    z-index: 10000 !important;
}

.modal-backdrop.fade.show {
    z-index: 9999 !important;
}

/* ===================================================
   DISTRITO DENTAL — NEW DESIGN SYSTEM (2025)
   =================================================== */

/* ---- Image Placeholder ---- */
.dd-placeholder {
    background: linear-gradient(135deg, #FDD7A1 0%, #F9A01D 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dd-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(249,160,29,0.25);
}
.dd-placeholder__inner {
    text-align: center;
    color: rgba(255,255,255,0.95);
    z-index: 1;
    padding: 20px;
}
.dd-placeholder__icon {
    font-size: 4rem;
    margin-bottom: 12px;
    opacity: 0.85;
    line-height: 1;
}
.dd-placeholder__label {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    display: block;
}
.dd-placeholder__hint {
    font-size: 0.78rem;
    opacity: 0.75;
    display: block;
}
.dd-placeholder__play {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
    pointer-events: none;
}
.dd-placeholder:hover .dd-placeholder__play {
    color: white;
}
.dd-placeholder .dd-hero__img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 0;
}
.dd-placeholder > .dd-placeholder__play {
    z-index: 2;
}

/* ---- Labels / eyebrows ---- */
.dd-label {
    display: inline-block;
    background-color: #FDD7A1;
    color: #5C5D60;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ---- Buttons (new system) ---- */
.dd-btn,
button.dd-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 16px 36px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.2;
    white-space: nowrap;
    vertical-align: middle;
    box-sizing: border-box;
}
.dd-btn--primary,
button.dd-btn--primary {
    background-color: #F9A01D !important;
    color: #ffffff !important;
    border-color: #F9A01D !important;
    box-shadow: 0 4px 14px rgba(249,160,29,0.35);
}
.dd-btn--primary:hover,
button.dd-btn--primary:hover {
    background-color: #e08c10 !important;
    border-color: #e08c10 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(249,160,29,0.45);
    text-decoration: none;
}
.dd-btn--outline,
button.dd-btn--outline {
    background-color: transparent !important;
    color: #5C5D60 !important;
    border-color: #5C5D60 !important;
}
.dd-btn--outline:hover,
button.dd-btn--outline:hover {
    background-color: #5C5D60 !important;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
}
.dd-btn__icon {
    width: 32px;
    height: 32px;
    background-color: rgba(92,93,96,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ---- Section header ---- */
.dd-section-header {
    margin-bottom: 40px;
}
.dd-section-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #5C5D60;
    margin: 0 0 8px;
    line-height: 1.15;
}
.dd-section-title .dd-highlight {
    color: #F9A01D;
}

/* ---- Hero ---- */
.dd-hero {
    padding: 80px 0 48px;
    background-color: #FFFFFF;
}
.dd-hero__content {
    padding-right: 24px;
}
.dd-hero__title {
    font-family: 'League Spartan', sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    color: #5C5D60;
    line-height: 1.05;
    margin-bottom: 20px;
    margin-top: 12px;
}
.dd-hero__title .dd-highlight {
    color: #F9A01D;
}
.dd-hero__subtitle {
    font-size: 1rem;
    color: #B9BABB;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}
.dd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.dd-hero__visual {
    position: relative;
}

/* ---- Banner carousel wrapper ---- */
.dd-banners {
    padding: 0 0 56px;
    background-color: #FFFFFF;
}
.dd-banners .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ---- Trust strip ---- */
.dd-trust {
    background-color: #5C5D60;
    padding: 28px 0;
}
.dd-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.dd-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
}
.dd-trust__item + .dd-trust__item {
    border-left: 1px solid rgba(255,255,255,0.15);
}
.dd-trust__icon {
    font-size: 2rem;
    color: #F9A01D;
    flex-shrink: 0;
    line-height: 1;
}
.dd-trust__text strong {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}
.dd-trust__text span {
    font-size: 0.78rem;
    color: #B9BABB;
}

/* ---- Categories ---- */
.dd-categories {
    padding: 72px 0;
    background-color: #FFFFFF;
}
.dd-categories__grid {
    row-gap: 48px;
}
.dd-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s;
}
.dd-category-card:hover {
    transform: translateY(-6px);
}
.dd-category-card__img {
    width: 100px;
    height: 100px;
    background-color: #FFF8EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background-color 0.25s, box-shadow 0.25s;
}
.dd-category-card:hover .dd-category-card__img {
    background-color: #FDD7A1;
    box-shadow: 0 6px 18px rgba(249,160,29,0.25);
}
.dd-category-card__img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.dd-category-card span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5C5D60;
    line-height: 1.3;
}

/* ---- Why DD section ---- */
.dd-why {
    padding: 80px 0;
    background-color: #FFF8EF;
}
.dd-why__content {
    padding-left: 32px;
}
.dd-why__title {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #5C5D60;
    margin: 12px 0 20px;
    line-height: 1.15;
}
.dd-why__text {
    font-size: 0.95rem;
    color: #B9BABB;
    line-height: 1.75;
    margin-bottom: 36px;
}
.dd-why__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(92,93,96,0.12);
}

/* ---- Stats ---- */
.dd-stat {
    text-align: center;
}
.dd-stat__number {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #F9A01D;
    line-height: 1;
    margin-bottom: 6px;
}
.dd-stat__label {
    font-size: 0.78rem;
    color: #B9BABB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* ---- Checklist ---- */
.dd-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 32px;
}
.dd-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: #FFFFFF;
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: border-color 0.2s;
}
.dd-checklist__item:hover {
    border-left-color: #F9A01D;
}
.dd-checklist__item > i {
    font-size: 1.3rem;
    color: #F9A01D;
    flex-shrink: 0;
    margin-top: 2px;
}
.dd-checklist__item > span {
    font-size: 0.95rem;
    color: #5C5D60;
    font-weight: 500;
}
.dd-checklist__item strong {
    display: block;
    font-size: 0.95rem;
    color: #5C5D60;
    font-weight: 600;
    margin-bottom: 2px;
}
.dd-checklist__item p {
    font-size: 0.82rem;
    color: #B9BABB;
    margin: 0;
    line-height: 1.5;
}

/* ---- Page hero (interior pages) ---- */
.dd-page-hero {
    background: linear-gradient(135deg, #5C5D60 0%, #3d3f43 100%);
    padding: 80px 0 64px;
    text-align: center;
}
.dd-page-hero__badge {
    display: inline-block;
    background-color: #F9A01D;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.dd-page-hero__title {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    max-width: 720px;
    margin: 0 auto 20px;
    line-height: 1.1;
}
.dd-page-hero__subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ---- About section ---- */
.dd-about {
    padding: 80px 0;
    background-color: #FFFFFF;
}
.dd-about h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #5C5D60;
    margin: 12px 0 16px;
    line-height: 1.15;
}
.dd-about > .container > .row p {
    font-size: 0.95rem;
    color: #B9BABB;
    line-height: 1.75;
}
.dd-about__stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}
.dd-about-visual {
    padding: 0 0 80px;
    background-color: #FFFFFF;
}

/* ---- Feature cards ---- */
.dd-features {
    padding: 80px 0;
    background-color: #f9f9f8;
}
.dd-features .dd-section-header p {
    font-size: 0.95rem;
    color: #B9BABB;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.7;
}
.dd-feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    text-align: center;
}
.dd-feature-card:hover {
    border-top-color: #F9A01D;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249,160,29,0.12);
}
.dd-feature-card__icon {
    width: 72px;
    height: 72px;
    background-color: #FDD7A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #5C5D60;
    margin: 0 auto 20px;
    transition: background-color 0.3s, color 0.3s;
}
.dd-feature-card:hover .dd-feature-card__icon {
    background-color: #F9A01D;
    color: #FFFFFF;
}
.dd-feature-card h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #5C5D60;
    margin-bottom: 10px;
}
.dd-feature-card p {
    font-size: 0.88rem;
    color: #B9BABB;
    margin: 0;
    line-height: 1.65;
}

/* ---- Mission / Vision ---- */
.dd-mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #5C5D60 0%, #3d3f43 100%);
}
.dd-mv-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 48px 36px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.dd-mv-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.dd-mv-card__icon {
    width: 88px;
    height: 88px;
    background: rgba(249,160,29,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #F9A01D;
    margin: 0 auto 24px;
    transition: background 0.3s;
}
.dd-mv-card:hover .dd-mv-card__icon {
    background: rgba(249,160,29,0.35);
}
.dd-mv-card h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.dd-mv-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.78;
    margin: 0;
}

/* ---- Warranty cards ---- */
.dd-warranty {
    padding: 80px 0;
    background-color: #FFFFFF;
}
.dd-warranty .dd-section-header p {
    font-size: 0.95rem;
    color: #B9BABB;
    max-width: 520px;
    margin: 8px auto 0;
}
.dd-warranty-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}
.dd-warranty-card:hover {
    border-color: #F9A01D;
    box-shadow: 0 8px 28px rgba(249,160,29,0.1);
}
.dd-warranty-card__icon {
    width: 60px;
    height: 60px;
    background-color: #FDD7A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #5C5D60;
    flex-shrink: 0;
    transition: background-color 0.3s, color 0.3s;
}
.dd-warranty-card:hover .dd-warranty-card__icon {
    background-color: #F9A01D;
    color: #FFFFFF;
}
.dd-warranty-card h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #5C5D60;
    margin-bottom: 8px;
}
.dd-warranty-card p {
    font-size: 0.88rem;
    color: #B9BABB;
    line-height: 1.65;
    margin: 0;
}

/* ---- Support hero ---- */
.dd-support-hero {
    padding: 80px 0;
    background-color: #FFFFFF;
}
.dd-support-hero h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #5C5D60;
    line-height: 1.1;
    margin: 12px 0 20px;
}
.dd-support-hero p {
    font-size: 0.95rem;
    color: #B9BABB;
    line-height: 1.75;
    margin-bottom: 12px;
}
.dd-support-hero p strong {
    color: #5C5D60;
}

/* ---- Contact card ---- */
.dd-support-contact {
    padding: 80px 0;
    background-color: #f9f9f8;
}
.dd-contact-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    text-align: center;
}
.dd-contact-card .dd-label {
    margin-bottom: 12px;
}
.dd-contact-card h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #5C5D60;
    margin-bottom: 0;
}
.dd-contact-card__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 8px;
}
.dd-contact-card__phone i {
    font-size: 1.8rem;
    color: #5C5D60;
}
.dd-contact-card__phone a {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #F9A01D;
    text-decoration: none;
    transition: color 0.2s;
}
.dd-contact-card__phone a:hover {
    color: #5C5D60;
    text-decoration: none;
}
.dd-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.dd-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.38);
    color: #FFFFFF;
    text-decoration: none;
}
.dd-btn-whatsapp i {
    font-size: 1.35rem;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .dd-hero__title { font-size: 2.8rem; }
    .dd-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .dd-trust__item + .dd-trust__item { border-left: none; }
    .dd-trust__item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.15); }
    .dd-why__content { padding-left: 0; margin-top: 32px; }
}
@media (max-width: 767px) {
    .dd-hero { padding: 32px 0 24px; }
    .dd-hero__title { font-size: 2.2rem; }
    .dd-hero__subtitle { max-width: 100%; }
    .dd-banners { padding: 0 0 32px; }
    .dd-page-hero { padding: 56px 0 44px; }
    .dd-page-hero__title { font-size: 1.9rem; }
    .dd-support-hero h1 { font-size: 2rem; }
    .dd-why__title { font-size: 1.8rem; }
    .dd-why__stats { gap: 20px; }
    .dd-about__stats { gap: 20px; }
    .dd-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .dd-trust__item + .dd-trust__item { border-left: none; }
    .dd-trust__item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.15); }
    .dd-mv-card { padding: 32px 20px; margin-bottom: 20px; }
    .dd-contact-card { padding: 28px 20px; }
    .dd-contact-card__phone a { font-size: 1.5rem; }
    .dd-about { padding: 48px 0; }
    .dd-features { padding: 48px 0; }
    .dd-mission-vision { padding: 48px 0; }
    .dd-warranty { padding: 48px 0; }
    .dd-support-hero { padding: 40px 0; }
    .dd-support-contact { padding: 48px 0; }
    .dd-why { padding: 48px 0; }
    .dd-categories { padding: 48px 0; }
    .dd-section-title { font-size: 1.6rem; }
}

/* ============================================================
   DD — TESTIMONIALS REDESIGN
   ============================================================ */
.our-community-opinion {
    background-color: #FFFFFF;
    padding: 80px 0;
}
.our-community-opinion .section-title {
    margin-bottom: 48px;
}
.our-community-opinion .section-title h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #5C5D60;
    text-transform: none;
    margin-bottom: 0;
}
.our-community-opinion .section-title h2 span {
    color: #F9A01D;
}
.testimonial-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 28px 28px;
    margin: 0 12px 8px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(92,93,96,0.10);
    border: 1.5px solid #F0F0F0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(249,160,29,0.16);
    border-color: #FDD7A1;
}
/* Orange top accent */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #F9A01D, #FDD7A1);
    border-radius: 0 0 4px 4px;
}
/* Big quote mark via CSS — no more background-image dependency */
.testimonial-text {
    font-size: 0.88rem;
    color: #5C5D60;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    padding: 0 0 20px 0;
    margin: 0;
    display: block;
    text-align: left;
}
.testimonial-text-wrapper {
    display: block;
    position: relative;
    padding-left: 28px;
}
.testimonial-text-wrapper::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 3.5rem;
    color: #F9A01D;
    line-height: 1;
    position: absolute;
    left: -4px;
    top: -12px;
    opacity: 0.7;
}
.testimonial-text-quote,
.testimonial-text-quote2 {
    display: none; /* replaced by CSS pseudo-elements */
}
.testimonial-text-content {
    text-align: left;
    flex: none;
    display: inline;
}
.testimonial-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F5F5F5;
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #F9A01D;
    flex-shrink: 0;
}
.testimonial-info {
    flex: 1;
    min-width: 0;
}
.testimonial-info h6 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #5C5D60;
    margin: 0 0 2px;
}
.testimonial-info p {
    font-size: 0.78rem;
    color: #B9BABB;
    margin: 0;
}
.testimonial-rating {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1px;
}
.testimonial-rating i {
    color: #F9A01D;
    font-size: 14px;
    margin: 0;
}
.testimonial-google-logo {
    position: static;
    width: 16px;
    height: 16px;
    opacity: 0.6;
    margin-left: auto;
    flex-shrink: 0;
}
/* Carousel arrows — use CSS instead of background images */
.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    background: #F9A01D;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    bottom: auto;
}
.testimonials-carousel .carousel-control-prev { left: -22px; }
.testimonials-carousel .carousel-control-next { right: -22px; }
.testimonials-carousel .carousel-control-prev > span,
.testimonials-carousel .carousel-control-next > span {
    background-image: none;
    width: 18px;
    height: 18px;
    border: 2.5px solid white;
    border-right: none;
    border-bottom: none;
    border-radius: 1px;
    display: inline-block;
}
.testimonials-carousel .carousel-control-prev > span {
    transform: rotate(-45deg) translate(2px, 2px);
}
.testimonials-carousel .carousel-control-next > span {
    transform: rotate(135deg) translate(2px, 2px);
}
@media (max-width: 768px) {
    .testimonial-card { margin: 0 4px 8px; padding: 24px 20px 20px; }
    .testimonials-carousel .carousel-control-prev { left: -4px; }
    .testimonials-carousel .carousel-control-next { right: -4px; }
}

/* ============================================================
   DD — BRANDS MARQUEE
   ============================================================ */
.clients-section {
    background-color: #5C5D60;
    padding: 0;
    overflow: hidden;
}
.dd-marquee {
    overflow: hidden;
    position: relative;
    padding: 28px 0;
}
.dd-marquee::before,
.dd-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.dd-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #5C5D60, transparent);
}
.dd-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #5C5D60, transparent);
}
.dd-marquee__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: dd-marquee-scroll 24s linear infinite;
}
.dd-marquee__track:hover {
    animation-play-state: paused;
}
@keyframes dd-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.dd-marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: relative;
}
.dd-marquee__item .brand-logo {
    width: auto;
    height: 42px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.dd-marquee__item .brand-logo-color {
    display: none !important;
}
.dd-marquee__item:hover .brand-logo {
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg);
    opacity: 1;
}

/* ============================================================
   DD — LOGIN / REGISTER MODAL REDESIGN
   ============================================================ */
.login-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.login-modal-left {
    background: linear-gradient(145deg, #5C5D60 0%, #3d3e40 100%);
    padding: 48px 32px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.login-modal-left::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(249,160,29,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.login-modal-left::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(249,160,29,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.login-modal-branding {
    text-align: center;
    z-index: 2;
    width: 100%;
}
.login-modal-logo img {
    max-width: 130px;
    height: auto;
    filter: brightness(0) invert(1);
}
.login-modal-tagline h3 {
    color: #FFFFFF;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 6px;
}
.login-modal-tagline p {
    color: #FDD7A1;
    font-size: 0.88rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.login-modal-image img {
    max-width: 170px;
    height: auto;
    opacity: 0.88;
    margin-top: 24px;
}
/* Orange accent line on the right panel top */
.login-modal-right {
    background: #FFFFFF;
    padding: 0;
    min-height: 480px;
    display: flex;
    align-items: stretch;
    position: relative;
}
.login-modal-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F9A01D, #FDD7A1);
    z-index: 1;
}
.login-modal-form-container {
    width: 100%;
    padding: 44px 40px 36px;
}
.login-modal-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #5C5D60;
    margin: 0 0 4px;
}
.login-modal-subtitle {
    font-size: 0.88rem;
    color: #B9BABB;
    margin: 0;
}
.login-modal-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5C5D60;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.login-modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E8E8E8;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #5C5D60;
    background: #FAFAFA;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.login-modal-input:focus {
    outline: none;
    border-color: #F9A01D;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(249,160,29,0.12);
}
.login-modal-input::placeholder {
    color: #C0C0C0;
    font-size: 0.88rem;
}
.login-modal-forgot {
    color: #F9A01D;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}
.login-modal-forgot:hover { color: #e08c19; text-decoration: underline; }
.login-modal-options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.login-modal-options .form-check { margin: 0; }
.login-modal-options .form-check-input:checked {
    background-color: #F9A01D;
    border-color: #F9A01D;
}
.login-modal-options .form-check-label {
    font-size: 0.82rem;
    color: #5C5D60;
}
.login-modal-submit-btn {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: #F9A01D !important;
    color: #FFFFFF !important;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(249,160,29,0.32);
    display: block;
}
.login-modal-submit-btn:hover {
    background: #e08c19 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,160,29,0.38);
}
.login-modal-submit-btn:disabled {
    background: #E0E0E0 !important;
    color: #B9BABB !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.login-modal-register-link {
    color: #F9A01D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.login-modal-register-link:hover { color: #e08c19; text-decoration: underline; }
.login-modal-footer { margin-top: 24px; text-align: center; }
.login-modal-register-text { color: #B9BABB; font-size: 0.88rem; margin: 0; }
.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.login-modal-close:hover { opacity: 1; }
.document-upload-area {
    background: #FFF8EF;
    border: 1.5px dashed #FDD7A1;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 6px 0 8px 20px;
}
.document-upload-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #F9A01D;
    margin-bottom: 6px;
}
@media (max-width: 767px) {
    .login-modal-left { min-height: 200px; padding: 28px 24px; }
    .login-modal-form-container { padding: 32px 24px 28px; }
    .login-modal-title { font-size: 1.4rem; }
    .login-modal-tagline h3 { font-size: 1.3rem; }
    .login-modal-image img { max-width: 100px; margin-top: 16px; }
}

/* ============================================================
   DD — CART PANEL REDESIGN
   ============================================================ */
.cart-overlay {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(0,0,0,0.45);
}
.cart-panel {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
    max-height: 85vh;
}
.cart-header {
    background: linear-gradient(135deg, #5C5D60 0%, #3d3e40 100%);
    border-radius: 20px 20px 0 0;
    padding: 20px 24px;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}
.cart-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 24px; right: 24px;
    height: 2px;
    background: linear-gradient(90deg, #F9A01D, transparent);
}
.cart-header h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0;
}
.close-cart {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}
.close-cart:hover { background: rgba(249,160,29,0.35); border-color: #F9A01D; }
.cart-items { padding: 16px 20px; }
.cart-item {
    padding: 14px 0;
    border-bottom: 1px solid #F5F5F5;
    gap: 14px;
    align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.item-image {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}
.item-image img {
    border-radius: 10px;
    border: 1.5px solid #F0F0F0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    color: #5C5D60;
    margin: 0 0 4px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.item-price {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #F9A01D;
    margin: 0 0 8px;
}
.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #F5F5F5;
    border-radius: 8px;
    overflow: hidden;
}
.quantity-controls button {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #5C5D60;
    transition: background 0.2s, color 0.2s;
}
.quantity-controls button:hover {
    background: #F9A01D;
    color: #FFFFFF;
}
.quantity-controls span {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #5C5D60;
    min-width: 28px;
    text-align: center;
}
.remove-btn {
    background: none;
    border: none;
    color: #D0D0D0;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    font-size: 1rem;
}
.remove-btn:hover { color: #dc3545; background: #FEE; }
.empty-cart i { color: #FDD7A1; }
.cart-footer {
    padding: 18px 20px;
    border-top: 1.5px solid #F0F0F0;
    background: #FAFAFA;
    border-radius: 0 0 20px 20px;
}
.cart-total {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #5C5D60;
    margin-bottom: 16px;
}
.cart-total span:last-child { color: #F9A01D; }
.cart-actions { gap: 8px; }
.cart-actions .btn-primary {
    background: #F9A01D !important;
    color: #FFFFFF !important;
    border-color: #F9A01D !important;
    border-radius: 50px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(249,160,29,0.3);
    transition: all 0.25s;
}
.cart-actions .btn-primary:hover {
    background: #e08c19 !important;
    border-color: #e08c19 !important;
    transform: translateY(-2px);
}
.cart-actions .btn-secondary {
    background: transparent !important;
    color: #5C5D60 !important;
    border: 1.5px solid #E0E0E0 !important;
    border-radius: 50px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s;
}
.cart-actions .btn-secondary:hover {
    border-color: #5C5D60 !important;
    background: #5C5D60 !important;
    color: #FFFFFF !important;
}