:root {
    --pink: #e91e8c;
    --pink-dark: #c41775;
    --pink-light: #fce4f0;
    --blue: #1e88e5;
    --blue-dark: #1565c0;
    --blue-light: #e3f2fd;
    --sidebar-dark: #1a1d2e;
    --sidebar-hover: #252a40;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --bg-light: #f5f7fa;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.text-pink { color: var(--pink) !important; }
.text-blue { color: var(--blue) !important; }
.bg-pink { background-color: var(--pink) !important; }
.bg-blue { background-color: var(--blue) !important; }

/* Buttons */
.btn-pink {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}
.btn-pink:hover, .btn-pink:focus {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    color: #fff;
}

.btn-blue {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}
.btn-blue:hover, .btn-blue:focus {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: #fff;
}

.btn-outline-pink {
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
}
.btn-outline-pink:hover {
    background: var(--pink);
    color: #fff;
}

.btn-outline-blue {
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
}
.btn-outline-blue:hover {
    background: var(--blue);
    color: #fff;
}

.btn-primary {
    background: var(--blue);
    border-color: var(--blue);
    border-radius: 50px;
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn-outline-primary {
    border-color: var(--blue);
    color: var(--blue);
    border-radius: 50px;
}
.btn-outline-primary:hover { background: var(--blue); color: #fff; }

/* Public Nav */
.public-nav {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0.75rem 0;
}
.brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue), var(--pink));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}
.brand-text { font-weight: 700; font-size: 1.25rem; color: var(--text-dark); }

/* Hero */
.hero-section {
    position: relative;
    min-height: 520px;
    background: linear-gradient(135deg, #87CEEB 0%, #4A90D9 40%, #2E6DA4 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
}
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; }
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

/* Role Cards */
.role-cards { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.role-card {
    width: 280px;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    color: inherit;
}
.role-card.customer { background: var(--pink); color: #fff; }
.role-card.owner { background: var(--blue); color: #fff; }
.role-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}
.role-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.role-card .btn-role {
    background: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.role-card.customer .btn-role { color: var(--pink); }
.role-card.owner .btn-role { color: var(--blue); }
.role-card .btn-role {
    text-decoration: none;
    display: inline-block;
}
.role-card .btn-role:hover { opacity: 0.9; color: inherit; }

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: var(--bg-light);
}
.dashboard-sidebar {
    width: 260px;
    background: var(--sidebar-dark);
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    overflow-y: auto;
}
.sidebar-brand {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-icon-sm {
    width: 32px;
    height: 32px;
    background: var(--pink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}
.brand-icon-sm.owner { background: var(--blue); }
.sidebar-nav { padding: 1rem 0; }
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.sidebar-link:hover { color: #fff; background: var(--sidebar-hover); }
.sidebar-customer .sidebar-link.active {
    color: #fff;
    background: var(--sidebar-hover);
    border-left-color: var(--pink);
}
.sidebar-owner .sidebar-link.active {
    color: #fff;
    background: var(--sidebar-hover);
    border-left-color: var(--blue);
}
.sidebar-admin .sidebar-link.active {
    color: #fff;
    background: var(--sidebar-hover);
    border-left-color: #ffc107;
}

.dashboard-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.dashboard-topbar {
    background: #fff;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 900;
}
.sidebar-toggle-btn {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: var(--sidebar-dark);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}
.sidebar-toggle-btn:hover,
.sidebar-toggle-btn:focus {
    background: var(--sidebar-hover);
    color: #fff;
}
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.dashboard-content { padding: 2rem; flex: 1; }

.user-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pink-light);
    color: var(--pink);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}
.user-pill.owner { background: var(--blue-light); color: var(--blue); }
.user-pill.admin { background: #fff3cd; color: #856404; }

.notification-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--pink);
    color: #fff;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Page Headers */
.page-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.25rem; }
.page-subtitle { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Cards */
.content-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    border: none;
}
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    text-align: center;
}
.stat-card .stat-value { font-size: 2rem; font-weight: 700; color: var(--pink); }
.stat-card.owner .stat-value { color: var(--blue); }
.stat-card .stat-label { color: var(--text-muted); font-size: 0.85rem; }

/* Forms */
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid #dee2e6;
    padding: 0.65rem 1rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 140, 0.15);
}
.owner-form .form-control:focus, .owner-form .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.15);
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #dee2e6;
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}
.stepper-btn {
    background: #f8f9fa;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: background 0.2s;
}
.stepper-btn:hover { background: #e9ecef; }
.stepper-value {
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

/* Request Cards */
.request-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.date-badge {
    background: var(--pink-light);
    color: var(--pink);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}
.request-info { flex: 1; min-width: 200px; }
.request-info h5 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.request-meta { color: var(--text-muted); font-size: 0.85rem; }
.request-meta i { margin-right: 0.25rem; }
.bid-count {
    background: var(--blue-light);
    color: var(--blue);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Offer Cards */
.offer-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}
.offer-image {
    width: 120px;
    height: 90px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    cursor: zoom-in;
}
.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.price-deposit {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}
.gallery-main a {
    display: block;
    height: 100%;
    cursor: zoom-in;
}
.gallery-thumb {
    display: block;
    text-decoration: none;
}

/* Image lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.image-lightbox.show {
    display: flex;
}
.image-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.offer-details { flex: 1; min-width: 200px; }
.offer-details h5 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.offer-location { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.amenity-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.amenity-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.amenity-tag i { color: #28a745; }
.offer-price {
    text-align: right;
    min-width: 140px;
}
.offer-price .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
.offer-price .price-label { font-size: 0.8rem; color: var(--text-muted); }
.offer-actions { display: flex; flex-direction: column; gap: 0.5rem; min-width: 130px; }

/* Filter Chips */
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-chip {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
}
.filter-chip:hover, .filter-chip.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* Caravan Details */
.caravan-gallery { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.gallery-main {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 0.5rem; width: 100px; }
.gallery-thumb {
    width: 100px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    border: 2px solid transparent;
}
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--pink); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.spec-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; }
.spec-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.spec-item i { color: var(--blue); font-size: 1.1rem; }

.offer-summary-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
}
.offer-summary-card .total-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink);
}
.price-breakdown { font-size: 0.85rem; color: var(--text-muted); margin: 1rem 0; }
.price-breakdown .row { margin-bottom: 0.35rem; }

/* Payment Page */
.payment-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.booking-summary-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
}
.payment-form-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
}
.card-icons { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.card-icon {
    width: 40px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 2rem;
}
.auth-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
}
.auth-card .brand-icon { margin: 0 auto 1rem; }

/* Sections */
.section-light { background: var(--bg-light); padding: 4rem 0; }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
.how-step {
    text-align: center;
    padding: 1.5rem;
}
.how-step .step-num {
    width: 48px;
    height: 48px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

/* Mobile Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}
.mobile-bottom-nav a {
    flex: 1;
    text-align: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    padding: 0.25rem;
}
.mobile-bottom-nav a i { display: block; font-size: 1.25rem; margin-bottom: 0.15rem; }
.mobile-bottom-nav a.active { color: var(--pink); }

.site-footer { background: var(--sidebar-dark); color: rgba(255,255,255,0.6); }
.site-footer .brand-text { color: #fff; }

/* Status badges */
.badge-open { background: #d4edda; color: #155724; }
.badge-booked { background: var(--pink-light); color: var(--pink); }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-paid { background: #d4edda; color: #155724; }

/* Responsive */
@media (max-width: 991px) {
    .sidebar-toggle-btn { display: inline-flex; }
    .sidebar-overlay { display: block; }
    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }
    .dashboard-sidebar.show { transform: translateX(0); }
    .dashboard-main { margin-left: 0; width: 100%; }
    .dashboard-topbar { padding: 0.75rem 1rem; }
    .user-pill span { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .mobile-bottom-nav { display: flex; }
    .dashboard-content { padding: 1.25rem; padding-bottom: 80px; }
    .hero-title { font-size: 2rem; }
    .payment-layout { grid-template-columns: 1fr; }
    .caravan-gallery { flex-direction: column; }
    .gallery-thumbs { flex-direction: row; width: 100%; }
    .gallery-thumb { width: 80px; }
    .gallery-main { height: 250px; }
}

@media (max-width: 576px) {
    .role-cards { flex-direction: column; align-items: center; }
    .offer-card { flex-direction: column; text-align: center; }
    .offer-price, .offer-actions { text-align: center; width: 100%; }
    .offer-actions { flex-direction: row; justify-content: center; }
    .request-card { flex-direction: column; text-align: center; }
}

/* Caravan upload previews */
.upload-zone {
    border: 2px dashed #ced4da;
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    background: #fafbfc;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--blue);
    background: var(--blue-light);
}
.upload-zone i { font-size: 2rem; color: var(--blue); display: block; margin-bottom: 0.5rem; }
.upload-zone input[type="file"] { display: none; }

.upload-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.upload-preview-item {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #eee;
}
.upload-preview-item img,
.upload-preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.upload-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.upload-preview-remove:hover { background: #dc3545; }
.upload-preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.upload-preview-primary {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--blue);
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.upload-preview-saved { border: 2px solid var(--blue); }
.upload-preview-video .upload-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    pointer-events: none;
}
.upload-preview-video .upload-video-overlay i {
    font-size: 2rem;
    color: #fff;
}
.upload-progress-wrap {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--radius-sm);
}
.upload-progress-wrap .progress {
    height: 12px;
    border-radius: 6px;
}
.upload-progress-wrap .progress-bar {
    background: var(--blue);
    transition: width 0.15s ease;
}
.upload-progress-text {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 600;
}
.media-section-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* Owner caravan list */
.caravan-list-card {
    transition: box-shadow 0.2s, transform 0.2s;
}
.caravan-list-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.caravan-card-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 200px;
    text-decoration: none;
    color: inherit;
}
.caravan-card-link:hover {
    color: inherit;
}
.caravan-card-link .offer-details h5 {
    color: var(--blue);
}
.caravan-card-link:hover .offer-details h5 {
    text-decoration: underline;
}
.caravan-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 120px;
}
@media (max-width: 576px) {
    .caravan-list-card { flex-direction: column; align-items: stretch; }
    .caravan-card-link { flex-direction: column; text-align: center; }
    .caravan-card-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; }
}
