.pd_page_header {
    padding: 42px 0 26px;
    background: linear-gradient(180deg, rgba(0, 114, 62, 0.08) 0%, rgba(0, 114, 62, 0.02) 100%);
}

.pd_header_box p {
    margin-bottom: 6px;
    color: #00723e;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.pd_header_box h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.25;
    color: #1c2d24;
}

.pd_detail_section {
    padding: 34px 0 26px;
}

.pd_gallery_main {
    border-radius: 18px;
    overflow: hidden;
    background: #f6faf7;
    border: 1px solid rgba(0, 114, 62, 0.14);
}

.pd_gallery_main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.pd_gallery_thumbs {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pd_thumb_item {
    border: 1px solid rgba(0, 114, 62, 0.2);
    border-radius: 12px;
    background: #fff;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pd_thumb_item img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    display: block;
}

.pd_thumb_item.active,
.pd_thumb_item:hover {
    border-color: #00723e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 114, 62, 0.14);
}

.pd_product_info {
    border: 1px solid rgba(0, 114, 62, 0.14);
    border-radius: 18px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(14, 38, 27, 0.06);
}

.pd_badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    color: #00723e;
    background: rgba(0, 114, 62, 0.11);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.pd_product_info h2 {
    color: #1f3429;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.pd_price_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pd_sale_price {
    color: #00723e;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.pd_origin_price {
    color: #8c9491;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 600;
}

.pd_intro {
    color: #4c5a53;
    margin-bottom: 18px;
}

.pd_meta_list {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.pd_meta_item {
    border: 1px dashed rgba(0, 114, 62, 0.22);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.pd_meta_item span {
    color: #607069;
    font-size: 14px;
}

.pd_meta_item strong {
    color: #21352b;
    font-size: 14px;
}

.pd_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid #00723e;
    background: #00723e;
    color: #fff;
    font-weight: 700;
    transition: all 0.25s ease;
}

.pd_cta_btn:hover {
    color: #00723e;
    background: #fff;
}

.pd_content_section {
    padding: 12px 0 60px;
}

.pd_card,
.pd_sidebar_card {
    border: 1px solid rgba(0, 114, 62, 0.14);
    border-radius: 16px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(14, 38, 27, 0.05);
}

.pd_card + .pd_card,
.pd_sidebar_card + .pd_sidebar_card {
    margin-top: 20px;
}

.pd_card h3,
.pd_sidebar_card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1f3429;
}

.pd_card p {
    color: #4c5a53;
}

.pd_card ul {
    margin: 0;
    padding-left: 18px;
}

.pd_card li {
    color: #4c5a53;
    margin-bottom: 8px;
}

.pd_product_card {
    border: 1px solid rgba(0, 114, 62, 0.14);
    border-radius: 12px;
    padding: 10px;
    height: 100%;
    transition: all 0.25s ease;
}

.pd_product_card img {
    width: 100%;
    height: 170px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
}

.pd_product_card h4,
.pd_post_item h4,
.pd_new_product_item h4 {
    font-size: 16px;
    line-height: 1.4;
    color: #233930;
    margin: 0 0 8px;
}

.pd_product_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 114, 62, 0.12);
}

.pd_product_price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd_product_price span {
    color: #00723e;
    font-weight: 800;
}

.pd_product_price small {
    color: #8d9391;
    text-decoration: line-through;
    font-weight: 600;
}

.pd_post_item,
.pd_new_product_item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    align-items: center;
}

.pd_post_item + .pd_post_item,
.pd_new_product_item + .pd_new_product_item {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 114, 62, 0.1);
}

.pd_post_item img,
.pd_new_product_item img {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    object-fit: cover;
}

.pd_post_item p {
    margin: 0 0 4px;
    color: #6f7d77;
    font-size: 13px;
}

@media (max-width: 991px) {
    .pd_header_box h1 {
        font-size: 28px;
    }

    .pd_gallery_main img {
        height: 390px;
    }
}

@media (max-width: 575px) {
    .pd_page_header {
        padding: 28px 0 18px;
    }

    .pd_header_box h1 {
        font-size: 24px;
    }

    .pd_gallery_main img {
        height: 280px;
    }

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

    .pd_product_info,
    .pd_card,
    .pd_sidebar_card {
        padding: 16px;
    }

    .pd_sale_price {
        font-size: 24px;
    }
}
