:root {
    --cpe-primary: #1e3a8a;
    --cpe-accent: #10b981;
    --cpe-light: #f8fafc;
    --cpe-border: #e2e8f0;
    --cpe-text: #334155;
    --cpe-heading: #0f172a;
    --cpe-white: #ffffff;
}

/* FULL WIDTH FIX */
.cpe-product-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.cpe-page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1600px;           /* Increased for wider feel */
    margin: 0 auto;
    padding: 0 10px;             /* Very small padding */
}

/* Hero */
.cpe-hero {
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    padding: 70px 0 50px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
}

.cpe-main-title { font-size: 2.7rem; margin-bottom: 10px; }

/* Image + Table */
.cpe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.cpe-product-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Table */
.cpe-spec-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.cpe-spec-table th, .cpe-spec-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--cpe-border);
}

.cpe-spec-table th {
    background: #f1f5f9;
    width: 38%;
}

/* Sidebar */
.cpe-sidebar-box {
    background: white;
    border: 1px solid var(--cpe-border);
    border-radius: 10px;
    padding: 22px;
    position: sticky;
    top: 25px;
}

/* Sections */
.cpe-section { padding: 45px 0; }
.cpe-bg-light { background: var(--cpe-light); padding: 40px; border-radius: 10px; }

/* Contact */
.cpe-contact-section {
    background: var(--cpe-light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .cpe-page-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .cpe-grid {
        grid-template-columns: 1fr;
    }
}