body, .ctp-tabs-wrapper {
    font-family: 'Montserrat', Arial, sans-serif !important;
}

.ctp-tabs-wrapper {
    margin: 30px 0;
}

.ctp-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
    gap: 8px;
}

.ctp-tab {
    padding: 13px 32px;
    cursor: pointer;
    background: #f8f8f8;
    border: none;
    border-radius: 18px 18px 0 0;
    font-weight: 600;
    color: #333;
    font-size: 1.07rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: -2px;
}
.ctp-tab.active {
    background: #8a1c1c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(138,28,28,0.07);
}

.ctp-tabs-content {
    /*background: #fff;*/
    /*border-radius: 0 0 18px 18px;*/
    padding: 24px 10px 10px 10px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.06);*/
}

.ctp-tab-content {
    display: none;
}
.ctp-tab-content.active {
    display: block;
}

.ctp-category-image {
    text-align: center;
    margin-bottom: 24px;
}
.ctp-category-image img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(138,28,28,0.10);
    background: #fff;
    border: 2px solid #f4e7db;
}

.ctp-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.ctp-product-card {
    background: #fff8f3;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(138,28,28,0.07);
    padding: 22px 18px 18px 18px;
    width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #f3e7d7;
}
.ctp-product-card:hover {
    box-shadow: 0 6px 24px rgba(138,28,28,0.13);
    transform: translateY(-3px) scale(1.03);
}

.ctp-product-image img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(138,28,28,0.08);
    border: 1px solid #f4e7db;
}

.ctp-product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.ctp-product-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #8a1c1c;
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: 0.5px;
}

.ctp-product-price {
    color: #b9855a;
    font-weight: 700;
    font-size: 1.02rem;
    background: #fff;
    border-radius: 6px;
    padding: 4px 14px;
    margin-top: 2px;
    box-shadow: 0 1px 4px rgba(138,28,28,0.05);
}

.ctp-product-card a {
    text-decoration: none !important;
    color: inherit;
    pointer-events: none;
}

@media (max-width: 900px) {
    .ctp-products-grid {
        gap: 20px;
    }
    .ctp-product-card {
        width: 45vw;
        min-width: 160px;
        max-width: 260px;
    }
}
@media (max-width: 600px) {
    .ctp-products-grid {
        flex-direction: column;
        align-items: center;
    }
    .ctp-product-card {
        width: 95vw;
        max-width: 350px;
    }
    .ctp-category-image img {
        width: 70px;
        height: 70px;
    }
}
