/* --- OFFERS LIST --- */
.offers-index header {
    margin-bottom: 2rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-card-header {
    margin-bottom: 1rem;
}

.offer-card-title {
    margin: 0 0 0.5rem 0;
    color: #667eea;
    font-size: 1.25rem;
}

.offer-card-poi {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

.offer-card-body {
    margin-bottom: 1rem;
    flex: 1;
}

.offer-advantage {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.offer-description {
    color: #495057;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.offer-card-footer {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
}

.offer-card-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    display: block;
    margin-top: auto;
}

.offers-empty {
    text-align: center;
    padding: 3rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.offers-empty-icon {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.offers-empty-text {
    color: #6c757d;
}


/* --- OFFER VIEW --- */
.offer-view-container {
    max-width: 800px;
    margin: 0 auto;
}

.offer-view-header {
    margin-bottom: 2rem;
}

.offer-back-link {
    color: #667eea;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-view-poi {
    color: #6c757d;
    font-size: 1.1rem;
}

.offer-view-details {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.offer-view-advantage {
    font-size: 1.75rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 1rem;
}

.offer-view-description {
    color: #495057;
    line-height: 1.6;
    font-size: 1.05rem;
}

.offer-view-validity {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #6c757d;
}

.offer-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
    color: #333;
}

.offer-view-conditions {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.offer-condition-text {
    margin: 0.5rem 0 0 0;
    color: #856404;
}

.offer-view-actions {
    text-align: center;
    margin-top: 2rem;
}

.offer-view-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}