/* =====================================================
   POWER SWITCHGEARS – PRODUCT PAGE (FINAL STABLE VERSION)
   ===================================================== */

/* ---------- BASIC RESET ---------- */
.ces-main-content *,
.product-details-wrapper * {
    box-sizing: border-box;
}

/* ---------- MAIN CONTENT WRAPPER ---------- */
.ces-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 40px;
    color: #222;
}

/* ---------- HIDE THEME AUTO PAGE TITLE ---------- */
.et_pb_post_title,
.entry-title,
h1.entry-title {
    display: none !important;
}

/* =====================================================
   BREADCRUMB – REMOVE NUMBERS COMPLETELY
===================================================== */
.custom-breadcrumb ol {
    list-style: none !important;
    counter-reset: none !important;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
}

.custom-breadcrumb li {
    list-style: none !important;
    counter-increment: none !important;
}

.custom-breadcrumb li::before {
    content: "" !important;
    display: none !important;
}

.custom-breadcrumb li::after {
    content: "›";
    margin-left: 6px;
    color: #999;
}

.custom-breadcrumb li:last-child::after {
    content: "";
}

/* ---------- PRODUCT TITLE ---------- */
.custom-product-title {
    font-size: 28px;
    font-weight: 700;
    margin: 8px 0 8px;
    line-height: 1.3;
}

/* ---------- INTRO TEXT ---------- */
.product-intro {
    max-width: 900px;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* =====================================================
   IMAGE + QUICK INFO CARD
===================================================== */
.product-details-wrapper {
    display: flex;
    gap: 28px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 20px;
    background: #ffffff;
    margin-bottom: 30px;
}

/* IMAGE COLUMN */
.product-image-and-datasheet-wrapper {
    width: 260px;
    text-align: center;
}

.product-image {
    width: 220px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

/* DATASHEET BUTTON */
.product-image-and-datasheet-wrapper a {
    display: inline-block;
    background: #1fa7a0;
    color: #fff !important;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
}

.product-image-and-datasheet-wrapper a:hover {
    background: #178f88;
}

/* QUICK INFO TABLE */
.product-description-wrapper {
    flex: 1;
}

.quick-spec-overview-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.quick-spec-overview-container td {
    padding: 10px 12px;
    border-bottom: 1px solid #e6e6e6;
}

.quick-spec-overview-container tr:nth-child(odd) {
    background: #f8fbfb;
}

.quick-spec-overview-container td:first-child {
    font-weight: 600;
    width: 35%;
}

/* =====================================================
   TECHNICAL SPECIFICATIONS
===================================================== */
.specifications-table-container {
    max-width: 900px;
    margin-top: 28px;
}

.specifications-table-container h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* TECH TABLE */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.specifications-table th {
    background: #1fa7a0;
    color: #ffffff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
}

.specifications-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e6e6e6;
}

.specifications-table tbody tr:nth-child(odd) {
    background: #f8fbfb;
}

/* =====================================================
   DESCRIPTION PARAGRAPHS
===================================================== */
.additional-information {
    max-width: 900px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
    .product-details-wrapper {
        flex-direction: column;
    }

    .product-image-and-datasheet-wrapper {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .custom-product-title {
        font-size: 24px;
    }

    .product-image {
        width: 200px;
    }
}
