/* =============================================
   SISTEM SURVEI KIP - STYLESHEET
   Simple, Elegant, Mobile-First Design
   ============================================= */

:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --secondary-color: #2196F3;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 8px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header h1 {
    font-size: 1.3rem;
    font-weight: 600;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-name {
    font-size: 0.9rem;
}

.btn-logout {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: rgba(255,255,255,0.3);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 60px);
}

.main-content {
    flex: 1;
    padding: 1.5rem;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    width: 250px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-nav a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.sidebar-nav a.active {
    background: var(--primary-color);
    color: var(--white);
    border-left: 4px solid var(--primary-dark);
}

.sidebar-nav i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}

.sidebar-overlay.active {
    display: block;
}

/* =============================================
   CARD
   ============================================= */
.card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #1976D2;
    box-shadow: var(--shadow-hover);
}

.btn-warning {
    background: var(--warning-color);
    color: var(--white);
}

.btn-warning:hover {
    background: #f57c00;
    box-shadow: var(--shadow-hover);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white);
}

.btn-danger:hover {
    background: #d32f2f;
    box-shadow: var(--shadow-hover);
}

.btn-sm {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
}

/* =============================================
   FORM
   ============================================= */
.form-group {
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: var(--danger-color);
}

/* =============================================
   FILE INPUT
   ============================================= */
.file-input-wrapper {
    position: relative;
    margin-top: 0.5rem;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s;
}

.file-input-label:hover {
    border-color: var(--primary-color);
    background: rgba(76, 175, 80, 0.05);
}

.file-input-wrapper.drag-active .file-input-label {
    border-color: var(--primary-color);
    background: rgba(76, 175, 80, 0.1);
}

.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.file-preview-item {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--danger-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================================
   SEARCH - DIPERBAIKI: Hapus tombol pencarian
   ============================================= */
.search-container {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bg-light);
    display: block;
}

.search-container form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-container .form-control {
    flex: 1;
    height: 42px;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 0.75rem;
}

.search-container .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Tombol reset pencarian */
.search-container .btn-sm {
    height: 42px;
    min-width: 42px;
    padding: 0 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =============================================
   DATA LIST
   ============================================= */
.data-list {
    list-style: none;
}

.data-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.3s;
}

.data-item:hover {
    background: var(--bg-light);
}

.data-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.data-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.data-item-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.data-item-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.data-item-info-item {
    font-size: 0.9rem;
    color: var(--text-light);
}

.data-item-images {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.data-item-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: zoom-in;
    transition: transform 0.3s;
}

.data-item-thumb:hover {
    transform: scale(1.05);
}

.data-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* =============================================
   DETAIL PAGE
   ============================================= */
.detail-container {
    padding: 1.5rem;
}

.detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.detail-info {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-info-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.detail-info-label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-info-value {
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem;
    text-align: center;
}

.gallery-item-actions {
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-actions {
    opacity: 1;
}

/* =============================================
   LIGHTBOX - PERBAIKAN: Tombol prev/next di tengah untuk mobile
   ============================================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transition: transform 0.3s;
}

/* Tombol Close - Kanan Atas */
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* Tombol Navigasi Prev/Next - Tengah Vertikal (DI ATAS GAMBAR) */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.25);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10003;
    pointer-events: all;
}

.lightbox-nav:hover {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.6);
}

.lightbox-prev {
    left: 8px;
}

.lightbox-next {
    right: 8px;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    z-index: 10001;
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.login-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mt-3 {
    margin-top: 1rem;
}

.text-center {
    text-align: center;
}

/* =============================================
   TABLE - Untuk halaman lain
   ============================================= */
.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.table thead {
    background: var(--primary-color);
    color: white;
}

.table th,
.table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

.table tbody tr:hover {
    background: var(--bg-light);
}

/* =============================================
   TABLE REPORT - TAMPILAN TABEL UNTUK DESKTOP & MOBILE
   ============================================= */
.table-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    border-top: 1px solid var(--border-color);
}

.table-report {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.table-report thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.table-report th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.table-report td {
    padding: 0.875rem 0.75rem;
    border: 1px solid var(--border-color);
    vertical-align: middle;
    font-size: 0.95rem;
}

.table-report tbody tr:nth-child(even) {
    background: #fafafa;
}

.table-report tbody tr:hover {
    background: var(--bg-light);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--bg-light);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.hide-mobile {
    display: inline;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* =============================================
   MEDIA QUERIES - MOBILE (MAX-WIDTH: 768PX)
   ============================================= */
@media (max-width: 768px) {
    /* Header */
    
    .desktop-gallery {
        display: none;
    }
    
    .mobile-gallery {
        display: block;
    }
    
    /* Mobile Scroll Hint */
    .mobile-scroll-hint {
        display: block !important;
    }
    
    .table-scroll-container::after {
        display: block;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .user-name {
        display: none;
    }
    
    /* Layout */
    .container {
        flex-direction: column;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    /* Sidebar */
    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        height: 100vh;
        z-index: 101;
        transition: left 0.3s;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    /* Card */
    .card-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .card-header h2 {
        font-size: 1rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn-sm {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    /* Form */
    .form-group {
        padding: 0 1rem;
    }
    
    /* SEARCH - DIPERBAIKI untuk Mobile */
    .search-container {
        padding: 0.875rem 1rem;
    }
    
    .search-container .form-control {
        height: 40px;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .search-container .btn-sm {
        height: 40px;
        min-width: 40px;
        padding: 0 0.6rem;
    }
    
    /* Data List */
    .data-item {
        padding: 1rem;
    }
    
    .data-item-title {
        font-size: 1rem;
    }
    
    .data-item-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .data-item-info-item {
        font-size: 0.85rem;
    }
    
    .data-item-actions {
        flex-wrap: wrap;
    }
    
    .data-item-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .data-item-thumb {
        width: 70px;
        height: 70px;
    }
    
    /* Detail */
    .detail-container {
        padding: 1rem;
    }
    
    .detail-info-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    /* LIGHTBOX - PERBAIKAN untuk Mobile: Tombol lebih besar dan jelas */
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255,255,255,0.5);
        top: 50%;
        transform: translateY(-50%);
        z-index: 10003;
        pointer-events: all;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-nav:active {
        background: rgba(0, 0, 0, 0.55);
        transform: translateY(-50%) scale(0.95);
    }
    
    
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.75);
        border: 3px solid rgba(255,255,255,0.4);
    }
    
    .lightbox-close:active {
        transform: rotate(90deg) scale(0.9);
    }
    
    .lightbox-counter {
        bottom: 25px;
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    /* TABLE REPORT - DIPERBAIKI untuk Mobile */
    .table-report {
        font-size: 0.85rem;
        min-width: 800px;
    }
    
    .table-report th,
    .table-report td {
        padding: 0.7rem 0.5rem;
    }
    
    .table-report th {
        font-size: 0.85rem;
    }
    
    /* Sticky first column pada mobile */
    .table-report th:first-child,
    .table-report td:first-child {
        position: sticky;
        left: 0;
        z-index: 5;
        box-shadow: 2px 0 4px rgba(0,0,0,0.08);
    }
    
    .table-report thead th:first-child {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        z-index: 11;
    }
    
    .table-report tbody td:first-child {
        background: white;
    }
    
    .table-report tbody tr:nth-child(even) td:first-child {
        background: #fafafa;
    }
    
    .table-report tbody tr:hover td:first-child {
        background: var(--bg-light);
    }
    
    /* Utility */
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: inline;
    }
    
    .badge {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.7rem !important;
    }
}

/* =============================================
   MEDIA QUERIES - SMALL MOBILE (MAX-WIDTH: 480PX)
   ============================================= */
@media (max-width: 480px) {
    .header h1 {
        font-size: 1rem;
    }
    
    .data-item-thumb {
        width: 60px;
        height: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .table-report {
        min-width: 700px;
        font-size: 0.8rem;
    }
    
    .table-report th,
    .table-report td {
        padding: 0.6rem 0.4rem;
    }
}

/* Gambar lightbox dengan kemampuan zoom & pan */
.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
    touch-action: none; /* Disable default touch behavior */
}

.lightbox-image.zoomed {
    cursor: move;
    max-width: none;
    max-height: none;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Penting untuk pan */
}

/* =============================================
   MOBILE SCROLL HINT
   ============================================= */
.mobile-scroll-hint {
    display: none;
    animation: pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {
    0%, 100% {
        background: #fff3cd;
    }
    50% {
        background: #ffe69c;
    }
}

/* =============================================
   GALLERY SWIPE - MOBILE
   ============================================= */
.mobile-gallery {
    display: none;
}

.desktop-gallery {
    display: grid;
}

.swipe-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.swipe-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    touch-action: pan-y;
}

.swipe-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4/3;
}

.swipe-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.swipe-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swipe-counter {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(0,0,0,0.5);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
}

.swipe-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.swipe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.swipe-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}


/* =============================================
   MEDIA QUERIES - DESKTOP (MIN-WIDTH: 769PX)
   ============================================= */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}