/* ========================================
   ESTILOS - DETALLE DE PUESTO DE CALLE
   Puestos ambulantes / de esquina
   (Carpas, carritos, puestos fijos por horario)
   ======================================== */

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb--temp {
    background-color: var(--gray-50);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb--temp .breadcrumb-list a {
    color: var(--gray-600);
}

.breadcrumb--temp .breadcrumb-list a:hover {
    color: var(--primary-500);
}

.breadcrumb--temp .breadcrumb-current {
    color: var(--gray-900);
    font-weight: 500;
}

/* ========================================
   GALERÍA
   ======================================== */
.location-temp-gallery {
    padding: 1.5rem 0;
    background-color: var(--gray-50);
}

.gallery-temp-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 0.75rem;
    height: 280px;
    max-height: 280px;
}

.gallery-temp-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 280px;
    max-height: 280px;
}

.gallery-temp-main img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-temp-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-temp-status--available {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.gallery-temp-status--not_today {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
}

.gallery-temp-status--moved {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.gallery-temp-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--secondary-500) 0%, var(--amber-500) 100%);
    color: var(--secondary-900);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(41, 108, 255, 0.4);
}

.gallery-temp-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}

.gallery-temp-btn:hover {
    background: rgba(0, 0, 0, 0.95);
}

.gallery-temp-thumbnails {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
    height: 280px;
    max-height: 280px;
    overflow: hidden;
}

.gallery-temp-thumb {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-temp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-temp-thumb:hover img {
    transform: scale(1.05);
}

.gallery-temp-thumb--more::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.gallery-temp-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1;
}

/* ========================================
   LAYOUT PRINCIPAL
   ======================================== */
.location-temp-content {
    padding: 2rem 0 4rem;
}

.location-temp-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.location-temp-main {
    min-width: 0;
}

/* ========================================
   HEADER DEL NEGOCIO
   ======================================== */
.location-temp-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.location-temp-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.location-temp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.location-temp-category {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: var(--primary-50);
    color: var(--primary-600);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.location-temp-subcategory {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.location-temp-type {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: var(--amber-700);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-temp-badge--popular {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, var(--secondary-400), var(--secondary-500));
    color: var(--secondary-900);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Badge base */
.location-temp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.location-temp-actions-header {
    display: flex;
    gap: 0.5rem;
}

.btn-icon-temp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: white;
    color: var(--gray-600);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon-temp:hover {
    border-color: var(--primary-500);
    color: var(--primary-500);
    background: var(--primary-50);
}

.location-temp-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.location-temp-verified {
    color: var(--primary-500);
    font-size: 1.5rem;
}

.location-temp-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.location-temp-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.location-temp-rating-stars {
    display: flex;
    gap: 0.125rem;
    color: var(--amber-400);
    font-size: 1rem;
}

.location-temp-rating-value {
    font-weight: 700;
    color: var(--gray-900);
}

.location-temp-rating-count {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.location-temp-price {
    padding: 0.25rem 0.5rem;
    background: var(--green-50);
    color: var(--green-700);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.location-temp-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.location-temp-status--available {
    color: var(--green-600);
}

.location-temp-status--not_today {
    color: var(--gray-500);
}

.location-temp-status--moved {
    color: var(--amber-600);
}

.location-temp-years {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.location-temp-years i {
    color: var(--primary-500);
}

/* ========================================
   BOTONES
   ======================================== */
.btn-temp-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-500);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-temp-primary:hover {
    background: var(--primary-600);
    color: white;
}

.btn-temp-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-100);
    color: var(--primary-600);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-temp-secondary:hover {
    background: var(--primary-200);
}

.btn-temp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-temp-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-temp-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-block-temp {
    width: 100%;
}

.btn-whatsapp-temp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-whatsapp-temp:hover {
    background: #1da851;
    color: white;
}

/* ========================================
   TABS
   ======================================== */
.location-temp-tabs {
    margin-top: 1.5rem;
}

.tabs-nav-temp {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tabs-nav-temp::-webkit-scrollbar {
    display: none;
}

.tab-btn-temp {
    flex-shrink: 0;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-btn-temp:hover {
    color: var(--primary-500);
}

.tab-btn-temp.active {
    color: var(--primary-600);
    border-bottom: 3px solid var(--primary-500);
    font-weight: 600;
}

.tab-content-temp {
    display: none;
}

.tab-content-temp.active {
    display: block;
}

/* ========================================
   SECCIONES DE CONTENIDO
   ======================================== */
.location-temp-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.location-temp-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.location-temp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.location-temp-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.location-temp-section-header .location-temp-section-title {
    margin-bottom: 0;
}

.location-temp-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.location-temp-founded {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.location-temp-founded i {
    color: var(--primary-500);
}

/* Especialidades */
.location-temp-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.875rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.specialty-tag--highlight {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    color: var(--primary-600);
    border: 1px solid var(--primary-200);
}

.specialty-tag--highlight i {
    color: var(--primary-500);
}

/* Amenidades */
.location-temp-amenities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-item-temp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--gray-700);
}

.amenity-item-temp i {
    font-size: 1.25rem;
    color: var(--primary-500);
}

/* Métodos de pago */
.payment-methods-temp {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-method-item-temp {
    flex: 1 1 calc(25% - 0.75rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
    transition: all 0.2s ease;
    height: 90px;
}

@media (max-width: 639px) {
    .payment-method-item-temp {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

.payment-method-item-temp span {
    word-break: break-word;
    max-width: 100%;
}

.payment-method-item-temp:hover {
    border-color: var(--primary-200);
    background: var(--primary-50);
    transform: translateY(-2px);
}

.payment-method-item-temp i {
    font-size: 1.5rem;
    color: var(--primary-500);
}

/* Nota de horario */
.location-temp-schedule-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--amber-50);
    border: 1px solid var(--amber-200);
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    color: var(--amber-700);
    margin-bottom: 1rem;
}

.location-temp-schedule-note i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Horarios */
.schedule-card-temp {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    border: 1px solid var(--gray-100);
}

.schedule-list-temp {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list-temp--info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.375rem;
}

.schedule-item-temp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    background: transparent;
    transition: all 0.2s ease;
}

.schedule-item-temp:hover {
    background: var(--gray-50);
}

.schedule-item-temp--today {
    background: var(--primary-500);
    box-shadow: 0 4px 12px rgba(41, 108, 255, 0.25);
}

.schedule-item-temp--today:hover {
    background: var(--primary-500);
}

.schedule-item-temp--closed {
    opacity: 0.6;
}

.schedule-day-temp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

.schedule-day-temp i {
    color: var(--primary-500);
    font-size: 0.875rem;
}

.schedule-item-temp--today .schedule-day-temp {
    color: white;
    font-weight: 600;
}

.schedule-item-temp--today .schedule-day-temp i {
    color: white;
}

.schedule-time-temp {
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.875rem;
}

.schedule-item-temp--today .schedule-time-temp {
    color: rgba(255, 255, 255, 0.9);
}

.schedule-closed-temp {
    color: var(--gray-400);
    font-style: italic;
}

/* ========================================
   MENÚ
   ======================================== */
.location-temp-menu-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.menu-grid-temp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.menu-item-temp {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.2s ease;
}

.menu-item-temp:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
}

.menu-item-temp--popular {
    border-color: var(--primary-200);
    background: linear-gradient(135deg, #fff 0%, var(--primary-50) 100%);
}

.menu-item-temp-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.menu-item-temp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item-temp-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.25rem 0.5rem;
    background: var(--primary-500);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-item-temp-content {
    padding: 0.875rem;
}

.menu-item-temp-category {
    display: inline-block;
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.menu-item-temp-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0.125rem 0 0.25rem 0;
}

.menu-item-temp-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
}

.menu-item-temp-footer {
    display: flex;
    align-items: center;
}

.menu-item-temp-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-600);
}

/* ========================================
   RESEÑAS
   ======================================== */
.reviews-summary-temp {
    display: grid;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-50) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

.reviews-summary-temp-score {
    text-align: center;
}

.reviews-temp-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.reviews-temp-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: var(--amber-400);
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.reviews-temp-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.reviews-summary-temp-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reviews-bar-row-temp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-bar-label-temp {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    width: 2.5rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.reviews-bar-label-temp i {
    color: var(--amber-400);
    font-size: 0.75rem;
}

.reviews-bar-temp {
    flex: 1;
    height: 0.5rem;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.reviews-bar-fill-temp {
    height: 100%;
    background: var(--amber-400);
    border-radius: var(--radius-full);
}

.reviews-bar-percent-temp {
    width: 2.5rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: right;
}

/* Lista de reseñas */
.reviews-list-temp {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item-temp {
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.review-header-temp {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-user-temp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar-temp {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    font-weight: 600;
    overflow: hidden;
}

.review-avatar-temp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user-info-temp {
    display: flex;
    flex-direction: column;
}

.review-user-name-temp {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.review-user-reviews-temp {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.review-meta-temp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.review-rating-temp {
    display: flex;
    gap: 0.125rem;
    color: var(--amber-400);
    font-size: 0.875rem;
}

.review-date-temp {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.review-comment-temp {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-images-temp {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-images-temp img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.review-images-temp img:hover {
    opacity: 0.85;
}

.review-actions-temp {
    display: flex;
    gap: 1rem;
}

.review-helpful-temp {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-helpful-temp:hover {
    background: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-500);
}

.review-response-temp {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary-500);
}

.review-response-header-temp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.review-response-header-temp span:first-of-type {
    font-weight: 600;
    color: var(--gray-900);
}

.review-response-date-temp {
    color: var(--gray-500);
}

.review-response-temp p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
}

.reviews-load-more-temp {
    text-align: center;
    margin-top: 1.5rem;
}

/* ========================================
   TIPS
   ======================================== */
.location-temp-tips-intro {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tips-list-temp {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 639px) {
    .tips-list-temp {
        grid-template-columns: 1fr;
    }
}

.tip-item-temp {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
    border: 1px solid var(--amber-200);
    border-radius: var(--radius-lg);
}

.tip-item-temp-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-400);
    color: white;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    font-size: 1rem;
}

.tip-item-temp p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
}

.tips-contribute-temp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--gray-300);
}

.tips-contribute-temp p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* ========================================
   SIDEBAR
   ======================================== */
.location-temp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 6.5rem;
    align-self: start;
}

.sidebar-card-temp {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}


.sidebar-card-temp-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

/* Contact card */
.contact-card-temp-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.contact-card-temp-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-card-temp-header p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.contact-actions-temp {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.contact-info-temp {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item-temp {
    display: flex;
    gap: 0.75rem;
}

.contact-item-temp > i {
    flex-shrink: 0;
    width: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-400);
}

.contact-item-temp-content {
    flex: 1;
    min-width: 0;
}

.contact-item-temp-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-item-temp-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-900);
    word-break: break-word;
}

.text-closed {
    color: var(--gray-400);
}

.contact-item-temp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--primary-500);
    font-weight: 500;
}

.contact-item-temp-link:hover {
    color: var(--primary-600);
}

.contact-social-temp {
    margin-top: 1.5rem;
}

.contact-social-temp-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.social-links-temp {
    display: flex;
    gap: 0.5rem;
}

.social-link-temp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.social-link-temp:hover {
    background: var(--primary-500);
    color: white;
}

/* Mapa */
.location-map-temp {
    margin-bottom: 1rem;
}

.map-placeholder-temp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 180px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--gray-500);
}

.map-placeholder-temp i {
    font-size: 2.5rem;
}

/* Notice card */
.notice-card-temp {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--amber-50);
    border: 1px solid var(--amber-200);
    border-radius: var(--radius-lg);
}

.notice-card-temp > i {
    font-size: 1.25rem;
    color: var(--amber-500);
    flex-shrink: 0;
}

.notice-card-temp strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--amber-700);
    margin-bottom: 0.25rem;
}

.notice-card-temp p {
    font-size: 0.75rem;
    color: var(--amber-700);
    line-height: 1.5;
    margin: 0;
}

/* Reportar */
.sidebar-report-temp {
    text-align: center;
}

.btn-report-temp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--gray-500);
    font-size: 0.8125rem;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-report-temp:hover {
    color: var(--red-500);
}

/* ========================================
   ESPACIOS DESTACADOS
   ======================================== */
.promo-section-temp {
    padding: 2rem 0;
    background-color: var(--gray-50);
}

.promo-block-temp {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--gray-100);
}

.promo-tag-temp {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.promo-inner-temp {
    position: relative;
    width: 100%;
    height: 100%;
}

.promo-inner-temp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.promo-cover-temp {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    text-align: center;
    padding: 1rem;
}

.promo-cover-temp--row {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    background: transparent;
}

.promo-info-temp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.promo-title-temp {
    font-size: 1.25rem;
    font-weight: 700;
}

.promo-desc-temp {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
}

.promo-btn-temp {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-500);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.promo-btn-temp:hover {
    background-color: var(--primary-600);
    color: white;
    transform: translateY(-1px);
}

.promo-block-temp--horizontal {
    height: 120px;
}

/* ========================================
   SECCIÓN SIMILAR
   ======================================== */
.similar-section-temp {
    padding: 3rem 0;
    background: var(--gray-50);
}

.section-link--temp {
    color: var(--primary-500);
}

.section-link--temp:hover {
    color: var(--primary-600);
}

/* ========================================
   BOTTOM NAV CONTACTO (MÓVIL)
   ======================================== */
.location-bottom-nav-temp {
    display: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Hide breadcrumb on mobile */
@media (max-width: 768px) {
    .page-location-details-temp .breadcrumb--temp {
        display: none;
    }
}

/* Hide bottom-nav normal on location-details-temp */
.page-location-details-temp .bottom-nav {
    display: none !important;
}

@media (min-width: 640px) {
    .location-temp-amenities {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-summary-temp {
        grid-template-columns: auto 1fr;
        align-items: center;
    }
    
    .reviews-summary-temp-score {
        padding-right: 2rem;
        border-right: 1px solid var(--gray-200);
    }
}

@media (min-width: 768px) {
    .location-temp-name {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .gallery-temp-grid {
        height: 320px;
        max-height: 320px;
    }
    
    .gallery-temp-main {
        height: 320px;
        max-height: 320px;
    }
    
    .gallery-temp-main img {
        max-height: 320px;
    }
    
    .gallery-temp-thumbnails {
        height: 320px;
        max-height: 320px;
    }
    
    .location-temp-layout {
        grid-template-columns: 1fr 380px;
    }
    
    .location-temp-name {
        font-size: 2.25rem;
    }
    
    .location-temp-amenities {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-grid-temp {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .gallery-temp-grid {
        height: 360px;
        max-height: 360px;
    }
    
    .gallery-temp-main {
        height: 360px;
        max-height: 360px;
    }
    
    .gallery-temp-main img {
        max-height: 360px;
    }
    
    .gallery-temp-thumbnails {
        height: 360px;
        max-height: 360px;
    }
    
    .menu-grid-temp {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile overrides */
@media (max-width: 1023px) {
    .location-temp-sidebar {
        display: none;
    }
    
    .location-bottom-nav-temp {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        border-top: 1px solid var(--gray-200);
        padding: 0.5rem 1rem;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .location-bottom-nav-temp-inner {
        display: flex;
        gap: 0.5rem;
    }
    
    .location-bottom-btn-temp {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.875rem 1rem;
        border: none;
        border-radius: var(--radius-lg);
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .location-bottom-btn-temp i {
        font-size: 1.125rem;
    }
    
    /* WhatsApp */
    .location-bottom-btn-temp--whatsapp {
        background: #25D366;
        color: white;
    }
    
    .location-bottom-btn-temp--whatsapp:active {
        transform: scale(0.96);
        background: #1da851;
    }
    
    /* Llamar */
    .location-bottom-btn-temp--call {
        background: var(--primary-500);
        color: white;
    }
    
    .location-bottom-btn-temp--call:active {
        transform: scale(0.96);
    }
    
    /* Mapa */
    .location-bottom-btn-temp--map {
        background: var(--gray-100);
        color: var(--gray-700);
    }
    
    .location-bottom-btn-temp--map:active {
        background: var(--gray-200);
    }
    
    /* Ajustar padding del contenido para el bottom-nav */
    .page-location-details-temp main {
        padding-bottom: 5rem;
    }
    
    .location-temp-content {
        padding-bottom: 6rem;
    }
}

@media (max-width: 767px) {
    .gallery-temp-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    
    .gallery-temp-main {
        height: 200px;
    }
    
    .gallery-temp-thumbnails {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        height: 70px;
    }
    
    .promo-block-temp--horizontal {
        height: auto;
        min-height: 180px;
    }
    
    .promo-cover-temp--row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .promo-info-temp {
        align-items: center;
        text-align: center;
    }
    
    .promo-title-temp {
        font-size: 1.125rem;
    }
}

@media (max-width: 639px) {
    .menu-grid-temp {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .location-temp-badges {
        gap: 0.35rem;
    }
    
    .location-temp-category,
    .location-temp-subcategory,
    .location-temp-type {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .location-temp-meta {
        gap: 0.75rem;
    }
    
    .tabs-nav-temp {
        gap: 0;
    }
    
    .tab-btn-temp {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   ESTILOS ADICIONALES
   ======================================== */

/* Section Container (si no está definido globalmente) */
.section-container {
    width: 100%;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

/* Status indicator en meta */
.location-temp-status i.ri-circle-fill {
    font-size: 0.5rem;
    vertical-align: middle;
}

/* Breadcrumb list */
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: var(--gray-400);
}

.breadcrumb-list a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary-500);
}

.breadcrumb-current {
    color: var(--gray-900);
    font-weight: 500;
}

/* Avatar placeholder styling */
.review-avatar-temp span {
    font-size: 1rem;
    color: var(--primary-600);
}

/* Fix for responsive meta items */
@media (max-width: 639px) {
    .location-temp-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .location-temp-header-top {
        flex-direction: column;
        gap: 1rem;
    }
    
    .location-temp-actions-header {
        order: -1;
        align-self: flex-end;
    }
}

/* Tab content transitions */
.tab-content-temp {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews bar fill animation */
.reviews-bar-fill-temp {
    transition: width 0.6s ease;
}

/* Gallery hover effects */
.gallery-temp-main:hover img {
    transform: scale(1.02);
}

/* Menu item hover state */
.menu-item-temp:hover .menu-item-temp-image img {
    transform: scale(1.05);
}

/* Improve touch targets on mobile */
@media (max-width: 767px) {
    .btn-icon-temp {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .tab-btn-temp {
        min-height: 44px;
    }
    
    .social-link-temp {
        width: 2.75rem;
        height: 2.75rem;
    }
}

/* Loading state for buttons */
.btn-temp-primary:disabled,
.btn-temp-secondary:disabled,
.btn-temp-outline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus states for accessibility */
.btn-temp-primary:focus-visible,
.btn-temp-secondary:focus-visible,
.btn-temp-outline:focus-visible,
.tab-btn-temp:focus-visible,
.btn-icon-temp:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .location-temp-gallery,
    .location-temp-sidebar,
    .location-bottom-nav-temp,
    .promo-section-temp,
    .similar-section-temp,
    .breadcrumb--temp {
        display: none !important;
    }
    
    .location-temp-layout {
        grid-template-columns: 1fr;
    }
}
