.by-product {
    padding: 50px 0 20px;

    @media (max-width: 768px) {
        padding: 30px 0;
    }
}

/* ─── PRODUCT SIDEBAR (BEM) ─────────────────────────────────── */
.product-wrapper {
    align-items: stretch;
}

.product-wrapper__left {
    height: auto;
}

.product-wrapper__sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;

    @media (min-width: 992px) {
        position: sticky;
        top: 80px;
        z-index: 10;
        padding-right: 5px;

        &::-webkit-scrollbar {
            width: 4px;
        }

        &::-webkit-scrollbar-track {
            background: transparent;
        }

        &::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 10px;
        }
    }

    @media (max-width: 991px) {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        margin-bottom: 0;

        &.is-active {
            transform: translateX(0);
        }
    }
}

.sidebar-mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;

    @media (max-width: 991px) {
        display: flex;
    }
}

.sidebar-mobile-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-3);
    margin: 0;
    text-transform: uppercase;
}

.sidebar-close {
    background: none;
    border: none;
    color: #333;
    padding: 5px;
    cursor: pointer;

    svg {
        width: 24px;
        height: 24px;
    }
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    backdrop-filter: blur(2px);

    &.is-active {
        display: block;
    }
}

.product-mobile-actions {
    display: none;
    margin-bottom: 20px;

    @media (max-width: 991px) {
        display: flex;
        justify-content: center;
        position: fixed;
        bottom: 30px;
        left: 10px;
        /* width: 100%; */
        z-index: 900;
        pointer-events: none;
    }
}

.btn-sidebar-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-3);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    pointer-events: auto;

    svg {
        width: 18px;
        height: 18px;
    }

    &:hover {
        background: var(--color-4);
        transform: translateY(-2px);
    }

    &:active {
        transform: translateY(0);
    }
}

/* Sidebar Search Block */
.sidebar-search__form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    height: 48px;
}

.sidebar-search__input {
    flex: 1;
    border: none;
    padding: 0 15px;
    font-size: 16px;
    outline: none;
    background: #fff;
}

.sidebar-search__button {
    width: 60px;
    background: linear-gradient(198deg, var(--color-3) 0%, var(--color-4) 100%);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search__button:hover {
    background: var(--color-4);
}

.sidebar-search__button svg {
    width: 24px;
    height: 24px;
}

/* Sidebar Widget Block */
.widget-product {
    background: #fff;
    border-radius: 10px;
}

.widget-product__header {
    background: linear-gradient(198deg, var(--color-3) 0%, var(--color-4) 100%);
    /* Eco Green */
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget-product__title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.02em;
}

.widget-product__arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.widget-product__content {
    padding: 10px 0;
}

.widget-product__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-product__item {
    border-bottom: 1px solid transparent;
}

.widget-product__item--active .widget-product__link {
    color: var(--color-3);
    transform: translateY(-2px);
}

.widget-product__link {
    display: block;
    padding: 12px 15px;
    color: #555;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-product__link:hover {
    color: var(--color-3);
    transform: translateY(-2px);
}

/* Product Banner Refinement */
.product-banner {
    position: relative;

    margin-bottom: 58px;
}

.product-banner .banner-bg {
    width: 100%;
    margin-bottom: -40px;
    padding: 0 10px;
}

.product-banner .banner-bg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.product-banner .banner-content {
    position: relative;
    z-index: 5;
}

.banner-title-box {
    background: white;
    color: #fff;
    padding: 10px 10px 0 10px;
    border-radius: 15px;
    text-align: center;
    margin: 0 -10px;
}

.banner-title-box .main-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    background: var(--color-2);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    @media (max-width: 992px) {
        font-size: 24px;
    }
}

.banner-title-box .sub-title {
    font-size: 18px;
    margin: 5px 0 0;
}

.btn-load-more {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: #f9f9f9;
    border-color: #2b7a44;
}

/* Bottom Content */
.product-bottom-content {
    margin-top: 60px;

    >.row {
        gap: 30px 0;
    }

    @media (max-width: 992px) {
        margin-top: 30px;
    }
}

.main-article-content {
    background: #dfece3;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

.content-header {
    background: #2b7a44;
    color: #fff;
    padding: 8px 40px 8px 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 35px;
    font-size: 14px;
    position: relative;
    cursor: pointer;

    &:not(.expanded) {
        .toggle-icon {
            background: #fff;



            &::after {
                transform: translate(-50%, -50%) rotate(90deg);
                opacity: 0;
            }
        }
    }

    .toggle-icon {
        width: 24px;
        height: 24px;
        background: #fff;
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
        margin-left: 20px;
        right: 6px;
        position: absolute;

        &::before,
        &::after {
            content: "";
            position: absolute;
            background: var(--color-2);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        &::before {
            width: 12px;
            height: 2px;
        }

        &::after {
            width: 2px;
            height: 12px;
        }
    }
}

.header-tag {
    font-weight: 700;
    text-transform: uppercase;
}

.content-body {
    padding: 15px 23px;
    background: white;
    border-radius: 10px;
    margin-top: 14px;
    position: relative;

    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(0deg,
                #dfece3 39.66%,
                rgba(223, 236, 227, 0) 100%);
        z-index: 1;
    }

    &.expanded {
        &::after {
            opacity: 0;
            z-index: -1;
        }

        .article-text {
            max-height: 2000px;
        }
    }
}

.content-footer {
    position: relative;
    z-index: 2;
}

.article-title {
    font-size: 24px;
    color: #2b7a44;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-text {
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}



.btn-expand-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto 0;
    background: #f1f8f3;
    border: 1px solid var(--color-2);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--color-2);
    font-weight: 600;
    cursor: pointer;
}

.btn-expand-content .icon {
    width: 24px;
    height: 24px;
    mask-image: url(../images/icon-arrow-right.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center center;
    background-color: var(--color-2);
    transform: rotate(90deg);
}

.btn-expand-content:hover {
    background: var(--color-2);
    color: #fff;
}



.product-listing-results {
    padding: 0 0 76px;

    @media (max-width: 992px) {
        padding: 0 0 40px;
    }
}

/* Product Detail Aside */
.detail-block__aside {
    background: #2b7a44;
    border-radius: 20px;
    padding: 30px 20px 28px;

    &:not(:last-child) {
        margin-bottom: 40px;
    }
}

.aside-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 15px;
    margin-bottom: 40px;
}

.aside-info__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;

    h3 {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 5px;
    }

    p {
        font-size: 14px;
        color: #fff;
        line-height: 1.4;
        opacity: 0.9;
    }
}

.aside-info__icon {
    /* width: 60px; */
    height: 60px;
    flex-shrink: 0;
    margin: 0;
}

.aside-info__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: inline-block;
}

.aside-footer {
    text-align: center;
}

.btn-consult {
    display: block;
    background: #fff;
    color: #2b7a44;
    text-align: center;
    padding: 9px 20px;
    border-radius: 12px;
    border: 1px solid var(--color-2);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-consult:hover {
    background: var(--color-2);
    color: #fff;
    border-color: white;
}

@media (max-width: 991px) {
    .detail-block__aside {
        margin-top: 30px;
    }
}

/* Product Overview Section */
.product-overview {
    padding-top: 0;
}

.overview-title {
    font-size: clamp(32px, 8vw, 40px);
    color: #2b7a44;
    /* font-weight: 800; */
    margin-bottom: 25px;
    line-height: 1.2;
}

.overview-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 30px;
    text-align: justify;
}

.features-title,
.specs-title {
    font-size: 24px;
    color: #2b7a44;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #888;
    font-size: 16px;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ccc;
    font-weight: bold;
}

/* Specs Table */
.specs-table-wrapper {
    width: 100%;
    position: relative;
    max-height: 600px;
    overflow: hidden;
    transition: max-height 0.5s ease;

    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(0deg,
                #ffffff 39.66%,
                rgba(255, 255, 255, 0) 100%);
        z-index: 1;
    }

    &.expanded {
        margin-bottom: 10px;
        max-height: 100000px;

        &::after {
            opacity: 0;
            z-index: -1;
        }
    }
}

.specs-table {
    width: 100%;
}

/* Expand View More Specs */
.expand-more-specs {
    margin-top: 0px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #2b7a44;
    color: #2b7a44;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-more .icon-down {
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b7a44' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 13l5 5 5-5M7 6l5 5 5-5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.btn-view-more:hover {
    background: #2b7a44;
    color: #fff;
}


.product-related {
    padding: 50px 0;
    background-color: #fafafa;
    border-top: 1px solid #f1f5f9;

    .common-title02 {
        margin-bottom: 50px;
    }

    @media (max-width: 992px) {
        padding: 40px 0;

        .common-title02 {
            margin-bottom: 30px;
        }
    }
}

.product-related-slider {
    .slick-slide {
        padding: 0 10px;
    }

    .slick-list {
        margin: 0 -10px;
    }
}

/* Commitment Section */
.commitment-wrap {
    background: #2b7a44;
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 50px;

    .common-title {
        .title {
            color: #fff;
        }
    }
}

.commitment-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.commitment-item__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.commitment-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.commitment-item__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

@media (max-width: 1199px) {
    .commitment-list {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .commitment-item {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 767px) {
    .commitment-wrap {
        padding: 20px;
    }

    .commitment-title {
        font-size: 24px;
    }

    .commitment-list {
        padding: 15px;
    }

    .commitment-item {
        width: 100%;
    }
}

#specs-table-wrapper {
    margin-top: 30px;
}

#specs-table-wrapper table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    border-style: hidden !important;
    box-shadow: 0 0 0 1px #eee !important;
    margin-bottom: 20px !important;

}

#specs-table-wrapper th,
#specs-table-wrapper td {
    border: 1px solid #eee !important;
    padding: 12px 15px !important;
    text-align: left !important;
    display: table-cell !important;
    width: auto !important;
}

/* Main header row (first row) */
#specs-table-wrapper tr:first-child {
    background: #345D3F !important;
    color: white !important;
    font-weight: 700 !important;
}

#specs-table-wrapper tr:first-child td {
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Section heading rows (single column) */
#specs-table-wrapper tr.heading-row {
    background: #97C2A4 !important;
    color: white !important;
    font-weight: 700 !important;
}

#specs-table-wrapper tr.heading-row td {
    border: none !important;
    padding: 10px 15px !important;
    color: white !important;
}

/* Zebra striping or specific row backgrounds */
#specs-table-wrapper tr:nth-child(even):not(.heading-row):not(:first-child) {
    background: #fdfdfd !important;
}

/* Label column (first td in data rows) */
#specs-table-wrapper tr:not(.heading-row):not(:first-child) td:first-child {
    background: #f9f9f9 !important;
    width: 30% !important;
    font-weight: 500 !important;
}

/* Value cells alignment */
#specs-table-wrapper tr:not(.heading-row):not(:first-child) td:not(:first-child) {
    text-align: center !important;
}

#productGrid {
    gap: 42px 0;

    @media (max-width: 992px) {
        gap: 20px 0;
    }
}


.home-products__item {
    padding: 0;
    height: 100%;

}

.category-info {
    position: relative;
    padding: 30px;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 25px;

    @media (max-width: 767px) {
        padding: 20px;
        gap: 20px;
    }
}

.category-info__share {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;

    @media (max-width: 767px) {
        justify-content: center;
    }
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    svg {
        width: 18px;
        height: 18px;
    }

    &:hover {
        transform: translateY(-3px);
        color: #fff;
        box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
    }
}

.share-btn--facebook:hover {
    background: #1877f2;
}

.share-btn--twitter:hover {
    background: #1da1f2;
}

.share-btn--email:hover {
    background: #ea4335;
}

.share-btn--linkedin:hover {
    background: #0077b5;
}

.share-btn--copy:hover {
    background: #00a8ff;
}

/* Sidebar Search AJAX */
.sidebar-search {
    position: relative;
}

.sidebar-search__results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    max-height: 450px;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    padding: 10px;
}

.search-result-item {
    border-bottom: 1px solid #f1f5f9;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 8px;
}

.search-result-item__link:hover {
    background: #f8fafc;
}

.search-result-item__image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f1f5f9;
}

.search-result-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-item__info {
    flex: 1;
    min-width: 0;
}

.search-result-item__name {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.search-results-loading {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--color-3, #2a7e43);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.search-results-empty {
    padding: 20px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.category-info__body {
    flex: 1;
}

.category-info__des {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 20px;
    border-left: 4px solid var(--color-3, #2a7e43);
}

.category-info__content {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;

    p {
        margin-bottom: 15px;
    }

    img {
        border-radius: 12px;
        margin: 20px 0;
    }
}

/* ─── PRODUCT DETAIL V2 ───────────────────────────────────── */
.product-detail-v2 {
    padding: 80px 0;
    background: #fff;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.product-gallery__main {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 10px;
    /* height: 500px; */
    position: relative;
    overflow: hidden;

    @media (max-width: 768px) {
        height: 350px;
    }
}

.detail-slider__for {
    height: 100%;
}

.detail-slider__for .slick-list,
.detail-slider__for .slick-track {
    height: 100%;
}

.detail-slider__for-item {
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.detail-slider__for-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.detail-slider__nav {
    /* margin-top: 20px; */
}

.detail-slider__nav .slick-list {
    margin: 0 -10px;
}

.detail-slider__nav .slick-slide {
    padding: 0 10px;
}

.detail-slider__nav-item {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    height: 90px;
    display: flex !important;
    align-items: center;
    justify-content: center;

    &::after {
        display: none !important;
    }

    img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    &:hover,
    &.slick-current {
        border-color: var(--color-1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
}


.product-info-summary__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: 25px;
    line-height: 1.2;
}

.product-info-summary__short-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.product-specs-table {
    margin-bottom: 40px;
}

.product-specs-table table {
    width: 100% !important;
    border-collapse: collapse;
    /* margin: 0 !important; */
}

.product-specs-table table tr:first-child td,
.product-specs-table table th {
    background: #f8f9fa;
    color: var(--color-1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.product-specs-table table td,
.product-specs-table table th {
    padding: 15px 20px;
    border: 1px solid #eee;
    font-size: 14px;
    line-height: 1.5;
    text-align: left !important;
}

.product-specs-table table tr td:first-child {
    width: 35%;
    background: #fafafa;
    color: #666;
    font-weight: 500;
}

.product-specs-table table tr td:last-child {
    color: #333;
    font-weight: 600;
}

.product-specs-table table tr:hover td {
    background: #fdfdfd;
}

.product-documents__title {
    font-size: 18px;
    font-weight: 700;
    color: #f1b34a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    text-decoration: none;
    transition: all 0.3s;
}

.document-item__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
}

.document-item__name {
    font-size: 15px;
    color: var(--color-1);
    font-weight: 500;
}

.document-item:hover .document-item__name {
    text-decoration: underline;
}

/* Tabs */
.product-tabs {
    margin-top: 40px;

    @media (max-width: 768px) {
        margin-top: 20px;
    }
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.tab-link {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.tab-link.active {
    color: var(--color-1);
}

.tab-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.product-main-info>.row {
    --gutter: 20px !important;
}

@media (max-width: 992px) {
    .product-info-summary {
        /* margin-top: 40px; */
    }

    .product-info-summary__title {
        font-size: 24px;
    }

    .tab-link {
        padding: 15px 20px;
    }

    .product-main-info>.row {
        --gutter: 10px !important;
    }

    .product-detail-v2 {
        padding: 30px 0;
    }
}

/* ─── PRODUCT DETAIL ACTIONS ──────────────────────────────── */
.product-info-summary .slide-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    opacity: 1;
    filter: none;
}

.product-info-summary .slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.product-info-summary .slide-btn-primary {
    background: linear-gradient(198deg, var(--color-3) 0%, var(--color-4) 100%);
    color: #fff;
    border: none;
}

.product-info-summary .slide-btn-primary:hover {
    background: linear-gradient(198deg, var(--color-1) 0%, var(--color-2) 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.product-info-summary .slide-btn-outline {
    background: #fff;
    color: var(--color-3);
    border: 1px solid var(--color-3);
}

.product-info-summary .slide-btn-outline:hover {
    background: var(--color-3);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .product-info-summary .slide-actions {
        flex-direction: column;
        gap: 12px;
    }

    .product-info-summary .slide-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ─── PRODUCT DETAIL PRICE & QUANTITY ────────────────────── */
.product-detail-price {
    margin: 20px 0;
}

.quantity-control-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-label {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8fafc;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #e2e8f0;
    color: var(--color-3);
}

.qty-input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 576px) {
    .quantity-control-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}