/*
Theme Name: CompareBuyNow Child
Template: astra
Version: 1.0
Text Domain: comparebuynow-child
*/

/* CompareBuyNow Product Page */

.cbn-product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.cbn-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 60px;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e7eb;
}

.cbn-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
}

.cbn-product-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.cbn-brand {
    color: #64748b;
    font-weight: 700;
    margin-bottom: 10px;
}

.cbn-product-title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.cbn-model-number {
    color: #64748b;
}

.cbn-status {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 12px;
    background: #ecfdf5;
    border-radius: 20px;
    font-weight: 700;
}

.cbn-key-specs,
.cbn-full-specs {
    margin-top: 60px;
}

.cbn-key-specs h2,
.cbn-full-specs h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.cbn-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cbn-spec-card {
    padding: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.cbn-spec-card span {
    display: block;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.cbn-spec-card strong {
    display: block;
    font-size: 17px;
}

.cbn-spec-section {
    margin-top: 45px;
}

.cbn-spec-section h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.cbn-spec-section table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.cbn-spec-section th,
.cbn-spec-section td {
    padding: 15px 18px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cbn-spec-section tr:last-child th,
.cbn-spec-section tr:last-child td {
    border-bottom: 0;
}

.cbn-spec-section th {
    width: 40%;
    color: #475569;
    background: #f8fafc;
}

@media (max-width: 768px) {

    .cbn-product-page {
        padding: 30px 16px;
    }

    .cbn-product-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cbn-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cbn-spec-section th {
        width: 45%;
    }
}