/* ── CORE LAYOUT & TYPOGRAPHY ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body { 
    background: #ffffff !important; 
    font-family: 'Inter', sans-serif !important;
}
.ar-page { padding: 40px 0 80px; }
.ar-body { max-width: 1140px; margin: 0 auto; }

/* ── HERO / BUSINESS CARD ── */
.ar-biz-img-card {
    position: relative;
    aspect-ratio: 16 / 7;
    max-height: 420px;
    background: #0f172a;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 30px;
    width: 100%;
}
.ar-biz-img-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
    display: block;
}

.ar-hero-biz-pill {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 6px 24px 6px 6px;
    display: flex; align-items: center; gap: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ar-hero-biz-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff; 
    display: flex; align-items: center; justify-content: center;
    color: #ef4444; font-size: 1.1rem; flex-shrink: 0;
}
.ar-hero-biz-name { font-size: 1.1rem; font-weight: 700; color: #111; }
.ar-hero-save-btn {
    position: absolute;
    bottom: 24px; right: 24px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem; font-weight: 600; color: #fff;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    backdrop-filter: blur(8px);
}

/* ── STATS ROW (Sidebar) ── */
.ar-stats-row {
    display: flex; gap: 12px; margin-bottom: 28px; justify-content: space-between;
}
.ar-stat-bubble {
    background: #f6f5f3;
    border-radius: 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 20px 10px; flex: 1;
    aspect-ratio: 1;
}
.ar-stat-bubble-val {
    font-size: 1.3rem; font-weight: 700; color: #111; margin-bottom: 4px;
    display: flex; align-items: center; gap: 6px;
}
.ar-stat-bubble-label {
    font-size: 0.75rem; font-weight: 600; color: #555;
}
.ar-stat-bubble.rating .fa-star { color: #facc15; font-size: 1rem; }
.ar-stat-bubble.open .fa-circle { color: #10b981; font-size: 0.5rem; }

/* ── WRITE REVIEW CARD ── */
.ar-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 24px;
    border: 1px solid #f1f1f1;
}
.ar-form-card h2 {
    font-size: 1.8rem; font-weight: 700; color: #111;
    margin-bottom: 24px;
}

.ar-rating-row {
    display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.ar-rating-label { font-size: 0.95rem; font-weight: 700; color: #111; }

/* ── INTERACTIVE STARS ── */
.ar-stars { display: flex; gap: 6px; align-items: center; }
.ar-star {
    font-size: 1.5rem; color: #e5e5e5; cursor: pointer;
}
.ar-star.active, .ar-star:hover { color: #facc15; }

/* ── FORM INPUTS ── */
.ar-textarea {
    width: 100%;
    min-height: 160px;
    border: none;
    border-radius: 16px;
    padding: 24px;
    font-size: 1rem; font-family: inherit;
    color: #111;
    background: #f6f5f3;
    resize: vertical; outline: none;
    margin-bottom: 32px;
}
.ar-textarea::placeholder { color: #777; font-weight: 400; }

/* ── PHOTO UPLOAD ── */
.ar-photos-label { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 16px; display: block; }
.ar-drop-zone {
    border: 2px dashed #eed8db;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    background: #fdfafb;
    margin-bottom: 24px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
}
.ar-drop-zone-icon { font-size: 2rem; color: #900b21; margin-bottom: 8px; }
.ar-drop-zone p { font-size: 0.95rem; color: #111; margin: 0; font-weight: 500; }
.ar-drop-zone small { font-size: 0.85rem; color: #888; }
.ar-photo-previews { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.ar-photo-thumb { position: relative; width: 90px; height: 90px; }
.ar-photo-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 12px;
}
.ar-photo-thumb-remove {
    position: absolute; top: -8px; right: -8px;
    width: 24px; height: 24px;
    background: #ef4444; color: #fff;
    border-radius: 50%; border: none;
    font-size: 0.7rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

/* ── REACTION ROW ── */
.ar-reaction-row {
    display: flex; align-items: center; justify-content: center;
    background: #f4e9eb; 
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 32px;
}
.ar-reaction-btn {
    flex: 1; display: flex; align-items: center; justify-content: center;
    background: none; border: none; font-size: 1.3rem; cursor: pointer;
}
.ar-reaction-btn .fa-heart { color: #ef4444; }
.ar-reaction-btn .fa-thumbs-up { color: #3b82f6; } 
.ar-reaction-btn .fa-lightbulb { color: #60a5fa; }

/* ── SOLICITED QUESTION CARD ── */
.ar-solicited-card {
    background: #fff; border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid #f1f1f1;
}
.ar-solicited-card h6 { font-size: 1.2rem; font-weight: 700; color: #111; margin-bottom: 12px; }
.ar-solicited-card p { font-size: 0.95rem; color: #333; margin-bottom: 24px; line-height: 1.6; }
.ar-sol-options { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.ar-sol-option {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem; font-weight: 500; cursor: pointer;
    border: 1px solid #e5e5e5; background: #fff; color: #111;
}
.ar-sol-option input[type="radio"] { display: none; }
.ar-sol-option.selected-yes { border-color: #10b981; }
.ar-sol-option.selected-no  { border-color: #ef4444; }
.ar-sol-option i { font-size: 1.1rem; }
.ar-sol-option .fa-check-circle { color: #10b981; }
.ar-sol-option .fa-times-circle { color: #ef4444; }

.ar-sol-checks { display: flex; gap: 24px; flex-wrap: wrap; }
.ar-sol-check { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: #111; font-weight: 700; }
.ar-sol-check i { font-size: 0.8rem; }

/* ── SUBMIT BTN ── */
.ar-submit-btn {
    width: 100%;
    padding: 20px;
    background: #900b21; 
    color: #fff; border: none;
    border-radius: 50px; 
    font-size: 1rem; font-weight: 600;
    cursor: pointer; 
    display: flex; align-items: center; justify-content: center;
}

/* ── RIGHT SIDEBAR ── */
.ar-sidebar-card {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 24px;
    border: 1px solid #f1f1f1;
}
.ar-sidebar-section-title {
    font-size: 0.95rem; font-weight: 500; color: #111; margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}
.ar-sidebar-section-title i { color: #ef4444; }
.ar-popular-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 0;
}
.ar-popular-img {
    width: 64px; height: 64px;
    border-radius: 50%; object-fit: cover;
    background: #f1f5f9; flex-shrink: 0;
}
.ar-popular-info h6 { font-size: 0.95rem; font-weight: 600; color: #111; margin: 0 0 4px; }
.ar-popular-info p { font-size: 0.85rem; color: #888; margin: 0; }

/* ── COMMUNITY REVIEWS (sidebar) ── */
.ar-community-rev { display: flex; flex-direction: column; gap: 24px; }
.ar-comm-rev-item { display: flex; flex-direction: column; gap: 8px; }
.ar-comm-rev-top { display: flex; align-items: center; gap: 12px; }
.ar-comm-rev-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    object-fit: cover; background: #e2e8f0; flex-shrink: 0;
}
.ar-comm-rev-name { font-size: 0.95rem; font-weight: 700; color: #111; flex: 1; }
.ar-comm-rev-stars { display: flex; gap: 2px; }
.ar-comm-rev-stars i { font-size: 0.75rem; color: #facc15; }
.ar-comm-rev-text { font-size: 0.9rem; color: #555; line-height: 1.5; font-style: italic; }

/* ── COMMUNITY REVIEWS (full, bottom) ── */
.ar-reviews-section { margin-top: 40px; }
.ar-reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.ar-reviews-header h4 { font-size: 1.6rem; font-weight: 700; color: #111; margin: 0; }
.ar-sort-select {
    border: none; background: transparent;
    font-size: 0.85rem; font-weight: 700; color: #111; outline: none; cursor: pointer;
}
.ar-review-card {
    background: #fff; border-radius: 24px;
    padding: 32px; margin-bottom: 24px;
    border: 1px solid #f1f1f1;
}
.ar-review-top { display: flex; gap: 16px; margin-bottom: 20px; }
.ar-review-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; background: #e2e8f0; flex-shrink: 0;
}
.ar-review-user-name { font-size: 1rem; font-weight: 700; color: #111; display: flex; align-items: center; gap: 6px;}
.ar-review-user-name .fa-check-circle { color: #8b5cf6; font-size: 0.9rem; }
.ar-review-user-sub { font-size: 0.8rem; color: #555; font-weight: 500; }
.ar-review-stars-row { display: flex; gap: 3px; margin-left: auto; }
.ar-review-stars-row i { font-size: 1.1rem; color: #facc15; }
.ar-review-text { font-size: 1rem; color: #333; line-height: 1.6; margin-bottom: 24px; }
.ar-review-photos { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.ar-review-photos img {
    width: 220px; height: 220px;
    border-radius: 24px; object-fit: cover;
}
.ar-review-footer { display: flex; align-items: center; gap: 24px; }
.ar-review-action {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: #111; font-weight: 600; cursor: pointer;
    background: none; border: none; 
}
.ar-review-action i { font-size: 1rem; }

.ar-load-more-btn {
    width: 100%; padding: 16px;
    background: #f6f5f3; color: #111;
    border: none; border-radius: 16px;
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer; margin-top: 12px;
}

@media (max-width: 991px) {
    .ar-biz-img-card { height: 240px; }
    .ar-form-card, .ar-solicited-card, .ar-sidebar-card { padding: 24px; }
    .ar-stats-row { flex-wrap: wrap; }
    .ar-stat-bubble { min-width: 30%; }
    .ar-review-photos img { width: 140px; height: 140px; }
}
