/* Porte PVC - Catalogo page (layout like products.html) */

/* Hero title: top center */
.main-content .products-hero .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content .products-hero h1 {
    margin-top: 0;
}

/* Ensure header matches other pages */
#header-container {
    position: relative;
    z-index: 1030;
    width: 100%;
}

#header-container .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1030 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: 0 2px 20px rgba(30, 58, 138, 0.1);
}

#header-container .header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Catalog actions (below filter-header, same section as products filter) */
.catalog-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.catalog-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* PDF viewer block */
.porte-pvc-pdf-wrap {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.porte-pvc-pdf-iframe {
    width: 100%;
    height: 75vh;
    min-height: 500px;
    border: 0;
    display: block;
}

.porte-pvc-pdf-open-link {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: #6B7280;
    text-align: center;
}

.porte-pvc-pdf-open-link a {
    color: #3B82F6;
    font-weight: 600;
}

/* Gallery image (inside products-grid-section) */
.porte-pvc-gallery-grid {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.porte-pvc-gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quote form section */
.porte-pvc-quote {
    padding: 4rem 0;
    background: #F8FAFC;
}

.porte-pvc-form-wrap {
    max-width: 560px;
    margin: 0 auto 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.porte-pvc-contact-info {
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
}

.porte-pvc-contact-info p {
    margin-bottom: 0.5rem;
}

.porte-pvc-contact-info i {
    margin-right: 0.5rem;
    color: #1e3a8a;
}

@media (max-width: 768px) {
    .catalog-actions {
        flex-direction: column;
    }

    .catalog-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Make PDF block more comfortable on tablets/phones */
    .porte-pvc-pdf-wrap {
        margin: 0 auto 1.5rem;
        border-radius: 6px;
    }

    .porte-pvc-pdf-iframe {
        height: 60vh;
        min-height: 360px;
    }

    .porte-pvc-pdf-open-link {
        padding: 0.75rem 1rem 1rem;
    }

    .porte-pvc-form-wrap {
        padding: 1.5rem;
    }
}
