/* =========================
   PRODUCT SPECIFICATION UI
   ========================= */

.specification-main {
    padding: 40px 0;
    background: #fafafa;
}

.product-specification {
    overflow-x: auto;
}

/* Table layout */
.product-specification table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.product-specification th,
.product-specification td {
    padding: 12px 15px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 14px;
    vertical-align: middle;
}

.product-specification th {
    width: 35%;
    font-weight: 600;
    color: #333;
    background: #f7f7f7;
    text-align: left;
}

.product-specification td {
    color: #555;
}

.product-specification a {
    color: #007bff;
    text-decoration: none;
}

.product-specification a:hover {
    text-decoration: underline;
}

/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */
@media (max-width: 767px) {
    .product-specification table,
    .product-specification tbody,
    .product-specification tr {
        display: block;
        width: 100%;
    }

    .product-specification tr {
        margin-bottom: 12px;
        border: 1px solid #e6e6e6;
        border-radius: 6px;
        background: #fff;
        overflow: hidden;
    }

    .product-specification th {
        display: block;
        width: 100%;
        background: #f2f2f2;
        border-bottom: 1px solid #e6e6e6;
    }

    .product-specification td {
        display: block;
        width: 100%;
        border-bottom: none;
    }
}




/*description css*/

/* =========================
   PRODUCT DESCRIPTION TAB
   ========================= */
/* =========================
   FIX DIRTY WYSIWYG CONTENT
   ========================= */

/* Remove empty paragraphs */
.description p:empty {
    display: none;
}

/* Remove paragraphs that contain only &nbsp; */
.description p span:only-child {
    display: none;
}

.description p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

/* Prevent double spacing */
.description p + p {
    margin-top: 0;
}

/* =========================
   OPTIONAL: FEATURE LIST LOOK
   ========================= */

/* Turn simple lines into bullet-style layout */
.description p {
    position: relative;
    padding-left: 18px;
}

.description p::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #666;
    font-size: 18px;
    line-height: 1;
}
