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

:root {
    --bg-main: #060913;
    --bg-card: rgba(20, 25, 40, 0.4);
    --bg-panel: rgba(10, 15, 30, 0.85);
    --bg-sidebar: rgba(6, 9, 19, 0.95);
    
    --border-light: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(99, 102, 241, 0.3);

    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --accent: #6366f1; /* Indigo */
    --accent-glow: rgba(99, 102, 241, 0.4);
    --accent-light: #818cf8;

    --emerald: #10b981;
    --emerald-dim: rgba(16, 185, 129, 0.15);
    --emerald-glow: rgba(16, 185, 129, 0.4);

    --blue: #3b82f6;
    --blue-dim: rgba(59, 130, 246, 0.15);

    --purple: #8b5cf6;
    --purple-dim: rgba(139, 92, 246, 0.15);

    --orange: #f59e0b;
    --orange-dim: rgba(245, 158, 11, 0.15);

    --red: #ef4444;
    --red-dim: rgba(239, 68, 68, 0.15);

    --font-heading: 'Outfit', sans-serif;
    --font-main: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-lg: 24px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Premium background with glowing orbs */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; color: #fff; letter-spacing: -0.02em; }
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }

.text-emerald { color: var(--emerald); }
.text-blue    { color: var(--blue); }
.text-purple  { color: var(--purple); }
.text-orange  { color: var(--orange); }
.text-red     { color: var(--red); }
.text-gray    { color: var(--text-muted); }
.text-sm      { font-size: 0.85rem; }
.text-center  { text-align: center; }
.font-mono    { font-variant-numeric: tabular-nums; }

.bg-emerald-dim { background-color: var(--emerald-dim); color: var(--emerald); }
.bg-blue-dim    { background-color: var(--blue-dim); color: var(--blue); }
.bg-purple-dim  { background-color: var(--purple-dim); color: var(--purple); }
.bg-orange-dim  { background-color: var(--orange-dim); color: var(--orange); }
.bg-red-dim     { background-color: var(--red-dim); color: var(--red); }

/* Glass Panel Utilities */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.page { display: none; animation: fadeIn 0.4s ease forwards; }
.page.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Layout */
.app-container { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
    width: 260px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}
.logo i {
    color: transparent;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    font-size: 1.6rem;
}
.logo span { color: #fff; }

.nav-menu { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.nav-section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin: 16px 0 8px 12px;
    font-weight: 600;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}
.nav-item i { width: 20px; text-align: center; font-size: 1.1rem; transition: var(--transition); }
.nav-item:hover { color: #fff; background: rgba(255,255,255,0.03); }
.nav-item:hover i { color: var(--accent-light); transform: scale(1.1); }
.nav-item.active {
    background: linear-gradient(90deg, rgba(99,102,241,0.15), transparent);
    color: #fff;
    border-left: 3px solid var(--accent);
}
.nav-item.active i { color: var(--accent); }

.hot-tag {
    background: var(--orange-dim);
    color: var(--orange);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 260px);
}

/* Header & Filters */
.top-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.header-title-group h1 {
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    color: transparent;
}
.header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 25, 40, 0.4);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
}
.filter-group { display: flex; gap: 12px; flex-wrap: wrap; flex: 1; }
.glass-select {
    appearance: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 10px 36px 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2394a3b8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 14px top 50%;
    background-size: 10px auto;
}
.glass-select:hover, .glass-select:focus {
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.06);
}
.glass-select option { background: var(--bg-main); color: #fff; }

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    transition: var(--transition);
    min-width: 280px;
}
.search-bar:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.search-bar i { color: var(--text-muted); }
.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 12px;
    width: 100%;
    outline: none;
    font-family: var(--font-main);
    font-size: 0.9rem;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.stat-card {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}
.stat-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.stat-info { display: flex; flex-direction: column; gap: 4px; z-index: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.stat-value { font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.2; font-family: var(--font-heading); }

/* Charts */
.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}
.chart-container { padding: 24px; height: 400px; display: flex; flex-direction: column; }
.chart-container h3 { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: var(--text-main); }
.chart-container h3 i { color: var(--accent); }
.chart-wrapper { flex: 1; position: relative; min-height: 0; }

/* Data Table */
.section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
}
.btn-export {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 12px var(--accent-glow);
}
.btn-export:hover { transform: translateY(-2px); box-shadow: 0 6px 16px var(--accent-glow); filter: brightness(1.1); }

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: rgba(0,0,0,0.1);
}
.data-table { width: 100%; min-width: 1200px; border-collapse: separate; border-spacing: 0; text-align: left; }
th {
    padding: 16px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-light);
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
th:hover { color: #fff; background: rgba(0,0,0,0.3); }
th i { margin-left: 6px; font-size: 0.7rem; opacity: 0.5; }
td {
    padding: 16px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    vertical-align: middle;
}
tr { transition: var(--transition); cursor: pointer; }
tr:hover td { background: rgba(255,255,255,0.04); }
tr:last-child td { border-bottom: none; }

.id-col { color: var(--text-dim); font-family: var(--font-heading); font-size: 0.85rem; }
.name-col { font-weight: 500; color: #fff; max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-col { font-family: var(--font-heading); font-weight: 600; color: var(--emerald); }
.status-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
    border: 1px solid transparent;
}
.status-active { background: var(--emerald-dim); color: var(--emerald); border-color: rgba(16,185,129,0.3); }
.status-pending { background: var(--orange-dim); color: var(--orange); border-color: rgba(245,158,11,0.3); }
.status-closed { background: var(--red-dim); color: var(--red); border-color: rgba(239,68,68,0.3); }

/* Pagination */
.pagination {
    display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.page-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}
.page-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.page-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 4px 12px var(--accent-glow); }
.page-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===========================
   Premium Modal & AI Panel
   =========================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.show { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    width: 90%; max-width: 900px; max-height: 90vh;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95) translateY(20px);
    opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.modal-overlay.show .modal-content { transform: scale(1) translateY(0); opacity: 1; }

.modal-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 24px 32px; border-bottom: 1px solid var(--border-light);
    background: rgba(255,255,255,0.02);
}
.modal-title-area { display: flex; flex-direction: column; gap: 8px; }
.modal-title { font-size: 1.4rem; color: #fff; padding-right: 20px; line-height: 1.3; }
.modal-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
}
.modal-close {
    background: rgba(255,255,255,0.05); border: none; color: var(--text-muted);
    width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); font-size: 1.1rem;
}
.modal-close:hover { background: var(--red-dim); color: var(--red); transform: rotate(90deg); }

.modal-body {
    padding: 32px; overflow-y: auto; display: flex; flex-direction: column; gap: 32px;
}

/* Modal Stats Grid */
.modal-main-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px;
}
.m-stat-box {
    background: rgba(255,255,255,0.02); border: 1px solid var(--border-light);
    border-radius: var(--radius-sm); padding: 16px;
    display: flex; flex-direction: column; gap: 8px;
}
.m-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.m-stat-value { font-size: 1.2rem; font-weight: 700; color: #fff; font-family: var(--font-heading); }

/* Details Grid */
.modal-details-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    background: rgba(0,0,0,0.2); padding: 20px; border-radius: var(--radius-sm);
}
.detail-item { display: flex; align-items: flex-start; gap: 12px; }
.detail-icon {
    width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0;
}
.detail-content { display: flex; flex-direction: column; }
.detail-title { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 2px; }
.detail-text { font-size: 0.9rem; color: #fff; font-weight: 500; }

/* AI Panel Redesign */
.ai-analysis-panel {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(30, 27, 75, 0.6) 100%);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}
.ai-analysis-panel::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--purple), var(--emerald));
}
.ai-panel-header {
    display: flex; align-items: center; gap: 12px; padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ai-panel-header .ai-icon {
    font-size: 1.4rem; background: var(--bg-main); width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center; border-radius: 10px;
}
.ai-panel-header h3 { flex: 1; font-size: 1.1rem; margin: 0; background: linear-gradient(to right, #fff, #a5b4fc); -webkit-background-clip: text; color: transparent; }
.ai-model-tag { font-size: 0.7rem; background: rgba(99,102,241,0.2); color: #a5b4fc; padding: 4px 10px; border-radius: 20px; font-weight: 600; border: 1px solid rgba(99,102,241,0.3); }

.ai-loading {
    display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 40px; color: var(--text-muted);
}
.ai-loader-ring {
    width: 48px; height: 48px; border: 3px solid rgba(99,102,241,0.1);
    border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite;
}

.ai-result { display: flex; flex-direction: column; }
.ai-top-row {
    display: flex; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ai-score-box {
    padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.05); min-width: 160px;
}
.ai-score-circle {
    width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 800; font-family: var(--font-heading); margin-bottom: 8px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5); border: 4px solid #334155;
}
.ai-score-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; text-align: center;}

.ai-verdict-box {
    flex: 1; padding: 24px; display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.ai-verdict-badge {
    align-self: flex-start; padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 1rem; border: 1px solid transparent;
}
.ai-rec-text { font-size: 0.95rem; color: var(--text-main); line-height: 1.6; }

.ai-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05);
}
.ai-grid-item {
    background: rgba(17, 24, 39, 0.6); padding: 20px 24px;
}
.ai-grid-title { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }

.ai-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ai-list li {
    font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; padding-left: 20px; position: relative;
}
.ai-list li::before {
    content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%;
}
.ai-list.strengths li::before { background: var(--emerald); }
.ai-list.risks li { padding-left: 24px; }
.ai-list.risks li::before { content: '⚠️'; background: none; width: auto; height: auto; left: 0; top: 2px; font-size: 0.8rem; }
.ai-list.insights li::before { background: var(--blue); }

.ai-error { padding: 30px; text-align: center; color: var(--red); font-weight: 500; }

/* Modal Description */
.modal-desc-section h4 { margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
.modal-desc-section p {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
    background: rgba(0,0,0,0.2); padding: 20px; border-radius: var(--radius-sm);
}

.btn-source {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
    color: #fff; text-decoration: none; padding: 16px; border-radius: var(--radius-sm);
    font-weight: 600; transition: var(--transition);
}
.btn-source:hover { background: rgba(255,255,255,0.1); border-color: var(--accent); color: var(--accent-light); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* Responsive */
@media (max-width: 1024px) {
    .charts-grid { grid-template-columns: 1fr; }
    .modal-details-grid { grid-template-columns: 1fr; }
    .ai-top-row { flex-direction: column; }
    .ai-score-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); flex-direction: row; gap: 20px; padding: 16px 24px; justify-content: flex-start; }
    .ai-score-circle { width: 60px; height: 60px; font-size: 1.5rem; margin: 0; }
    .ai-score-label { text-align: left; }
    .ai-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .app-container { flex-direction: column; }
    .sidebar { width: 100%; height: auto; padding: 16px; border-right: none; border-bottom: 1px solid var(--border-light); position: relative; z-index: auto;}
    .nav-menu { flex-direction: row; overflow-x: auto; padding-bottom: 8px; }
    .nav-section-label { display: none; }
    .nav-item { white-space: nowrap; }
    .main-content { width: 100%; padding: 20px; }
    .header-actions { flex-direction: column; align-items: stretch; }
    .modal-main-stats { grid-template-columns: 1fr; }
}

/* Photo Gallery */
.modal-photos-container {
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
}
.photos-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
}
.photos-grid img {
    height: 120px;
    width: auto;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-light);
    object-fit: cover;
    cursor: zoom-in;
    transition: var(--transition);
}
.photos-grid img:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}
.photos-grid::-webkit-scrollbar { height: 6px; }
.photos-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
