/**
 * BOTTIN.GDN - CSS Globale
 * Design aligné sur bottin.fr
 * Palette : #003C64 (primaire), #FA9C29 (accent), #FFF5EC (fond)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #003C64;
    background-color: #FFF5EC;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #003C64;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #FA9C29;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 60, 100, 0.08);
    border-bottom: 2px solid #FA9C29;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
}

.header-logo img {
    height: 50px;
    transition: opacity 0.2s;
}

.header-logo:hover img {
    opacity: 0.85;
}

/* Sélecteur de langue dans le header */
.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background: #FFF5EC;
    font-size: 13px;
    color: #003C64;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-switcher-btn:hover {
    border-color: #FA9C29;
    background: #FFFFFF;
}

.lang-switcher-btn img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.lang-switcher-btn svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.lang-switcher.open .lang-switcher-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 60, 100, 0.12);
    min-width: 180px;
    z-index: 1100;
    overflow: hidden;
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: #003C64;
    transition: background 0.15s;
}

.lang-dropdown a:hover {
    background: #FFF5EC;
    color: #FA9C29;
}

.lang-dropdown a img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid #E0E0E0;
}

/* ===========================
   MAIN CONTENT
   =========================== */
.site-main {
    margin-top: 80px;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    flex: 1;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #003C64;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FA9C29;
    border-radius: 2px;
}

/* ===========================
   CARDS
   =========================== */
.card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 60, 100, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 60, 100, 0.04);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 60, 100, 0.08);
}

.card-accent {
    border-left: 4px solid #FA9C29;
}

.card-info {
    border-left: 4px solid #003C64;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #FA9C29;
}

/* ===========================
   ACTION CARDS (add/edit/del/sponsor)
   =========================== */
.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 60, 100, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #003C64;
    transition: all 0.2s ease;
    cursor: pointer;
}

.action-card:hover {
    border-color: #FA9C29;
    box-shadow: 0 4px 16px rgba(250, 156, 41, 0.12);
    transform: translateY(-1px);
    color: #003C64;
}

.action-card-icon {
    width: 48px;
    height: 48px;
    background: #FFF5EC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-card-icon svg {
    width: 24px;
    height: 24px;
    color: #FA9C29;
}

.action-card:hover .action-card-icon {
    background: #FA9C29;
}

.action-card:hover .action-card-icon svg {
    color: #FFFFFF;
}

.action-card-label {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===========================
   HERO / INTRO
   =========================== */
.hero {
    display: flex;
    gap: 24px;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(0, 60, 100, 0.08);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 60, 100, 0.04);
}

.hero-image {
    width: 280px;
    flex-shrink: 0;
    border-radius: 8px;
}

.hero-text {
    flex: 1;
}

.hero-text h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #003C64;
}

.hero-text p {
    margin-bottom: 10px;
    color: #4A6A82;
}

/* ===========================
   STEPPER (progression etapes)
   =========================== */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 20px;
}

.stepper-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #B0BEC5;
}

.stepper-step.active {
    color: #003C64;
}

.stepper-step.completed {
    color: #FA9C29;
}

.stepper-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #E0E0E0;
    background: #FFFFFF;
    flex-shrink: 0;
}

.stepper-step.active .stepper-number {
    background: #003C64;
    color: #FFFFFF;
    border-color: #003C64;
}

.stepper-step.completed .stepper-number {
    background: #FA9C29;
    color: #FFFFFF;
    border-color: #FA9C29;
}

.stepper-line {
    width: 40px;
    height: 2px;
    background: #E0E0E0;
    margin: 0 8px;
}

.stepper-step.completed + .stepper-line,
.stepper-line.completed {
    background: #FA9C29;
}

/* ===========================
   FORMULAIRES
   =========================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #003C64;
    margin-bottom: 6px;
}

.form-label.required::after {
    content: ' *';
    color: #E53935;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    color: #003C64;
    background: #FFFFFF;
    border: 1.5px solid #D0D5DD;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #FA9C29;
    box-shadow: 0 0 0 3px rgba(250, 156, 41, 0.15);
}

.form-input::placeholder {
    color: #A0AEC0;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hint {
    font-size: 13px;
    color: #7A8FA0;
    margin-top: 4px;
}

/* Radio group (sélection pays) */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 14px;
}

.radio-item:hover {
    border-color: #FA9C29;
    background: #FFF5EC;
}

.radio-item input[type="radio"] {
    accent-color: #FA9C29;
    margin: 0;
}

.radio-item img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid #E0E0E0;
}

.radio-item input[type="radio"]:checked ~ span {
    font-weight: 600;
}

/* Autocomplétion (activités, villes) */
.autocomplete-wrapper {
    position: relative;
}

.suggestions-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid #D0D5DD;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 60, 100, 0.08);
    z-index: 1000;
    max-height: 220px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px 14px;
    color: #003C64;
    cursor: pointer;
    border-bottom: 1px solid #F5F5F5;
    font-size: 14px;
    transition: background 0.15s;
}

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

.suggestion-item:hover,
.suggestion-item.active {
    background: #FFF5EC;
    color: #FA9C29;
}

.form-input.autocomplete-selected {
    border-color: #22C55E;
    background: #F0FDF4;
}

/* ===========================
   BOUTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: #003C64;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #004D80;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 60, 100, 0.2);
}

.btn-accent {
    background: #FA9C29;
    color: #FFFFFF;
}

.btn-accent:hover {
    background: #E88D1E;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(250, 156, 41, 0.3);
}

.btn-outline {
    background: transparent;
    color: #003C64;
    border: 1.5px solid #003C64;
}

.btn-outline:hover {
    background: #003C64;
    color: #FFFFFF;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

/* ===========================
   IMAGES GUIDE
   =========================== */
.guide-image {
    display: block;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    margin: 12px auto;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.guide-step-icon {
    width: 24px;
    height: 24px;
    background: #FA9C29;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: #003C64;
    color: #FFFFFF;
    padding: 32px 20px 20px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: #FA9C29;
}

.footer-sites-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #FA9C29;
    margin: 20px 0 12px;
}

.footer-sites-subtitle {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.footer-sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 16px;
    margin-bottom: 16px;
}

.footer-site-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    color: #FFFFFF;
    font-size: 13px;
    opacity: 0.85;
}

.footer-site-link:hover {
    opacity: 1;
    color: #FA9C29;
}

.footer-site-link img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================
   ALERTES / MESSAGES
   =========================== */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.alert-info {
    background: #E3F2FD;
    color: #1565C0;
    border: 1px solid #BBDEFB;
}

.alert-warning {
    background: #FFF8E1;
    color: #E65100;
    border: 1px solid #FFECB3;
}

/* ===========================
   PAGE RACINE (choix de langue)
   =========================== */
.lang-chooser {
    max-width: 640px;
    margin: 80px auto 0;
    text-align: center;
    padding: 0 20px;
}

.lang-chooser-logo-card {
    background: #FFFFFF;
    border: 1.5px solid #E0E0E0;
    border-radius: 10px;
    padding: 24px 32px;
    margin: 0 auto 40px;
    display: inline-block;
}

.lang-chooser-logo {
    width: 300px;
    display: block;
}

.lang-chooser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.lang-chooser-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #FFFFFF;
    border: 1.5px solid #E0E0E0;
    border-radius: 10px;
    text-decoration: none;
    color: #003C64;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
}

.lang-chooser-item:hover {
    border-color: #FA9C29;
    background: #FFF5EC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 156, 41, 0.12);
    color: #003C64;
}

.lang-chooser-item img {
    width: 28px;
    height: 21px;
    border-radius: 3px;
    border: 1px solid #E0E0E0;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-content h3 {
    color: #003C64;
    font-size: 17px;
    margin-top: 24px;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid #FA9C29;
}

.legal-content h4 {
    color: #003C64;
    font-size: 15px;
    margin-bottom: 4px;
}

.legal-content p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-right {
    background: #FFF5EC;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.legal-note {
    font-style: italic;
    color: #667085;
    font-size: 14px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.legal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-list li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: #FA9C29;
    font-weight: 700;
}

/* ===========================
   CONFIRMATION PAGE
   =========================== */
.confirmation {
    text-align: center;
    padding: 60px 20px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.confirmation-icon svg {
    width: 40px;
    height: 40px;
}

.confirmation h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.confirmation p {
    color: #4A6A82;
    font-size: 16px;
}

/* ===========================
   SPONSOR GRID
   =========================== */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.sponsor-grid .card {
    display: flex;
    flex-direction: column;
}

.sponsor-price {
    font-size: 15px;
    color: #FA9C29;
    margin-top: auto;
    padding-top: 8px;
}

/* ===========================
   BUSINESS LISTING CARDS
   =========================== */
.listing-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 60, 100, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: box-shadow 0.2s;
}

.listing-card:hover {
    box-shadow: 0 4px 16px rgba(0, 60, 100, 0.08);
}

.listing-card-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #003C64;
    margin-bottom: 4px;
}

.listing-card-info p {
    font-size: 14px;
    color: #7A8FA0;
}

/* ===========================
   MAP CONTAINER
   =========================== */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: 1.5px solid #D0D5DD;
    margin-bottom: 20px;
    overflow: hidden;
}

/* ===========================
   PHOTO UPLOAD
   =========================== */
.photo-upload-area {
    border: 2px dashed #D0D5DD;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.photo-upload-area:hover {
    border-color: #FA9C29;
    background: #FFF5EC;
}

.photo-upload-area svg {
    width: 40px;
    height: 40px;
    color: #B0BEC5;
    margin-bottom: 8px;
}

.photo-preview {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    margin-top: 12px;
    display: none;
}

/* ===========================
   SCHEDULE GRID (horaires)
   =========================== */
.schedule-grid {
    width: 100%;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

.schedule-table th {
    background: #003C64;
    color: #FFFFFF;
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.schedule-table th:first-child {
    border-radius: 8px 0 0 0;
    text-align: left;
    padding-left: 14px;
}

.schedule-table th:last-child {
    border-radius: 0 8px 0 0;
}

.schedule-table td {
    padding: 8px 6px;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table td:first-child {
    text-align: left;
    padding-left: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.schedule-table tr:nth-child(even) {
    background: #FAFAFA;
}

.schedule-table select {
    padding: 6px 4px;
    border: 1.5px solid #D0D5DD;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    color: #003C64;
    background: #FFFFFF;
    width: 72px;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
}

.schedule-table select:focus {
    border-color: #FA9C29;
}

.schedule-closed-label {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    font-size: 13px;
}

.schedule-closed-label input[type="checkbox"] {
    accent-color: #FA9C29;
}

/* ===========================
   DELETE REASON RADIOS
   =========================== */
.reason-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
}

.reason-item:hover {
    border-color: #FA9C29;
    background: #FFF5EC;
}

.reason-item input[type="radio"] {
    accent-color: #FA9C29;
    margin-top: 3px;
    flex-shrink: 0;
}

.reason-item label {
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.nodisplay-message {
    display: none;
    background: #FFF8E1;
    border: 1px solid #FFECB3;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
    font-size: 14px;
    color: #E65100;
}

/* ===========================
   UTILITAIRES
   =========================== */
.text-center { text-align: center; }
.text-accent { color: #FA9C29; }
.text-muted  { color: #7A8FA0; }
.text-small  { font-size: 13px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-16 { gap: 16px; }

/* ===========================
   CTA WRAPPER & BUTTONS
   =========================== */
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.btn-cta-primary {
    flex: 1 1 260px;
    max-width: 460px;
    border: 3px solid #003C64;
}

.btn-cta-secondary {
    flex: 1 1 260px;
    max-width: 460px;
    text-align: center;
    border: 3px solid #003C64;
    background: #FFFFFF;
    color: #003C64;
}

/* ===========================
   CONFIRMATION ICON VARIANTS
   =========================== */
.confirmation-icon-error {
    background: #FFEBEE;
    color: #C62828;
}

/* ===========================
   SEARCH GRID
   =========================== */
.search-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ===========================
   LINK ACCENT
   =========================== */
.link-accent {
    color: #FA9C29;
}

/* ===========================
   BUSINESS SUMMARY CARD
   =========================== */
.business-summary-card {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    text-align: center;
}

/* ===========================
   REASON GRID
   =========================== */
.reason-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ===========================
   TEXT UTILITIES (additional)
   =========================== */
.text-uppercase { text-transform: uppercase; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 640px) {
    .reason-grid { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
    .site-main {
        margin-top: 70px;
        padding: 16px;
    }

    .section-title {
        font-size: 18px;
    }

    .hero {
        flex-direction: column;
        padding: 20px;
    }

    .hero-image {
        width: 100%;
    }

    .action-grid {
        grid-template-columns: 1fr;
    }

    .radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stepper-step span:not(.stepper-number) {
        display: none;
    }

    .stepper-line {
        width: 24px;
    }

    .lang-chooser-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-grid {
        grid-template-columns: 1fr;
    }

    .listing-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .schedule-table select {
        width: 60px;
        font-size: 12px;
    }

    .footer-sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

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

    .footer-sites-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        padding: 8px 12px;
    }

    .header-logo img {
        height: 40px;
    }
}
