/* Glove certification landing — extends services interactive layout */

.gloves-hero-placeholder,
.asset-slot {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border: 2px dashed #94a3b8;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    min-height: 180px;
    color: #64748b;
}

.asset-slot i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
}

.asset-slot span {
    font-size: 0.85rem;
    font-weight: 600;
    max-width: 220px;
}

.asset-slot--banner {
    min-height: 100%;
    width: 100%;
    border-radius: 0;
    border: none;
    background: rgba(15, 23, 42, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.asset-slot--banner i,
.asset-slot--banner span {
    color: rgba(255, 255, 255, 0.85);
}

/* Image-only banner — copy and stats are baked into special_banner.jpg */
.page-banner--gloves {
    height: auto;
    min-height: 0;
    aspect-ratio: 2217 / 940;
    overflow: hidden;
}

.page-banner--gloves .banner-image img {
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 768px) {
    .page-banner--gloves {
        aspect-ratio: auto;
        min-height: 420px;
        height: auto !important;
    }

    .page-banner--gloves .banner-image img {
        object-position: 40% center;
    }
}

.detail-image .asset-slot {
    min-height: 150px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.detail-image .asset-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.gloves-trust-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 0;
}

.gloves-trust-bar .trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
}

.gloves-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.gloves-trust-bar .trust-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.detail-section-block {
    margin-bottom: 2rem;
}

.detail-section-block h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-section-block h4 i {
    color: var(--primary-color);
}

.testing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.testing-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testing-list li i {
    color: var(--success-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.testing-list li strong {
    display: block;
    margin-bottom: 2px;
}

.testing-list li span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.process-steps {
    display: grid;
    gap: 0.75rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.process-step .step-num {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step .step-body strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.process-step .step-body span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.timeline-estimate {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.ppe-category-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #1e40af;
}

.ppe-category-note strong {
    display: block;
    margin-bottom: 0.25rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.why-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.why-item i {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.why-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.why-item p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.gloves-types-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.gloves-types-tags span {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

.landing-cta-band {
    padding: 4rem 0;
    background: var(--gradient-hero);
    color: var(--text-white);
    text-align: center;
}

.landing-cta-band h2 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.landing-cta-band p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

.landing-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.landing-cta-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-primary {
    background: var(--text-white);
    color: var(--secondary-color);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
}

.btn-cta-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.gloves-gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gloves-gallery-strip .gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
    box-shadow: var(--shadow-md);
}

.gloves-gallery-strip .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .gloves-gallery-strip {
        grid-template-columns: 1fr;
    }
}
