/* On product pages, header is display-only — don't block banner clicks */
.product-page .header {
    pointer-events: none;
}
.product-page .header .logo {
    pointer-events: auto;
}

/* Logo bar above banner */
.pd-logo-bar {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Banner */
.pd-banner {
    position: relative;
    height: 104px;
    overflow: hidden;
}
.pd-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.pd-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(30 20 10 / 14%) 0%, rgb(30 20 10 / 0%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.pd-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    pointer-events: auto;
}
.pd-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 7px 14px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: all 0.25s ease;
    background: transparent;
    position: relative;
    z-index: 10;
}
.pd-back-btn:hover {
    border-color: white;
    background: rgba(255,255,255,0.15);
    color: white;
}
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin: auto 0;
}
.pd-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.pd-breadcrumb a:hover { color: #f0692d; }
.pd-breadcrumb span { color: rgba(255,255,255,0.9); }
.pd-banner-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

/* Main section */
.pd-section { padding: 70px 0 90px; }
.pd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* Image col */
.pd-img-wrap {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.pd-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 380px;
}

/* Prev/Next nav */
.pd-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    gap: 12px;
}
.pd-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    padding: 9px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    transition: all 0.25s ease;
}
.pd-nav-btn:hover {
    border-color: #f0692d;
    color: #f0692d;
    background: #fff4ef;
}

/* Content col */
.pd-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f0692d;
    opacity: 0.85;
    margin-bottom: 14px;
}
.pd-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    color: #2d2d2d;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.pd-desc {
    font-size: 14.5px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
}

/* Blocks */
.pd-block { margin-bottom: 28px; }
.pd-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f0692d;
    margin-bottom: 14px;
}

/* Features */
.pd-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.pd-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #444;
    line-height: 1.55;
}
.pd-features li::before {
    content: '';
    width: 7px; height: 7px;
    background: #d3d3d3;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Parameters */
.pd-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.pd-param-item {
    padding: 10px 14px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 12.5px;
    color: #444;
    font-weight: 500;
    transition: all 0.2s ease;
}
.pd-param-item:hover {
    border-color: #f0692d;
    background: #fff4ef;
    color: #2d2d2d;
}

/* Quote button */
.pd-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: #f0692d;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.25s ease;
}
.pd-quote-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* Footer */
.pd-footer {
    background: #2d2d2d;
    padding: 20px 0;
}
.pd-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 10px;
}
.pd-footer-inner a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.pd-footer-inner a:hover { color: #f0692d; }

/* Responsive */
@media (max-width: 768px) {
    .pd-grid { grid-template-columns: 1fr; gap: 36px; }
    .pd-banner { height: 200px; }
    .pd-params { grid-template-columns: 1fr; }
}

/* ── RELATED PRODUCTS ── */
.pd-related {
    padding: 70px 0 80px;
    background: #f7f5f3;
    border-top: 1px solid #e8e8e8;
}

.pd-related-header {
    margin-bottom: 36px;
}
.pd-related-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f0692d;
    margin-bottom: 8px;
}
.pd-related-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    letter-spacing: -0.01em;
}

.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.pd-related-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.pd-related-img {
    position: relative;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
}
.pd-related-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.35s ease;
}
.pd-related-card:hover .pd-related-img {
    border-color: #f0692d;
    box-shadow: 0 8px 28px rgba(240,105,45,0.15);
}
.pd-related-card:hover .pd-related-img img {
    transform: scale(1.06);
}

.pd-related-overlay {
    position: absolute;
    inset: 0;
    background: rgba(240,105,45,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
    border-radius: 12px;
}
.pd-related-card:hover .pd-related-overlay { opacity: 1; }
.pd-related-overlay span {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.pd-related-name {
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
    text-align: center;
    line-height: 1.4;
    transition: color 0.2s;
}
.pd-related-card:hover .pd-related-name { color: #f0692d; }

@media (max-width: 900px) {
    .pd-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}
