/* ==========================================================================
   Blog Post Page Styles
   ========================================================================== */

.blog-container {
    padding-top: 20px;
    padding-bottom: 50px;
}

/* Global text-overflow safety net */
.blog-container * {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #0f766e;
}

.breadcrumb__sep {
    font-size: 14px;
    color: #cbd5e1;
}

.breadcrumb__current {
    color: #94a3b8;
}

/* Main Layout Grid (2 Columns) */
.blog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    min-width: 0;
}

/* -----------------------------
   Sidebar Styles (Right)
   ----------------------------- */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-widget__title {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.sidebar-widget__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 2px;
    background-color: #0f766e;
    border-radius: 2px;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-categories li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    background-color: #f8fafc;
}

.sidebar-categories li.active a,
.sidebar-categories li a:hover {
    background-color: #f1f5f9;
    color: #0f766e;
}

.sidebar-categories li a svg {
    color: #64748b;
}

.sidebar-categories li.active a svg {
    color: #0f766e;
}

/* Support Widget Inside Sidebar */
.sidebar-widget--support {
    background: linear-gradient(180deg, #1e3a37 0%, #152c2a 100%);
    color: #ffffff;
    text-align: center;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-widget__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #ffffff;
}

.sidebar-widget--support h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sidebar-widget--support p {
    font-size: 11px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 16px;
}

.support-widget__btn {
    background-color: #ffffff;
    color: #1e3a37;
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.support-widget__btn:hover {
    opacity: 0.9;
}

/* Related Posts Widget */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.related-post-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: center;
}

.related-post-item__img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
}

.related-post-item__info h4 {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.5;

    /* Line clamp for 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-item__cat {
    display: block;
    font-size: 10px;
    color: #363c43;
}

.related-post-item__date {
    display: block;
    font-size: 10px;
    color: #363c43;
}

.sidebar-widget__more-btn {
    display: block;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 0;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-widget__more-btn:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

/* -----------------------------
   Main Article Content (Left)
   ----------------------------- */
.article-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.article-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.article-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.article-hero img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.article-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background-color: #0f766e;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.article-header {
    margin-bottom: 24px;
}

.article-title {
    font-size: 25px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.article-excerpt {
    font-size: 13px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.article-meta__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #3b4048;
}

/* Table of Contents */
.table-of-contents {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.toc-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.toc-list {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.toc-list li a {
    font-size: 11px;
    color: #0f766e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toc-list li a::before {
    content: "•";
    color: #0f766e;
    font-size: 14px;
}

/* Article Body Typography */
.article-body h2 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-body p {
    font-size: 15.5px;
    color: #475569;
    line-height: 2.05;
    word-spacing: 1px;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 16px;
}

/* -----------------------------
   Content Sections (Description / Points / FAQ)
   ----------------------------- */
.content-section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #f1f5f9;
}

.content-section:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 18px 0;
}

.section-title__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 9px;
    background-color: #ecfdf5;
    color: #0f766e;
}

.section-text {
    font-size: 15.5px;
    color: #475569;
    line-height: 2.05;
    letter-spacing: 0;
    word-spacing: 1px;
    text-align: justify;
    text-justify: inter-word;
    margin: 0;
}

/* Key Points Checklist (Card Style) - title on top, description below, like FAQ */
.article-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-checklist li {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
}

.checklist-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.checklist-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #0f766e;
    color: #ffffff;
}

.checklist-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.95;
    word-spacing: 1px;
    text-align: justify;
    text-justify: inter-word;
    margin: 0 0 0 32px;
    padding-right: 32px;
    border-right: 2px solid #e2e8f0;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 18px 20px;
    transition:
        border-color 0.2s,
        background-color 0.2s;
}

.faq-item:hover {
    background-color: #ffffff;
    border-color: #e2e8f0;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.7;
}

.faq-question__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 7px;
    background-color: #0f766e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.faq-answer {
    font-size: 14px;
    color: #64748b;
    line-height: 1.95;
    word-spacing: 1px;
    text-align: justify;
    text-justify: inter-word;
    margin: 0 0 0 32px;
    padding-right: 32px;
    border-right: 2px solid #e2e8f0;
}

/* Brush Types 3-Column Grid */
.brush-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.brush-type-card {
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    background-color: #ffffff;
}

.brush-type-card__img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.brush-type-card__img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.brush-type-card h3 {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.brush-type-card p {
    font-size: 10px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Tip Box */
.article-tip-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 24px;
}

.article-tip-box__icon {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.article-tip-box__content strong {
    display: block;
    font-size: 12px;
    color: #1e293b;
    margin-bottom: 4px;
}

.article-tip-box__content p {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 0;
}

/* Article Footer / Feedback */
.article-footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-feedback {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #64748b;
}

.like-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 11px;
    color: #64748b;
    transition: all 0.2s;
}

.like-btn:hover {
    background-color: #f1f5f9;
    color: #e11d48;
}

.article-share {
    display: flex;
    gap: 10px;
}

.article-share a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.article-share a:hover {
    background-color: #0f766e;
    color: #ffffff;
}

/* -----------------------------
   Related Products Section
   ----------------------------- */
.related-products-section {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    min-width: 0;
    overflow: hidden;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 2;
}

.slider-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.slider-btn:hover {
    background-color: #0f766e;
    color: #ffffff;
    border-color: #0f766e;
}

.related-products-section .products-grid {
    display: flex;
    flex-direction: row;
    direction: rtl;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.related-products-section .products-grid::-webkit-scrollbar {
    display: none;
}

.related-products-section .product-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    position: relative;
}

.related-products-section .wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 13px;
}

.related-products-section .product-img {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.related-products-section .product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.related-products-section .product-category {
    font-size: 11px;
    color: #33383f;
    margin-bottom: 4px;
}

.related-products-section .product-title {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-products-section .product-price {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.related-products-section .btn-add-cart {
    width: 100%;
    background-color: #13171a;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: 0.2s;
    text-decoration: none;
}

.related-products-section .btn-add-cart:hover {
    background-color: #0f766e;
}

/* -----------------------------
   Responsive Design
   ----------------------------- */

/* Large Tablets / Small Laptops */
@media (max-width: 1200px) {
    .related-products-section .product-card {
        flex: 0 0 180px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: 2;
    }

    .article-main {
        order: 1;
    }

    .article-hero img {
        height: 260px;
    }

    .article-title {
        font-size: 19px;
    }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
    .blog-container {
        padding-top: 12px;
        padding-bottom: 30px;
    }

    .article-card {
        padding: 16px;
    }

    .related-products-section {
        padding: 16px;
    }

    .toc-list {
        gap: 14px;
    }

    .article-meta {
        gap: 12px;
    }

    .article-footer {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }

    .related-products-section .product-card {
        flex: 0 0 160px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .brush-types-grid {
        grid-template-columns: 1fr;
    }

    .article-hero img {
        height: 200px;
    }

    .article-title {
        font-size: 19px;
    }

    .article-excerpt {
        font-size: 12px;
    }

    .article-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .sidebar-widget {
        padding: 16px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .toc-list {
        flex-direction: column;
        gap: 10px;
    }

    .article-body h2 {
        font-size: 16px;
    }

    .article-body p {
        font-size: 14px;
    }

    .article-tip-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .content-section {
        margin-top: 24px;
        padding-top: 20px;
    }

    .faq-item {
        padding: 14px 16px;
    }

    .faq-answer {
        margin: 0;
        padding-right: 16px;
    }

    .related-products-section .product-card {
        flex: 0 0 150px;
    }

    .slider-btn {
        width: 28px;
        height: 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog-container {
        padding-top: 8px;
    }

    .article-card,
    .related-products-section,
    .sidebar-widget {
        border-radius: 14px;
    }

    .article-hero img {
        height: 170px;
    }

    .article-title {
        font-size: 19px;
    }

    .breadcrumb {
        font-size: 10px;
        flex-wrap: wrap;
    }

    .related-post-item__img {
        width: 44px;
        height: 44px;
    }

    .related-post-item__info h4 {
        font-size: 10px;
    }

    .related-products-section .product-card {
        flex: 0 0 130px;
        padding: 10px;
    }

    .related-products-section .product-img {
        height: 90px;
    }

    .related-products-section .product-title {
        font-size: 12px;
    }

    .related-products-section .btn-add-cart {
        font-size: 9px;
        padding: 6px 8px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .article-title {
        font-size: 19px;
    }

    .article-hero img {
        height: 150px;
    }

    .related-products-section .product-card {
        flex: 0 0 115px;
    }

    .related-products-section .product-img {
        height: 75px;
    }

    .checklist-desc,
    .faq-answer {
        margin-right: 0;
        padding-right: 16px;
    }
}

.empty-post-detail-product {
    margin-right: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-img {
    height: 180px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

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

.product-title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    color: #111;
    margin-bottom: 12px;
}

/* ================= تخفیف ================= */
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #16a34a;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 9px;
    border-radius: 20px;
    z-index: 2;
}

.price-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.price-line .product-price {
    margin-bottom: 0;
}

.price-variant-note {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    margin-top: -6px;
    margin-bottom: 10px;
}

.product-price-old {
    font-size: 11px;
    color: #e11d48;
    text-decoration: line-through;
}

.product-price.price-discounted {
    color: #16a34a;
}

/* ================= دکمه افزودن به سبد ================= */
.btn-add-cart {
    width: 100%;
    background-color: var(--bg-dark);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.2s;
    font-family: var(--font-family);
    font-weight: normal;
    line-height: 1.4;
    min-height: 36px;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
}

.btn-add-cart:hover {
    background-color: var(--accent-green);
}

button.btn-add-cart {
    appearance: none;
    -webkit-appearance: none;
}

a.btn-add-cart {
    text-decoration: none;
}

.btn-add-cart i {
    font-size: 11px;
    line-height: 1;
}

/* ==========================================================================
   ریسپانسیو (از shop-responsive.css)
   ========================================================================== */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card {
        padding: 12px !important;
        min-width: 0 !important;
    }

    .product-img {
        height: 150px !important;
    }

    .product-title {
        font-size: 11px !important;
    }

    .product-price {
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .product-card {
        padding: 10px 8px !important;
        min-width: 0 !important;
    }

    .product-img {
        height: 130px !important;
    }

    .btn-add-cart {
        font-size: 10px !important;
        padding: 6px 4px !important;
        min-height: 32px !important;
    }
}

@media (max-width: 400px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }

    .product-card {
        padding: 8px 6px !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .product-img {
        height: 110px !important;
        margin-bottom: 6px !important;
    }

    .product-title {
        font-size: 10px !important;
        line-height: 1.3 !important;
        height: 2.6em !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .product-price {
        font-size: 10px !important;
        margin-bottom: 6px !important;
    }

    .btn-add-cart {
        font-size: 9px !important;
        padding: 4px 2px !important;
        gap: 2px !important;
        min-height: 28px !important;
        white-space: nowrap !important;
        letter-spacing: -0.2px !important;
    }

    .btn-add-cart i {
        font-size: 9px !important;
    }
}
