/* TOC Wrapper - Removing Box Style */
.toc-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: none;
    border-left: 2px solid #ddd;
    /* Thin line on left */
    padding-left: 20px;
}

.toc-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 15px;
    /* Space for dot */
}

/* Green dot before Title */
.toc-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #2d6a4f;
    /* Green dot */
    border-radius: 50%;
}

/* HIDE NESTED TOC TITLE FROM GENERATED CONTENT to prevent duplicates */
.toc-body .toc-title {
    display: none !important;
}

.toc-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-body ul li {
    margin-bottom: 15px;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    /* Light separator lines */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toc-body ul li:last-child {
    border-bottom: none;
}

/* Remove default FontAwesome arrow from left */
.toc-body ul li::before {
    content: none;
}

.toc-body ul li a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    width: 100%;
}

/* Add Right Arrow icon to each item */
.toc-body ul li::after {
    content: "\f061";
    /* FontAwesome Arrow Right */
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: #333;
    transition: transform 0.3s;
}

.toc-body ul li:hover::after {
    transform: translateX(5px);
}

.toc-body ul li a:hover {
    color: #000;
}

/* Smooth Scroll Offset Targets */
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    scroll-margin-top: 120px;
}

/* Product Card Styles from Home Page */
.home-product-card {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: none;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.home-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.home-product-card .img-wrap {
    position: relative;
    height: 300px;
    background: linear-gradient(to bottom, #f9f9f9 55%, #ff6b35 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    z-index: 0;
}

.home-product-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.home-product-card:hover .img-wrap img {
    transform: scale(1.08) translateY(-5px);
}

.home-product-card .badge-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #ff5e14 0%, #ff3d00 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: capitalize;
    box-shadow: 0 5px 15px rgba(255, 82, 0, 0.4);
    z-index: 10;
}

.home-product-card .content-wrap {
    background: #ffffff;
    padding: 30px 20px 20px 20px;
    border-radius: 35px 35px 0 0;
    margin-top: -50px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.home-product-card .content-wrap h4 {
    font-size: 15px;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.home-product-card .content-wrap .desc-text {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-card .rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: auto;
    padding-bottom: 15px;
}

.home-product-card .rating-row .stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.home-product-card .footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 10px;
}

.home-product-card .price-block {
    display: flex;
    flex-direction: column;
}

.home-product-card .price-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.home-product-card .price-values {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.home-product-card .old-price {
    font-size: 0.85rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 500;
}

.home-product-card .current-price {
    font-size: 18px;
    font-weight: 800;
    color: #085716;
    line-height: 1;
}

.home-product-card .btn-view {
    background: #085716;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-product-card .btn-view:hover {
    transform: scale(1.05);
    color: white;
}