.pt-150 {
    padding-top: 150px;
}

.home-banner-three .home-slides .home-item .main-banner-content .banner-list .icon-img {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 40px;
    background-color: #eefbf2;
    color: #209e2e;
    border-radius: 30px;
    border: 2px dotted #d0eed6;
    font-weight: 500;
}

.home-banner-three .home-slides .home-item .main-banner-content .banner-list .icon-img img {
    width: 25px;
    display: inline-block;
    margin: 0;
}

.cultivation-content .icon img {
    width: 70px;
    display: inline-block;
    margin: 10px 0;
}

.shop-list-tab .tabs.tabs-two {
    max-width: 540px;
}

.trifles-nav .navbar .others-options .option-item .search-btn {
    line-height: 32px;
    font-size: 18px;
}

.page-title-area::before {
    opacity: 0.4;
}

.article-header-fixed {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.title-row h2 {
    font-size: 28px;
    margin: 0;
    color: #222;
    flex: 1;
}

.share-top-btn {
    position: relative;
}

.share-top-btn>button {
    background: #7dbb3b;
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.share-top-btn>button:hover {
    background: #222;
}

.share-popup {
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
    display: flex;
    gap: 15px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    white-space: nowrap;
}

.share-popup.show {
    opacity: 1;
    visibility: visible;
}

.share-popup a {
    color: #555;
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    transition: 0.2s;
}

.share-popup a:hover {
    background: #7dbb3b;
    color: white;
    transform: translateY(-3px);
}

.entry-meta-fixed {
    margin-top: 10px;
    color: #777;
    font-size: 15px;
}

.entry-meta-fixed ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.entry-meta-fixed ul li span {
    font-weight: 600;
    color: #333;
}

.entry-meta-fixed ul li a {
    color: #7dbb3b;
}

/* scrollable article with highlight border */
.article-content {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-right: 25px;
    margin-bottom: 25px;
    background: #ffffff;
    transition: border 0.2s;
}

.article-content:focus-within {
    border-color: #5f9e2c;
}

/* thin custom scrollbar */
.article-content::-webkit-scrollbar {
    width: 5px;
}

.article-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 20px;
}

.article-content::-webkit-scrollbar-thumb {
    background: #7dbb3b;
    border-radius: 20px;
}

.article-content::-webkit-scrollbar-thumb:hover {
    background: #5f9e2c;
}

/* hide the old entry-meta inside article */
.article-content .entry-meta {
    display: none;
}

/* tags & share footer (left column bottom) */
.article-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 15px;
    border-top: 1px solid #e6e6e6;
}

.tags-new a {
    display: inline-block;
    padding: 6px 14px;
    margin: 5px 5px 5px 0;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    transition: 0.2s;
}

.tags-new a:hover {
    background: #7dbb3b;
    color: white;
}

.share-new ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.share-new ul li span {
    margin-right: 8px;
    font-weight: 500;
}

/* right panel: comments area scrollable, replies hidden by default */
.sidebar-comments {
    background: #fafafa;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    margin-top: 20px;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #7dbb3b #f1f1f1;
}

.sidebar-comments::-webkit-scrollbar {
    width: 5px;
}

.sidebar-comments::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 20px;
}

.sidebar-comments::-webkit-scrollbar-thumb {
    background: #7dbb3b;
    border-radius: 20px;
}

.sidebar-comments h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #7dbb3b;
    padding-left: 15px;
    position: sticky;
    top: 0;
    background: #fafafa;
    z-index: 2;
    padding-top: 10px;
    padding-bottom: 10px;
}

.comment-list,
.comment-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list>li {
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-metadata {
    font-size: 12px;
    color: #888;
    margin: 5px 0 8px 45px;
}

.comment-content p {
    font-size: 14px;
    margin-left: 45px;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
}

.reply {
    margin-left: 45px;
    margin-top: 5px;
}

.reply button {
    background: none;
    border: none;
    color: #7dbb3b;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}

.reply button:hover {
    text-decoration: underline;
}

/* children (replies) hidden by default */
.comment-list .children {
    display: none;
    margin-left: 35px;
    margin-top: 15px;
    border-left: 2px solid #7dbb3b;
    padding-left: 15px;
}

.comment-list .children.show-replies {
    display: block;
}

/* comment form at bottom of sidebar */
.comment-form-wrap {
    margin-top: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
}

.comment-form-wrap h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 14px;
}

.comment-form textarea {
    border-radius: 20px;
    resize: vertical;
}

.comment-form button {
    background: #7dbb3b;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.comment-form button:hover {
    background: #222;
}

/* hide other sidebar widgets except search, comments, form */
.widget-area .widget:not(.widget_search):not(.sidebar-comments):not(.comment-form-wrap) {
    display: none;
}

/* related bottom */
.related-articles-bottom {
    margin-top: 50px;
    border-top: 2px dashed #7dbb3b;
    padding-top: 30px;
}

.related-card {
    border: 1px solid #eee;
    padding: 15px;
    transition: 0.3s;
    background: white;
    border-radius: 8px;
}

.related-card h4 {
    font-size: 20px;
    color: #ffffff;
    margin: 10px 0 14px 0;
    font-weight: 500;
    transition: 0.6s;
    line-height: 1.4;
}

.related-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Go Top button styles */
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #7dbb3b;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.go-top.active {
    opacity: 1;
    visibility: visible;
}

.go-top i {
    font-size: 18px;
    line-height: 1;
}

.go-top i:first-child {
    margin-bottom: 2px;
}

.go-top:hover {
    background: #222;
}

.cultivation-item .cultivation-content {
    bottom: 35%;
}