/* CATALOG BLUE STYLES */

/* Section Background */
.blue-catalog-section {
    padding: 4rem 0 8rem 0;
    background-color: #0b1c33;
    /* Deep Blue */
    color: #FFFFFF;
}

/* Base Variables match style.css */
:root {
    --color-gold: #D4AF37;
    --color-deep-blue: #0b1c33;
}

/* GRID LAYOUT */
.blue-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    /* Increased from 3rem */
    margin-top: 4rem;
}

@media (max-width: 1100px) {
    .blue-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blue-catalog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* CARD DESIGN (Minimalist / Floating) */
.blue-model-card {
    background: transparent;
    /* No background */
    border: none;
    /* No border */
    border-radius: 0;
    padding: 0;
    /* No internal padding */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
}

.blue-model-card:hover {
    transform: translateY(-10px);
}

/* Title */
.blue-model-title {
    font-family: 'Outfit', sans-serif;
    /* Fallback to sans-serif if font not loaded */
    font-size: 2rem;
    color: #FFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    /* Match prototype */
    letter-spacing: 0.05em;
}

/* Image Wrapper */
.blue-model-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0.5rem;
    /* Reduced spacing to specs */
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue-model-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    /* Constrain height */
    object-fit: contain;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    /* Shadow on image instead of card */
}

.blue-model-card:hover .blue-model-image {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Tag (Size) - Floating Bubble */
/* Tag (Size) - Floating Bubble */
.blue-model-tag {
    position: absolute;
    top: -10px;
    /* Move down */
    right: 5%;
    /* Move inward to touch image */
    background: #FFF;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    font-size: 0.9rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    /* Ensure on top */
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(15deg);
    /* Slight jaunty angle */
    transform: rotate(15deg);
    /* Slight jaunty angle */
}

/* Specs */
.blue-model-specs-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    /* Tighter gap between dim and vol */
    margin-bottom: 1rem;
    /* Reduced to move button up */
    width: 100%;
    /* No border top in minimalist */
    padding-top: 0.5rem;
}

.blue-model-dim,
.blue-model-vol {
    font-size: 1.5rem;
    /* Match local: Larger Dim */
    color: #FFF;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    /* Use Heading font for nums */
    letter-spacing: 0.05em;
}

.blue-model-vol {
    font-size: 1rem;
    /* Smaller Vol */
    font-weight: 400;
    opacity: 0.7;
    margin-top: -5px;
    /* Pull closer to dim */
}

/* Actions */
.blue-model-actions {
    margin-top: auto;
}

.btn-blue-discover {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Softer border */
    color: #FFF;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    border-radius: 4px;
    /* Slight radius */
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle background */
}

.btn-blue-discover:hover {
    background: #FFF;
    border-color: #FFF;
    color: var(--color-deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FILTERS (Imported from filters.css logic but themed Blue) */
/* Kept the capsule style for filters as it looks good on blue */
.filters-container {
    background: rgba(11, 28, 51, 1);
    /* Match background to hide behind */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 0 auto 4rem auto;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.filter-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0.8;
}

.filter-options {
    display: flex;
    gap: 0px;
    /* Connected buttons */
    background: #050f1e;
    /* Darker than bg */
    padding: 4px;
    border-radius: 50px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #FFF;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--color-gold);
}

.filter-btn.active {
    background: #FFF;
    color: #0b1c33;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.active-filters-summary {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: auto;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .active-filters-summary {
        margin-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
    }
}