/* Modern Door Page Styles */
.adoro-page, .inotherm-page {
    max-width: 1200px;
    margin: 0 auto;
}

.door-hero {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.door-hero img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

/* Feature Cards */
.door-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.door-feature {
    background: var(--card-bg, #fafbfc);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.door-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.door-feature h3 {
    color: var(--mmt-primary, #199bcb);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--mmt-primary, #199bcb);
}

.door-feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.door-feature li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-primary, #374151);
}

.door-feature li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mmt-primary, #199bcb);
}

/* Series Sections */
.door-series {
    margin-bottom: 2.5rem;
}

.door-series-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mmt-primary, #199bcb);
    margin: 0 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color, #e5e7eb);
}

/* Door Gallery Grid */
.door-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.door-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg, #fafbfc);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.door-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.door-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: #fff;
    padding: 0.25rem;
}

.door-item-label {
    display: block;
    width: 100%;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary, #374151);
    text-align: center;
    background: var(--bg-secondary, #f3f4f6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 768px) {
    .door-features {
        grid-template-columns: 1fr;
    }
    .door-gallery {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 0.5rem;
    }
    .door-hero img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .door-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}
