/* ===========================================
   Listings Pages CSS - Extracted inline styles
   =========================================== */

/* ==========================================
   Banniere Details
   ========================================== */
.banniere-details-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.banniere-details-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.banniere-image-wrapper {
    width: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.banniere-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.banniere-description {
    padding: 2rem;
}

.banniere-description-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.banniere-description-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.banniere-back {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e0e0e0;
}

.banniere-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.banniere-back-btn:hover {
    background: #e55a2b;
    transform: translateX(-4px);
}

.banniere-back-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .banniere-image-wrapper {
        min-height: 250px;
    }

    .banniere-description {
        padding: 1.5rem;
    }

    .banniere-description-title {
        font-size: 1.25rem;
    }

    .banniere-back {
        padding: 1rem 1.5rem;
    }
}

/* ==========================================
   Category Page - Banniere
   ========================================== */
.banniere-container {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.banniere-link {
    display: block;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banniere-link:hover {
    transform: scale(1.02);
}

.banniere-container .banniere-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banniere-container .banniere-image {
        max-height: 200px;
    }

    .banniere-container {
        margin: 1rem 0;
    }
}

.banniere-service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 15px 10px;
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================
   Checkout - Selected Indicator
   ========================================== */
[data-selected-indicator] {
    transition: all 0.2s ease-in-out;
}

[data-selected-indicator] .peer:checked+* {
    padding: 10px;
    border-color: #f97316;
    background-color: #fff7ed;
}

/* ==========================================
   Details - Splide Slider
   ========================================== */
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================
   Listings By User
   ========================================== */
.listings-by-user-container {
    max-width: 1200px;
    margin: 0 auto;
}

.listings-by-user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.listings-by-user-title {
    font-size: 2rem;
    font-weight: 600;
}

.listings-by-user-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 448px) {
    .listings-by-user-container {
        padding: 2.5rem;
    }
}

/* ==========================================
   Signal Page
   ========================================== */
.signal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.signal-message-container {
    margin-bottom: 1rem;
}

.signal-form-wrapper {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
}

.signal-form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.signal-form-description {
    margin-bottom: 1rem;
}

.signal-form-group {
    margin-bottom: 1.25rem;
}

.signal-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #444;
}

.signal-textarea {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    resize: vertical;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
    box-sizing: border-box;
}

.signal-btn {
    background: #ff8000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: background 0.2s;
}

.signal-btn:hover {
    background: #e66a00;
}

.signal-alert {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    border: 1px solid transparent;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.signal-alert-success {
    background-color: #f0fdf4;
    color: #037b24;
    border-color: #bbf7d0;
}

.signal-alert-error {
    background-color: #fef2f2;
    color: #c81e1e;
    border-color: #fecaca;
}
