/* ==========================================
   Catalog Page Styling
========================================== */

.catalog-page {
    padding-top: 10px;
}
.catalog-page .catalog-card-body h5 {
    color: #ffffff !important;
}
/* ------------------------------------------
   Card
------------------------------------------ */

.catalog-page .card {
    background: #111827; /* modern dark slate */
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.catalog-page .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* ------------------------------------------
   Image
------------------------------------------ */

.catalog-page .card-img-top {
    height: 220px;
    object-fit: cover;
    background: #1f2937;
}
.catalog-image-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
    overflow: hidden;
}

.catalog-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
/* ------------------------------------------
   Card Body
------------------------------------------ */

.catalog-card-body {
    background: #0f172a;
    color: #e5e7eb;
    padding: 16px;
}

/* Product Name */
.catalog-card-body .card-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Product Code */
.catalog-card-body .card-subtitle {
    font-size: 0.85rem;
    color: #9ca3af !important;
}

/* ------------------------------------------
   Pricing Section
------------------------------------------ */

.catalog-card-body ul {
    margin-top: 10px;
}

.catalog-card-body ul li {
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

/* Highlight cost */
.catalog-card-body ul li:first-child {
    font-weight: 600;
    color: #22c55e; /* green */
}

/* MSRP subtle */
.catalog-card-body ul li:nth-child(2) {
    color: #fbbf24;
}

/* ------------------------------------------
   Booking Info
------------------------------------------ */

.catalog-card-body .small {
    background: rgba(255,255,255,0.04);
    padding: 6px 8px;
    border-radius: 8px;
}

/* ------------------------------------------
   Pagination
------------------------------------------ */

.pagination .page-link {
    background: #111827;
    color: #e5e7eb;
    border: 1px solid rgba(255,255,255,0.08);
}

.pagination .page-link:hover {
    background: #1f2937;
    color: #ffffff;
}

.pagination .page-item.disabled .page-link {
    background: #0f172a;
    color: #6b7280;
}

.catalog-page .badge {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 6px;
}

.catalog-page .badge.bg-success {
    background: #16a34a !important;
}

.catalog-page .badge.bg-warning {
    background: #facc15 !important;
    color: #000 !important;
}