/* ============================================================
   SHOP & SHOP ADMIN — Modern & Mobile-First Styles
   ============================================================ */

:root {
    --primary:       #1B8F4B;
    --primary-hover: #167A3F;
    --accent:        #39B86C;
    --accent-hover:  #2E9C5C;
    --sidebar-bg:    #14532D;
    --bg:            #F8FAF8;
    --surface:       #ffffff;
    --border:        #DCE8DF;
    --border-dark:   #C3D6C8;
    --text:          #1F2937;
    --text-muted:    #6b7280;
    --text-light:    #9ca3af;
    --success:       #2EAD5A;
    --warning:       #F59E0B;
    --danger:        #DC3545;
    --info:          #0ea5e9;
    --purple:        #7c3aed;
    --sidebar-w:     260px;
    --radius:        16px;
    --radius-sm:     8px;
    --shadow-sm:     0 1px 3px rgba(31,41,55,.06), 0 1px 2px rgba(31,41,55,.05);
    --shadow:        0 4px 16px rgba(31,41,55,.08);
    --shadow-lg:     0 10px 40px rgba(31,41,55,.14);
    --transition:    0.2s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { font-size: 16px; }

body {
    font-family: 'Work Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 99px; }

/* ============================================================
   LAYOUT
   ============================================================ */

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
    width: var(--sidebar-w);
    background: var(--sidebar-bg);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    z-index: 200;
    transition: transform var(--transition);
    overflow-y: auto;
}

.sidebar-header {
    padding: 1.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: var(--accent);
}

.sidebar-nav {
    padding: 0.75rem 0;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all var(--transition);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1px 0;
}

.nav-link span { font-size: 1.1rem; flex-shrink: 0; }

.nav-link:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
    border-left-color: rgba(255,255,255,.3);
}

.nav-link.active {
    background: rgba(57,184,108,.16);
    color: var(--accent);
    border-left-color: var(--accent);
    font-weight: 600;
}

/* Sidebar close btn (mobile only) */
.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px;
}

/* Overlay behind sidebar on mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 199;
    backdrop-filter: blur(2px);
}

.sidebar-overlay.show { display: block; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.main-content {
    flex: 1;
    min-width: 0;
    margin-left: var(--sidebar-w);
    display: flex;
    flex-direction: column;
}

/* ── Top Bar ── */
.top-bar {
    background: var(--surface);
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    color: var(--text);
    flex-shrink: 0;
    transition: background var(--transition);
}
.hamburger:hover { background: var(--bg); }
.hamburger svg { display: block; }

.top-bar h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Content Sections ── */
.content-section {
    display: none;
    padding: 1.5rem;
    flex: 1;
}

.content-section.active { display: block; }

/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-header h3,
.section-header > div h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.2px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,143,75,.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1.25rem;
    background: var(--surface);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-success, .btn-danger, .btn-info, .btn-warning {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.78rem;
    transition: opacity var(--transition), transform var(--transition);
    white-space: nowrap;
    margin-right: 4px;
}

.btn-success:hover, .btn-danger:hover,
.btn-info:hover, .btn-warning:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-success  { background: var(--success); color: #fff; }
.btn-danger   { background: var(--danger);  color: #fff; }
.btn-info     { background: var(--info);    color: #fff; }
.btn-warning  { background: var(--warning); color: #fff; }

/* ============================================================
   STAT CARDS
   ============================================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--surface);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: box-shadow var(--transition), transform var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.stat-card h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-container {
    background: var(--surface);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-container h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}

.form-group {
    margin-bottom: 0.875rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--radius-sm);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    background: var(--surface);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,143,75,.15);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    accent-color: var(--accent);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ============================================================
   IMAGE UPLOADER (admin/image-uploader.js)
   ============================================================ */

.img-uploader__pick-btn,
.img-uploader__add-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    height: 100%;
    background: var(--bg);
    border: 2px dashed var(--border-dark);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.img-uploader__pick-btn:hover,
.img-uploader__add-tile:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(27, 143, 75, .05);
}
.img-uploader__pick-icon { font-size: 1.4rem; line-height: 1; }

/* ---------- Single (main image) ---------- */
.img-uploader--single .img-uploader__slot {
    position: relative;
    width: 180px;
    height: 180px;
}
/* Banners are a wide 2.4:1 crop (recommended 1920x800), not the product
   uploader's square thumbnail — same component, differently sized slot. */
.img-uploader--banner .img-uploader__slot {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 2.4 / 1;
    height: auto;
}
.img-uploader__slot--drag-over {
    outline: 2px dashed var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}
.img-uploader__preview {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}
.img-uploader__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.img-uploader__hover-actions {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(31, 41, 55, 0);
    opacity: 0;
    transition: opacity var(--transition), background var(--transition);
}
.img-uploader__preview:hover .img-uploader__hover-actions {
    opacity: 1;
    background: rgba(31, 41, 55, .55);
}
.img-uploader__change-btn {
    background: #fff;
    color: var(--text);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}
.img-uploader__remove-btn {
    background: var(--danger);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- Progress / error overlays (shared) ---------- */
.img-uploader__progress-overlay,
.img-uploader__error-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    text-align: center;
}
.img-uploader__progress-overlay { background: rgba(31, 41, 55, .55); }
.img-uploader__error-overlay {
    background: rgba(220, 53, 69, .92);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}
.img-uploader__error-overlay--compact { font-size: 0.68rem; padding: 0.35rem; }
.img-uploader__spinner {
    width: 26px;
    height: 26px;
    border: 3px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: img-uploader-spin 0.8s linear infinite;
}
@keyframes img-uploader-spin { to { transform: rotate(360deg); } }
.img-uploader__progress-track {
    width: 80%;
    height: 5px;
    background: rgba(255, 255, 255, .3);
    border-radius: 99px;
    overflow: hidden;
}
.img-uploader__progress-bar {
    height: 100%;
    background: #fff;
    transition: width 0.15s ease;
}
.img-uploader__error-actions {
    display: flex;
    gap: 0.4rem;
}
.img-uploader__retry-btn {
    background: #fff;
    color: var(--danger);
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
}
.img-uploader--single .img-uploader__error-actions .img-uploader__remove-btn {
    width: auto;
    height: auto;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ---------- Multi (additional images) ---------- */
.img-uploader__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
}
.img-uploader__thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: grab;
    transition: opacity var(--transition), box-shadow var(--transition);
}
.img-uploader__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.img-uploader__thumb--dragging { opacity: 0.4; }
.img-uploader__thumb--drop-target { box-shadow: 0 0 0 3px var(--primary) inset; }
.img-uploader__remove-btn--thumb {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 2;
}
.img-uploader__drag-handle {
    position: absolute;
    bottom: 2px;
    left: 4px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
    font-size: 0.9rem;
    pointer-events: none;
}
.img-uploader--multi .img-uploader__add-tile {
    aspect-ratio: 1 / 1;
    font-size: 0.72rem;
}

/* ============================================================
   TABLES
   ============================================================ */

.table-container {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 600px;
}

.data-table thead {
    background: var(--primary);
    color: #fff;
}

.data-table th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.data-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

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

.data-table tbody tr {
    transition: background var(--transition);
}

.data-table tbody tr:hover { background: var(--bg); }

.product-img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* ============================================================
   STATUS BADGES
   ============================================================ */

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.status-visible    { background: #dcfce7; color: #15803d; }
.status-hidden     { background: var(--border); color: var(--text-muted); }
.status-pending    { background: #fef9c3; color: #92400e; }
.status-completed  { background: #dcfce7; color: #15803d; }
.status-processing { background: #dbeafe; color: #1d4ed8; }
.status-shipped    { background: #e0f2fe; color: #0369a1; }
.status-delivered  { background: #dcfce7; color: #15803d; }
.status-cancelled  { background: #fee2e2; color: #b91c1c; }
.status-refunded   { background: #ede9fe; color: #6d28d9; }

/* ============================================================
   LOGS TABLE
   ============================================================ */

#logsTableBody td {
    padding: 7px 1rem;
    vertical-align: middle;
}

/* ============================================================
   RECENT ORDERS
   ============================================================ */

.recent-orders {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.recent-orders h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.order-item {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

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

/* ============================================================
   REPORTS
   ============================================================ */

.report-controls {
    background: var(--surface);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    align-items: flex-end;
}

.report-controls .form-group {
    flex: 1;
    min-width: 160px;
    margin-bottom: 0;
}

.stats-summary {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   MODAL
   ============================================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(3px);
    padding: 1rem;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modal-in .2s ease;
}

.modal-content.large { max-width: 820px; }

@keyframes modal-in {
    from { opacity:0; transform:scale(.96) translateY(8px); }
    to   { opacity:1; transform:scale(1)  translateY(0);    }
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    flex: 1;
}

.modal-close {
    background: var(--bg);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
    margin-left: auto;
}

.modal-close:hover {
    background: var(--danger);
    color: #fff;
}

/* ============================================================
   TOAST (if used)
   ============================================================ */

.toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: toast-in .25s ease;
}

@keyframes toast-in {
    from { opacity:0; transform:translateY(12px); }
    to   { opacity:1; transform:translateY(0);    }
}

/* ============================================================
   MOBILE — ≤ 768px
   ============================================================ */

@media (max-width: 768px) {

    /* Sidebar off-canvas */
    .sidebar {
        transform: translateX(-100%);
        box-shadow: var(--shadow-lg);
    }

    .sidebar.open { transform: translateX(0); }

    .sidebar-close { display: block; }

    /* Main fills full width */
    .main-content { margin-left: 0; }

    /* Show hamburger */
    .hamburger { display: flex; }

    /* Top bar tighter */
    .top-bar { padding: 0.75rem 1rem; }
    .top-bar h2 { font-size: 1.1rem; }
    .user-info span { display: none; }

    /* Content padding */
    .content-section { padding: 1rem; }

    /* Stats 2-col on mobile */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .stat-number { font-size: 1.5rem; }

    /* Forms single column */
    .form-row { grid-template-columns: 1fr; }
    .form-actions { flex-direction: column; }
    .form-actions .btn-primary,
    .form-actions .btn-secondary { width: 100%; justify-content: center; }

    /* Section header stack */
    .section-header { flex-direction: column; align-items: stretch; }
    .section-header .btn-primary { width: 100%; justify-content: center; }

    /* Report controls stack */
    .report-controls { flex-direction: column; }
    .report-controls .form-group { min-width: 0; }
    .report-controls .btn-primary { width: 100%; justify-content: center; }

    /* Modal full-screen */
    .modal { padding: 0; align-items: flex-end; }
    .modal-content {
        max-width: 100%;
        border-radius: var(--radius) var(--radius) 0 0;
        max-height: 92vh;
    }

    /* Table scroll hint */
    .table-container::after {
        content: '';
        display: block;
    }
}

/* ============================================================
   SMALL PHONES — ≤ 480px
   ============================================================ */

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .stat-card { padding: 0.875rem 1rem; }
    .stat-number { font-size: 1.35rem; }
    .content-section { padding: 0.75rem; }
}
