/**
 * Single Store Page Styles
 * Estilos para la página de detalle de tienda
 */

/* Slider de Banners */
.single-store-banner-slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: #000;
    max-width: 100vw;
    margin-top: 95px;
}

.single-store-banner-slider .splide {
    width: 100%;
    height: 500px;
}

.single-store-banner-slider .splide__track {
    height: 100%;
}

.single-store-banner-slider .splide__list {
    height: 100%;
}

.single-store-banner-slider .splide__slide {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.single-store-banner-slider .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay de texto en banners */
.banner-text-overlay {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    padding: 0 80px;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.banner-title {
    color: #FFF;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    color: #FFF;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle p {
    margin: 0 0 10px 0;
}

.banner-subtitle p:last-child {
    margin-bottom: 0;
}

/* Responsive para textos de banner */
@media (max-width: 1024px) {
    .banner-text-overlay {
        padding: 0 40px;
    }

    .banner-title {
        font-size: 40px;
        line-height: 56px;
    }

    .banner-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .banner-text-overlay {
        padding: 0 20px;
        top: 20%;
    }

    .banner-title {
        font-size: 32px;
        line-height: 44px;
    }

    .banner-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 12px;
    }

    .banner-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Flechas del slider de banners */
.single-store-banner-slider .splide__arrow {
    background: transparent;
    width: 60px;
    height: 30px;
    border-radius: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

.single-store-banner-slider .splide__arrow:hover {
    background: transparent;
    opacity: 0.7;
}

.single-store-banner-slider .splide__arrow svg {
    display: none;
}

.single-store-banner-slider .splide__arrow i {
    font-size: 50px;
    color: #fff;
}

/* Bullets del slider de banners - debajo de la imagen */
.single-store-banner-slider .splide__pagination {
    bottom: 20px;
    position: absolute;
    width: 100%;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    z-index: 100;
    padding: 0;
    margin: 0;
}

.single-store-banner-slider .splide__pagination__page {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1 !important;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.single-store-banner-slider .splide__pagination__page:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

.single-store-banner-slider .splide__pagination__page.is-active {
    background: #fff;
    border-color: #3F265F;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Main content */
.single-store-main {
    background: #f8f9fa;
}

.single-store-main-container {
    padding-right: 10rem;
    padding-left: 10rem;
}

/* Card de información con logo */
.single-store-info-card {
    position: relative;
    max-width: 100%;
    margin-top: -10rem;
}

/* Sin banners - sin margin-top negativo */
.no-banners .single-store-info-card {
    /*margin-top: 0;*/
}

.single-store-logo-wrapper {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);

}

.single-store-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Rating */
.single-store-rating {
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}

.single-store-rating .rating-stars {
    display: inline-flex;
    gap: 3px;
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 5px;
}

.single-store-rating .rating-count {
    display: block;
    color: #666;
    font-size: 14px;
}

/* Botón Evalúa tu experiencia */
.btn-evaluate {
    background: #444B58;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;

    font-size: 14px;
    width: 100%;


}

.btn-evaluate:hover {
    background: #444B58;
    box-shadow: 0 4px 12px rgba(63, 38, 95, 0.3);
}

/* Formulario de valoración */
.review-form-container {
    margin-top: 15px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.review-form-container.show {
    max-height: 500px;
    opacity: 1;
}

.review-form-inner {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.review-form-inner h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

/* Sistema de estrellas interactivo */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 32px;
    color: #ddd;
    transition: all 0.2s ease;
}

.star-rating-input label i {
    color: #ddd;
    transition: all 0.2s ease;
}

/* Efecto hover: ilumina la estrella y todas las anteriores */
.star-rating-input label:hover i,
.star-rating-input label:hover ~ label i {
    color: #ffc107;
    transform: scale(1.1);
}

/* Estrellas seleccionadas */
.star-rating-input input[type="radio"]:checked ~ label i {
    color: #ffc107;
}

/* Texto de valoración seleccionada */
.rating-selected {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 20px;
}

/* Botón enviar valoración */
.btn-submit-rating {
    background: #0A8CCC;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    width: 100%;
}

.btn-submit-rating:hover {
    background: #0876ad;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 140, 204, 0.3);
}

/* Categoría de la tienda */
.single-store-category {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.category-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Título de la tienda */
.single-store-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

/* Descripción */
.single-store-description {
    background: #fff;
    padding: 25px;
    border-radius: 8px;

    line-height: 1.8;
    color: #555;
}

/* Section titles */
.single-store-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
}

/* Horario */
.single-store-schedule {
    background: #fff;
    padding: 0 25px;
    border-radius: 8px;


}

.schedule-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-status.status-open {
    background: #28a745;
    color: #fff;
}

.badge-status.status-closed {
    background: #dc3545;
    color: #fff;
}

.schedule-text {
    margin: 0;
    color: #555;
    font-size: 15px;
}

.schedule-text i {
    margin-right: 8px;
    color: #0A8CCC;
}

/* ¿Dónde Estamos? */
.single-store-location-info {
    background: #fff;
    padding: 0 25px;

}

/* Contáctanos */
.single-store-contact-info {
    background: #fff;
    padding: 0 25px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-item i {
    color: #0A8CCC;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-item span,
.location-item a {
    color: #555;
    line-height: 1.6;
    flex: 1;
}

.location-item a {
    text-decoration: none;
    color: #0A8CCC;
    transition: color 0.3s ease;
}

.location-item a:hover {
    color: #0876ad;
    text-decoration: underline;
}

/* Columna derecha - Mapa */
.single-store-map-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Wrapper de la imagen del mapa */
.store-map-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.store-map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Badge del Terminal arriba del mapa */
.badge-terminal-container {
    display: flex;
    justify-content: flex-end;
    padding: 15px 15px 0;
}

.badge-terminal-header {
    display: inline-flex;
    padding: 4px 10px;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    border-radius: 21px;
    background: #0A8CCC;
    margin-bottom: 10px;
}

.badge-terminal-header .terminal-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.badge-terminal-header .terminal-icon-fallback {
    font-size: 20px;
    color: #fff;
    display: inline-block;
    line-height: 1;
}

.badge-terminal {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Código de tienda overlay */
.store-code-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.store-code-overlay i {
    font-size: 16px;
    color: #0A8CCC;
}

/* Placeholder cuando no hay mapa */
.store-map-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
}

.store-map-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Botón Ver Mapa */
.btn-view-map {
    display: flex;
    width: 262.733px;
    padding: 11px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    background: #0A8CCC;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 auto;
}

.btn-view-map:hover {
    background: #0876ad;
    color: #fff;
}

.btn-view-map i {
    font-size: 18px;
}

/* Slider de Promociones - Estilo simple y limpio */
.single-store-promotions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.single-store-promotions .splide {
    padding: 20px 0 60px;
}

.single-store-promotions .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-store-promotions .splide__slide img {
    width: 240px;
    height: 390px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}


.single-store-promotions .splide__slide img:hover {
    transform: translateY(-5px);
}

/* Flechas del slider de promociones */
.single-store-promotions .splide__arrow {
    background: transparent;
    width: 50px;
    height: 30px;
    border-radius: 0;
    opacity: 1;
}

.single-store-promotions .splide__arrow:hover {
    background: transparent;
    opacity: 0.7;
}

.single-store-promotions .splide__arrow svg {
    display: none;
}

.single-store-promotions .splide__arrow i {
    font-size: 24px;
    color: #fff;
}

/* Bullets del slider */
.single-store-promotions .splide__pagination {
    bottom: 10px;
}

.single-store-promotions .splide__pagination__page {
    background: #ccc;
    opacity: 1;
}

.single-store-promotions .splide__pagination__page.is-active {
    background: #3F265F;
    transform: scale(1.2);
}

/* Reseñas en Sidebar (debajo del logo) */
.single-store-reviews-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-card-sidebar {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card-sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.review-card-sidebar .review-stars {
    display: flex;
    gap: 4px;
}

.review-card-sidebar .review-stars i {
    color: #ffc107;
    font-size: 18px;
}

/* Sección de Reseñas Estáticas */
.single-store-reviews {
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.reviews-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.review-stars {
    display: flex;
    gap: 5px;
}

.review-stars i {
    color: #ffc107;
    font-size: 24px;
}

/* Responsive para reseñas */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-stars i {
        font-size: 20px;
    }
}

/* Modales */
.single-store-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
}

.modal-map-content {
    max-width: 1600px;
    max-height: 800px;
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-body {
    padding: 40px 30px;
}

.modal-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #212529;
}

/* Formulario de review en modal */
.modal-body .comment-form {
    margin: 0;
}

.modal-body .comment-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.modal-body .comment-form input[type="text"],
.modal-body .comment-form input[type="email"],
.modal-body .comment-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

.modal-body .comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit-review {
    background: #3F265F;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    background: #2d1a45;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .single-store-banner-slider,
    .single-store-banner-slider .splide,
    .single-store-banner-slider .splide__slide {
        height: 400px;
    }

    .single-store-title {
        font-size: 1.75rem;
    }

    .single-store-map-card {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .single-store-banner-slider,
    .single-store-banner-slider .splide,
    .single-store-banner-slider .splide__slide {
        height: 300px;
    }

    .single-store-banner-slider .splide__arrow {
        width: 48px;
        height: 25px;
    }

    .single-store-banner-slider .splide__arrow i {
        font-size: 36px;
    }

    .single-store-title {
        font-size: 1.5rem;
    }

    .single-store-info-card {
        padding: 20px;
    }

    .single-store-description,
    .single-store-schedule,
    .single-store-location-info {
        padding: 20px;
    }

    .store-map-container {
        height: 300px;
    }

    .single-store-promotions .splide__slide img {
        width: 200px;
        height: 325px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .schedule-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .single-store-banner-slider,
    .single-store-banner-slider .splide,
    .single-store-banner-slider .splide__slide {
        height: 385px;
    }

    .single-store-logo-wrapper {
        max-width: 120px;
    }

    .single-store-title {
        font-size: 1.35rem;
    }

    .btn-evaluate {
        font-size: 13px;
        padding: 8px 20px;
    }

    .single-store-promotions .splide__slide img {
        width: 180px;
        height: 292px;
    }

    .single-store-promotions {
        margin-top: 30px;
        overflow: hidden;
    }

    .single-store-promotions .splide {
        padding: 20px 10px 60px;
        max-width: 100%;
        overflow: visible;
    }

    .single-store-main-container {
        padding-right: 0;
        padding-left: 0;
    }

    /* Botones centrados y al 80% en móvil */
    .btn-evaluate,
    .btn-submit-rating,
    .btn-view-map,
    .btn-submit-review {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* ============================================
   REDES SOCIALES
   ============================================ */
.single-store-social-media {
    background: #fff;
    padding: 15px;
  
}

.single-store-social-media .single-store-section-title {
    font-size: 1rem;
    margin-bottom: 10px;
}

.social-media-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: #333;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    background: #555;
}

.social-link.facebook {
    background: #333;
}

.social-link.facebook:hover {
    background: #555;
}

.social-link.instagram {
    background: #333;
}

.social-link.instagram:hover {
    background: #555;
}

.social-link.twitter {
    background: #333;
}

.social-link.twitter:hover {
    background: #555;
}

/* ============================================
   MÉTODOS DE PAGO
   ============================================ */
.single-store-payment-methods {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.single-store-payment-methods .single-store-section-title {
    font-size: 1rem;
    margin-bottom: 10px;
}

.payment-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #444B58;
    transition: all 0.3s ease;
}

.payment-method-badge:hover {
    background: #e9ecef;
    border-color: #0A8CCC;
}

.payment-method-badge i {
    font-size: 16px;
    color: #0A8CCC;
}

/* ============================================
   IDIOMAS DE ATENCIÓN
   ============================================ */
.single-store-languages {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.single-store-languages .single-store-section-title {
    font-size: 1rem;
    margin-bottom: 10px;
}

.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #0A8CCC;
    transition: all 0.3s ease;
}

.language-badge:hover {
    background: #d0e9ff;
    border-color: #0A8CCC;
}

.language-badge i {
    font-size: 16px;
}

/* ============================================
   SERVICIOS ESPECIALES
   ============================================ */
.single-store-special-services {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.single-store-special-services .single-store-section-title {
    font-size: 1rem;
    margin-bottom: 10px;
}

.special-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #155724;
    transition: all 0.3s ease;
}

.service-badge:hover {
    background: #c3e6cb;
    border-color: #28a745;
}

.service-badge i {
    font-size: 14px;
    color: #28a745;
}

/* Responsive para nuevas secciones */
@media (max-width: 768px) {
    .single-store-social-media,
    .single-store-payment-methods,
    .single-store-languages,
    .single-store-special-services {
        padding: 20px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .payment-method-badge,
    .language-badge,
    .service-badge {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ============================================
   NOTIFICACIONES TOAST
   ============================================ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 4px solid;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast i {
    font-size: 24px;
    flex-shrink: 0;
}

.toast span {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    flex: 1;
}

/* Toast Success */
.toast-success {
    border-left-color: #28a745;
}

.toast-success i {
    color: #28a745;
}

/* Toast Error */
.toast-error {
    border-left-color: #dc3545;
}

.toast-error i {
    color: #dc3545;
}

/* Toast Info */
.toast-info {
    border-left-color: #0A8CCC;
}

.toast-info i {
    color: #0A8CCC;
}

/* Responsive para toasts */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }
}
