/*
Theme Name: Handmade Shop Child
Theme URI: http://cmsmasters.net/handmade-shop-child/
Author: cmsmasters
Author URI: http://cmsmasters.net/
Description: Handmade Shop Child Theme
Template: handmade-shop
Version: 1.0.0
License:
License URI:
Text Domain: handmade-shop-child
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*/

.blog-accordian-sec {
    /* background: #d97a57; */
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.blog-accordian .accordion-header {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background 0.3s ease;
}

/* .blog-accordian .accordion-header:hover {
    background: #e6f7ff;
} */

.blog-accordian .accordion-icon {
    font-size: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.blog-accordian .accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.blog-accordian .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    /* border-bottom: 1px solid #ddd; */
    margin-bottom: 10px;
    border-radius: 0 0 5px 5px;
}

.blog-accordian .accordion-body.active {
    max-height: 500px;
    padding: 15px 20px;
}


/* =============================
   Product Section Layout
============================= */
.product-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    margin-bottom: 60px;
}

.product-section h2.post-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c2c2c;
}

/* =============================
   Image
============================= */
.product-section img.img-fluid {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* =============================
   Right-side Text Card
============================= */
.product-content-card {
    background: #FCF9F1;
    color: #7b726f;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
}

.product-content-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-content-card .btn {
    background: #d97a57;
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    border: none;
}

.product-content-card .btn:hover {
    background: #d97a57;
}

/* =============================
   Pros and Cons Section
============================= */
.row.pros-cons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.row.pros-cons .col-md-6 {
    flex: 1;
    min-width: 280px;
}

/* Headers */
.pros {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}

.cons {
    background-color: #f44336;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}

/* List styles */
.pros-cons ul.list-unstyled {
    list-style: none;
    padding: 15px 20px;
    background: #f9f9f9;
    margin: 0;
    border-radius: 0 0 6px 6px;
}

.pros-cons li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.pros-cons .col-md-6:first-child li::before {
    content: "✔";
    color: #4caf50;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 18px;
}

.pros-cons .col-md-6:last-child li::before {
    content: "✖";
    color: #f44336;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 18px;
}
.pro-cons-content{
    padding-top: 30px;
}

/* =============================
   CTA Button Below Section
============================= */
.check-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background: #d97a57;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.check-btn:hover {
    background: #d97a57;
}



.review-section {
    padding: 50px 20px;
    background: #fffaf0;
    border-radius: 10px;
    margin-bottom: 60px;
}

.review-section .post-title {
    margin-bottom: 20px;
}

.review-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.review-box:hover {
    transform: translateY(-5px);
}

.stars {
    color: #f1c40f;
    font-size: 20px;
    margin-bottom: 10px;
}

.review-author {
    font-style: italic;
    color: #555;
    margin-top: 15px;
}


.checkout-sec {
    text-align: center;
    padding: 50px 20px;
    /* background: #e8f5e9; */
    border-radius: 12px;
}

.checkout-sec .post-title {
    margin-bottom: 15px;
}

.checkout-sec p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 16px;
    color: #444;
}

.checkout-sec .check-btn {
    background-color: #d97a57;
    padding: 12px 25px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.checkout-sec .check-btn:hover {
    background-color: #d97a57;
}


@media (max-width: 768px) {
    .product-section .row {
        flex-direction: column;
    }

    .col-md-6 {
        width: 100%;
    }

    .product-content-card {
        margin-top: 20px;
    }
}

#slide_top, mark, table thead tr th, table thead tr td, .cmsmasters_icon_box.cmsmasters_icon_box_top:before, .cmsmasters_icon_box.cmsmasters_icon_box_left_top:before, .cmsmasters_icon_box.cmsmasters_icon_box_left:before, .cmsmasters_icon_list_items.cmsmasters_color_type_bg .cmsmasters_icon_list_item .cmsmasters_icon_list_icon, .cmsmasters_icon_list_items.cmsmasters_color_type_icon .cmsmasters_icon_list_item:hover .cmsmasters_icon_list_icon, .cmsmasters_stats.stats_mode_bars .cmsmasters_stat_wrap .cmsmasters_stat .cmsmasters_stat_inner, .wpcf7 form.wpcf7-form span.wpcf7-list-item input[type=checkbox] + span.wpcf7-list-item-label:after, .cmsmasters-form-builder .check_parent input[type=checkbox] + label:after, .wpcf7 form.wpcf7-form span.wpcf7-list-item input[type=radio] + span.wpcf7-list-item-label:after, .cmsmasters-form-builder .check_parent input[type=radio] + label:after, .cmsmasters_button, .button, input[type=submit], input[type=button], button, .widget_custom_popular_projects_entries .cmsmasters_project_category a, .widget_custom_latest_projects_entries .cmsmasters_project_category a, .cmsmasters_pricing_table .pricing_best .cmsmasters_pricing_item_header, .cmsmasters_pricing_table .pricing_title, .cmsmasters_slider_project .cmsmasters_slider_project_inner, .cmsmasters_notice .notice_close:hover, .cmsmasters_quotes_slider .owl-pagination .owl-page.active, .cmsmasters_quotes_slider .owl-pagination .owl-page:hover, .cmsmasters_posts_slider .owl-pagination .owl-page.active, .cmsmasters_posts_slider .owl-pagination .owl-page:hover, .cmsmasters_clients_slider .owl-pagination .owl-page.active, .cmsmasters_clients_slider .owl-pagination .owl-page:hover, .cmsmasters_project_grid .cmsmasters_project_category a, .owl-pagination .owl-page:hover, .owl-pagination .owl-page.active, .cmsmasters_project_puzzle .project_inner, .cmsmasters_project_puzzle .cmsmasters_project_category a:hover, .cmsmasters_slider_post_category a, .cmsmasters_slider_project_category a:hover, .cmsmasters_post_category a {
    background-color: #5e7473;
}
table thead tr th, table thead tr td, .cmsmasters_pricing_table .pricing_best .cmsmasters_pricing_item_header, .cmsmasters_icon_list_items.cmsmasters_color_type_border .cmsmasters_icon_list_item .cmsmasters_icon_list_icon:after, .cmsmasters_button, .button, input[type=submit], input[type=button], button, .widget_pages li.current_page_item > a, .widget_nav_menu li.current_page_item > a, .cmsmasters_notice .notice_close:hover {
    border-color: #5e7473 !important;
}