* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #f8fafc;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Contenedor principal */
.app-container {
    min-height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Barra superior mejorada */
.top-bar {
    background: linear-gradient(135deg, #fc0052, #e00047);
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(252, 0, 82, 0.15);
    backdrop-filter: blur(10px);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
}

.location-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.location-label {
    font-size: 11px;
    color: #fecdd3;
    font-weight: 500;
}

.location-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.action-icons {
    display: flex;
    gap: 8px;
}

.icon-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.icon-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Contenido principal */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* Vistas */
.view {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 8px 0;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fc0052, #ff6b9c);
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 0, 82, 0.3);
}

.back-button:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(252, 0, 82, 0.4);
}

/* Búsqueda */
.search-section {
    margin-bottom: 20px;
}

.search-container {
    position: relative;
    max-width: 500px;
}

.search-input {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 50px 14px 18px;
    font-size: 15px;
    color: #334155;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #fc0052;
    background: white;
    box-shadow: 0 0 0 3px rgba(252, 0, 82, 0.1);
}

.search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #fc0052;
    padding: 8px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #e00047;
    transform: translateY(-50%) scale(1.05);
}

/* Categorías */
.categories-section {
    margin-bottom: 25px;
}

.categories-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0 10px;
    scrollbar-width: thin;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
}

.category-chip:hover {
    border-color: #fc0052;
    background: #fdf2f8;
    transform: translateY(-2px);
}

.category-chip.active {
    background: linear-gradient(135deg, #fc0052, #ff6b9c);
    border-color: #fc0052;
    color: white;
    box-shadow: 0 4px 15px rgba(252, 0, 82, 0.3);
}

/* Banner promocional */
.promo-section {
    margin-bottom: 30px;
}

.promo-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 180px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.promo-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 25px;
    z-index: 2;
}

.promo-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    max-width: 250px;
    line-height: 1.2;
}

.promo-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
    max-width: 300px;
}

.promo-button {
    background: rgba(255, 255, 255, 0.95);
    color: #764ba2;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.promo-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Secciones */
.carousel-section {
    margin-bottom: 30px;
}

.section-title {
    color: #1e293b;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Grid de lugares */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.place-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.place-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    border-color: #fecdd3;
}

.place-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.05);
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
    font-size: 13px;
    font-weight: 600;
}

.place-content {
    padding: 16px;
}

.place-name {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.place-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
}

/* Grid de promociones */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.promotion-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.promotion-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.promotion-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fc0052, #ff6b9c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promotion-content {
    flex: 1;
}

.promotion-content h3 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.promotion-content p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Estados vacíos */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    max-width: 350px;
    margin: 0 auto;
}

.empty-icon {
    width: 60px;
    height: 60px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.empty-state h3 {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.empty-state p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Botones de acción */
.action-button {
    background: linear-gradient(135deg, #fc0052, #ff6b9c);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 0, 82, 0.3);
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 0, 82, 0.4);
}

.action-button.primary {
    background: linear-gradient(135deg, #fc0052, #ff6b9c);
}

.action-button.outline {
    background: white;
    color: #fc0052;
    border: 2px solid #fc0052;
}

.action-button.outline:hover {
    background: #fdf2f8;
}

/* Perfil */
.profile-content {
    max-width: 500px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-info h2 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-info p {
    color: #64748b;
    font-size: 14px;
}

.member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #7c2d12;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
}

.profile-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-section {
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}

.profile-section h3 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.info-label {
    color: #64748b;
    font-size: 13px;
}

.info-value {
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
}

.preferences {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.preference-tag {
    background: #f8fafc;
    color: #475569;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.setting-item:last-child {
    border-bottom: none;
}

.switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background: #fc0052;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.logout-button {
    background: #fc0052;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logout-button:hover {
    background: #e00047;
    transform: translateY(-1px);
}

/* Navegación inferior */
.bottom-nav {
    background: white;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    bottom: 0;
    z-index: 90;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 8px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 64px;
    padding: 8px 0;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.nav-icon {
    width: 22px;
    height: 22px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.nav-item.active .nav-icon {
    color: #fc0052;
    transform: scale(1.1);
}

.nav-label {
    font-size: 11px;
    color: #64748b;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-item.active .nav-label {
    color: #fc0052;
    font-weight: 600;
}

.nav-indicator {
    width: 4px;
    height: 4px;
    background: #fc0052;
    border-radius: 50%;
    margin-top: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.active .nav-indicator {
    opacity: 1;
}

/* Vista de detalle */
.detail-view {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 100;
    overflow-y: auto;
}

.detail-header {
    position: relative;
    height: 300px;
}

.detail-map {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
}

.detail-back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.detail-back-button:hover {
    background: #f8fafc;
    transform: scale(1.05);
    border-color: #fc0052;
}

.detail-favorite-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.detail-favorite-button:hover {
    background: #f8fafc;
    transform: scale(1.05);
}

.detail-content {
    padding: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.detail-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.detail-title {
    color: #1e293b;
    font-size: 26px;
    font-weight: 700;
    flex: 1;
    line-height: 1.2;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    padding: 8px 14px;
    border-radius: 20px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
}

.detail-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.detail-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.detail-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-info-icon {
    width: 44px;
    height: 44px;
    background: #f8fafc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #f1f5f9;
}

.detail-info-content {
    flex: 1;
}

.detail-info-label {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 4px;
}

.detail-info-value {
    color: #1e293b;
    font-size: 15px;
    font-weight: 500;
}

.detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-actions .action-button {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
}

/* Toast notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 14px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.toast.success {
    background: #10b981;
}

.toast.error {
    background: #ef4444;
}

.toast.info {
    background: #3b82f6;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f1f5f9;
    border-top: 3px solid #fc0052;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Lista de reservas */
.reservations-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reservation-card {
    background: white;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.reservation-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.reservation-info h3 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.reservation-info p {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.reservation-info p strong {
    color: #475569;
}

.reservation-date {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 8px;
}

.reservation-status {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.modal-header h3 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #fc0052;
    border-color: #fc0052;
    color: white;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #f1f5f9;
    justify-content: flex-end;
}

/* Formularios */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #475569;
    font-weight: 500;
    font-size: 13px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #fc0052;
    background: #fdf2f8;
    box-shadow: 0 0 0 3px rgba(252, 0, 82, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* Promo summary */
.promo-summary {
    background: linear-gradient(135deg, #fdf2f8, #faf5ff);
    border: 1px solid #fbcfe8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.promo-summary h4 {
    color: #831843;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.promo-summary p {
    color: #9d174d;
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.4;
}

.promo-summary p strong {
    color: #831843;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 0 16px;
    }
    
    .top-bar {
        padding: 14px 16px;
    }
    
    .places-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-content {
        padding: 20px;
    }
    
    .detail-title {
        font-size: 22px;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .back-button {
        padding: 10px 16px;
        font-size: 15px;
    }
    
    .modal-content {
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-banner {
        height: 160px;
    }
    
    .promo-title {
        font-size: 20px;
    }
    
    .category-chip {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .back-button {
        padding: 8px 12px;
        font-size: 14px;
        gap: 6px;
    }
    
    .nav-container {
        padding: 8px 4px;
    }
    
    .nav-item {
        min-width: 56px;
    }
}

@media (min-width: 1200px) {
    .places-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}