/**
 * product-detail-page.css
 * Ürün detay sayfası – Öz Anka design system
 * Namespace: .product-detail-page
 */

.product-detail-page {
    background: var(--bg-color);
    scroll-behavior: smooth;
}

/* ---- HEADER BANNER ---- */

.product-detail-page .headerBanner {
    padding: 40px 60px 0;
    margin-bottom: 40px;
}

.product-detail-page .hbanner-wrap {
    width: 100%;
}

/* ---- MAIN ---- */

.pdp-main__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 80px;
}

/* ---- HERO: Görsel + Bilgi ---- */

.pdp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}

.pdp-hero__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--card-bg-low) 100%);
}

.pdp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pdp-hero__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 2;
}

.pdp-hero__info {
    padding-top: 8px;
}

.pdp-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pdp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(2, 119, 189, 0.08);
    color: var(--primary-color);
}

.pdp-hero__badge--brand {
    background: rgba(0, 102, 204, 0.12);
    color: #0066cc;
}

.pdp-hero__badge--code {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
    font-family: 'Montserrat', monospace;
    letter-spacing: 0.5px;
}

.pdp-hero__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 800;
    color: var(--text-dark-dark);
    line-height: 1.25;
    margin: 0 0 16px;
}

.pdp-hero__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark-low);
    margin: 0 0 24px;
}

.pdp-hero__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pdp-hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pdp-hero__features li i {
    color: var(--primary-color);
}

.pdp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.pdp-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 20px;
    min-height: 44px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 1.2;
    border: 2px solid transparent;
    box-sizing: border-box;
    transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pdp-hero__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.95;
}

/* Üretici: çerçeveli, hafif cam efekt */
.pdp-hero__btn--outline {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color, #0277bd);
    border-color: rgba(2, 119, 189, 0.35);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 4px 16px rgba(2, 119, 189, 0.08);
}

.pdp-hero__btn--outline:hover {
    background: rgba(2, 119, 189, 0.07);
    border-color: var(--primary-color, #0277bd);
    color: var(--primary-color-dark, #01579b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 119, 189, 0.14);
}

.pdp-hero__btn--outline:active {
    transform: translateY(0);
}

/* Sipariş: dolu ana CTA */
.pdp-hero__btn--primary {
    background: linear-gradient(165deg, var(--primary-color, #0277bd) 0%, var(--primary-color-dark, #01579b) 100%);
    color: #fff;
    border-color: rgba(1, 87, 155, 0.5);
    box-shadow: 0 4px 18px rgba(2, 119, 189, 0.38), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.pdp-hero__btn--primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(2, 119, 189, 0.45);
}

.pdp-hero__btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(2, 119, 189, 0.35);
}

@media (max-width: 480px) {
    .pdp-hero__btn {
        flex: 1 1 auto;
        min-width: min(100%, 200px);
        justify-content: center;
    }
}

/* ---- DETAIL HTML (cleaned, inside collapsible) ---- */

.pdp-detail-html {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-dark-low);
}

.pdp-detail-html img {
    max-width: 64px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 4px 8px 4px 0;
}

.pdp-detail-html h1,
.pdp-detail-html h2,
.pdp-detail-html h3 {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark-dark);
    margin: 16px 0 8px;
}

.pdp-detail-html h1 { font-size: 15px; }

.pdp-detail-html table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 12px;
}

.pdp-detail-html table th,
.pdp-detail-html table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(2, 119, 189, 0.08);
}

.pdp-detail-html table th {
    font-weight: 600;
    background: rgba(2, 119, 189, 0.03);
}

.pdp-detail-html .product-detail > h3.product-title,
.pdp-detail-html .product-detail > h2.product-code,
.pdp-detail-html .product-detail > .clearfix,
.pdp-detail-html .product-detail > .product-line {
    display: none;
}

/* ---- COLLAPSIBLE EXTRA SECTION ---- */

.pdp-extra {
    margin-bottom: 48px;
    background: var(--card-bg);
    border: 1px solid rgba(2, 119, 189, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.pdp-extra__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}

.pdp-extra__toggle:hover {
    background: rgba(2, 119, 189, 0.03);
}

.pdp-extra__toggle i {
    color: var(--primary-color);
    font-size: 13px;
}

.pdp-extra[open] .pdp-extra__toggle {
    border-bottom: 1px solid rgba(2, 119, 189, 0.08);
}

.pdp-extra__body {
    padding: 20px 24px;
}

/* ---- TRIO: Genel Özellikler | Standartlar | Uygulamalar ---- */

.pdp-trio {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 48px;
    background: var(--card-bg);
    border: 1px solid rgba(2, 119, 189, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.pdp-trio__col {
    padding: 28px 24px;
    min-height: 120px;
}

.pdp-trio__col:not(:last-child) {
    border-right: 1px solid rgba(2, 119, 189, 0.08);
}

.pdp-trio__title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 16px;
    letter-spacing: 0.02em;
}

.pdp-trio__empty {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-dark-low);
    margin: 0;
}

/* Specs list (dt/dd) */
.pdp-specs {
    margin: 0;
}

.pdp-specs__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px;
}

.pdp-specs__label::before {
    content: "•";
    margin-right: 6px;
    color: var(--primary-color);
}

.pdp-specs__value {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-dark-low);
    line-height: 1.5;
    margin: 0 0 12px 12px;
}

/* Certifications / Standards */
.pdp-cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pdp-cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(2, 48, 89, 0.06);
    border: 1px solid rgba(2, 48, 89, 0.12);
    border-radius: 4px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1a3c5e;
    letter-spacing: 0.3px;
}

.pdp-cert i {
    font-size: 11px;
    color: #1a3c5e;
    opacity: 0.7;
}

/* Applications list */
.pdp-app-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdp-app-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    padding: 5px 0;
    line-height: 1.4;
}

.pdp-app-list li::before {
    content: "•";
    margin-right: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ---- DOCUMENTS SECTION ---- */

.pdp-docs-section {
    margin-bottom: 48px;
}

.pdp-docs-section__title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark-dark);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdp-docs-section__title i {
    color: var(--primary-color);
    font-size: 14px;
}

.pdp-docs-table-wrap {
    overflow-x: auto;
}

.pdp-docs-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: var(--card-bg);
    border-radius: 6px;
    overflow: hidden;
}

.pdp-docs-table thead th {
    padding: 10px 16px;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark-low);
    background: rgba(2, 119, 189, 0.03);
    border-bottom: 2px solid rgba(2, 119, 189, 0.12);
}

.pdp-docs-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(2, 119, 189, 0.06);
    vertical-align: middle;
}

.pdp-docs-table tbody tr:hover td {
    background: rgba(2, 119, 189, 0.03);
}

.pdp-docs-table__name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.pdp-docs-table__name i {
    font-size: 14px;
    color: #c62828;
}

.pdp-docs-table__code {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.pdp-docs-table__lang {
    font-size: 13px;
    color: var(--text-dark-low);
}

.pdp-docs-table__dl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
    white-space: nowrap;
}

.pdp-docs-table__dl i {
    font-size: 11px;
}

.pdp-docs-table__dl:hover {
    background: var(--primary-color-dark);
    color: #fff;
}

/* ---- RELATED PRODUCTS ---- */

.pdp-related {
    margin-bottom: 56px;
}

.pdp-related__box {
    background: var(--card-bg);
    border: 1px solid rgba(2, 119, 189, 0.10);
    border-radius: 10px;
    overflow: hidden;
}

.pdp-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(2, 119, 189, 0.08);
    gap: 12px;
}

.pdp-related__title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-related__title i {
    color: var(--primary-color);
    font-size: 13px;
}

.pdp-related__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.2s;
    white-space: nowrap;
}

.pdp-related__all i {
    font-size: 10px;
    transition: transform 0.2s;
}

.pdp-related__all:hover {
    color: var(--primary-color-dark);
}

.pdp-related__all:hover i {
    transform: translateX(3px);
}

/* Horizontal scrollable track */
.pdp-related__track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(2, 119, 189, 0.15) transparent;
}

.pdp-related__track::-webkit-scrollbar {
    height: 4px;
}

.pdp-related__track::-webkit-scrollbar-track {
    background: transparent;
}

.pdp-related__track::-webkit-scrollbar-thumb {
    background: rgba(2, 119, 189, 0.18);
    border-radius: 10px;
}

.pdp-related__track::-webkit-scrollbar-thumb:hover {
    background: rgba(2, 119, 189, 0.3);
}

/* Related product card */
.pdp-rcard {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    flex: 0 0 160px;
    padding: 16px 12px 14px;
    text-decoration: none;
    border-right: 1px solid rgba(2, 119, 189, 0.06);
    transition: background 0.2s;
}

.pdp-rcard:last-child {
    border-right: none;
}

.pdp-rcard:hover {
    background: rgba(2, 119, 189, 0.03);
}

.pdp-rcard__img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f4f4f4;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.pdp-rcard__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 6px;
    transition: transform 0.3s ease;
}

.pdp-rcard:hover .pdp-rcard__img img {
    transform: scale(1.08);
}

.pdp-rcard__info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.pdp-rcard__name {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark-dark);
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pdp-rcard__code {
    font-family: 'Montserrat', monospace;
    font-size: 10px;
    color: var(--text-dark-low);
    letter-spacing: 0.3px;
}

/* ---- SİPARİŞ FORMU (tam genişlik — .pdp-main__inner ile hizalı) ---- */

#siparis {
    scroll-margin-top: 104px;
}

.pdp-order {
    width: 100%;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(2, 119, 189, 0.12);
    box-sizing: border-box;
}

.pdp-order__card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 32px 32px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 28px 48px;
    align-items: start;
    background: linear-gradient(145deg, rgba(252, 252, 252, 0.98) 0%, rgba(235, 245, 250, 0.35) 100%);
    border: 1px solid rgba(2, 119, 189, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.pdp-order__intro {
    min-width: 0;
}

.pdp-order__head {
    margin-bottom: 0;
}

.pdp-order__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.pdp-order__lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(38, 50, 56, 0.78);
    margin: 0 0 16px;
}

.pdp-order__product-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin: 0;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    border: 1px solid rgba(2, 119, 189, 0.14);
    box-shadow: 0 4px 24px rgba(2, 119, 189, 0.06);
}

.pdp-order__product-card-media {
    flex: 0 0 120px;
    width: 120px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #f5f9fc 0%, #e8f4fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pdp-order__product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pdp-order__product-card-body {
    flex: 1;
    min-width: 0;
}

.pdp-order__product-card-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color, #0277bd);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdp-order__product-card-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.pdp-order__product-card-meta {
    margin: 0 0 10px;
    padding: 0;
}

.pdp-order__meta-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    margin: 0 0 6px;
    align-items: baseline;
}

.pdp-order__meta-row:last-child {
    margin-bottom: 0;
}

.pdp-order__meta-row dt {
    margin: 0;
    color: rgba(38, 50, 56, 0.5);
    font-weight: 600;
}

.pdp-order__meta-row dd {
    margin: 0;
    color: rgba(38, 50, 56, 0.92);
    font-weight: 500;
}

.pdp-order__meta-link {
    color: var(--primary-color, #0277bd);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(2, 119, 189, 0.25);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.pdp-order__meta-link:hover {
    color: var(--primary-color-dark, #01579b);
    border-bottom-color: var(--primary-color, #0277bd);
}

.pdp-order__product-card-spec {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(38, 50, 56, 0.85);
    margin: 0 0 8px;
    padding: 8px 10px;
    background: rgba(2, 119, 189, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color, #0277bd);
    line-height: 1.45;
}

.pdp-order__product-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(38, 50, 56, 0.72);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 600px) {
    .pdp-order__product-card {
        flex-direction: column;
        align-items: stretch;
    }

    .pdp-order__product-card-media {
        flex: none;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .pdp-order__meta-row {
        grid-template-columns: 88px 1fr;
    }
}

.pdp-order__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    width: 100%;
}

.pdp-order__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pdp-order__row--fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pdp-order__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdp-order__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(38, 50, 56, 0.85);
}

.pdp-order__req {
    color: #c62828;
    font-weight: 700;
}

.pdp-order__input,
.pdp-order__textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pdp-order__input:focus,
.pdp-order__textarea:focus {
    outline: none;
    border-color: var(--primary-color, #0277bd);
    box-shadow: 0 0 0 3px rgba(2, 119, 189, 0.12);
}

.pdp-order__textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
}

.pdp-order__kvkk {
    margin-top: 4px;
}

.pdp-order__kvkk-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(38, 50, 56, 0.88);
    cursor: pointer;
    font-weight: 500;
}

.pdp-order__kvkk-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color, #0277bd);
}

.pdp-order__kvkk-label a {
    color: var(--primary-color, #0277bd);
    text-decoration: underline;
}

.pdp-order__kvkk-label a:hover {
    color: var(--primary-color-dark, #01579b);
}

.pdp-order__recaptcha {
    margin-top: 4px;
    transform: scale(0.95);
    transform-origin: top left;
}

.pdp-order__submit {
    margin-top: 6px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border: none;
    border-radius: 12px;
    background: var(--primary-color, #0277bd);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pdp-order__submit:hover:not(:disabled) {
    background: var(--primary-color-dark, #01579b);
}

.pdp-order__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.pdp-order__submit-label,
.pdp-order__submit-loading,
.pdp-order__submit-icon {
    display: inline-flex;
    align-items: center;
}

.pdp-order__submit-loading {
    display: none;
}

.pdp-order__submit.is-loading .pdp-order__submit-label,
.pdp-order__submit.is-loading .pdp-order__submit-icon {
    display: none;
}

.pdp-order__submit.is-loading .pdp-order__submit-loading {
    display: inline-flex;
    gap: 8px;
}

.pdp-order__feedback {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 10px;
    display: none;
}

.pdp-order__feedback.is-info,
.pdp-order__feedback.is-success,
.pdp-order__feedback.is-error {
    display: block;
}

.pdp-order__feedback.is-info {
    background: rgba(2, 119, 189, 0.08);
    color: #01579b;
    border: 1px solid rgba(2, 119, 189, 0.2);
}

.pdp-order__feedback.is-success {
    background: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.pdp-order__feedback.is-error {
    background: rgba(211, 47, 47, 0.08);
    color: #c62828;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

.pdp-order__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(38, 50, 56, 0.45);
    margin: 0;
    text-align: center;
}

.pdp-order .hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1100px) {
    .pdp-order__card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 24px 28px;
    }

    .pdp-order__row--fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-order__row--fields .pdp-order__field:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .pdp-order__row,
    .pdp-order__row--fields {
        grid-template-columns: 1fr;
    }

    .pdp-order__row--fields .pdp-order__field:last-child {
        grid-column: auto;
    }

    .pdp-order__card {
        padding: 20px 18px 24px;
    }
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1023px) {
    .product-detail-page .headerBanner {
        padding: 28px 28px 0;
    }

    .pdp-main__inner {
        padding: 0 28px 64px;
    }

    .pdp-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .pdp-trio {
        grid-template-columns: 1fr;
    }

    .pdp-trio__col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(2, 119, 189, 0.08);
    }
}

@media (max-width: 767px) {
    .product-detail-page .headerBanner {
        padding: 20px 12px 0;
        margin-top: 92px;
    }

    .pdp-main__inner {
        padding: 0 20px 48px;
    }

    .pdp-hero {
        margin-bottom: 32px;
    }

    .pdp-related__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }

    .pdp-rcard {
        min-width: 140px;
        flex: 0 0 140px;
        padding: 12px 10px;
    }

    .pdp-rcard__img {
        width: 80px;
        height: 80px;
    }

    .pdp-docs-table {
        min-width: 100%;
        font-size: 13px;
    }

    .pdp-docs-table thead th:nth-child(2),
    .pdp-docs-table thead th:nth-child(3),
    .pdp-docs-table tbody td:nth-child(2),
    .pdp-docs-table tbody td:nth-child(3) {
        display: none;
    }

    .pdp-trio__col {
        padding: 20px 18px;
    }

    .pdp-rcard__name {
        font-size: 11px;
    }
}
