.pct-44209393-wrapper {
    width: 100%;
}

.pct-44209393-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.pct-44209393-tab-btn {
    cursor: pointer;
    border: none;
    outline: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    background-color: #f0f0f0;
    color: #333;
    transition: all 0.3s ease;
}

.pct-44209393-tab-btn:hover {
    opacity: 0.85;
}

.pct-44209393-tab-btn.pct-44209393-active {
    background-color: #4CAF50;
    color: #fff;
}

.pct-44209393-tab-panel {
    display: none;
}

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

.pct-44209393-products-grid {
    display: grid;
    gap: 20px;
}

.pct-44209393-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pct-44209393-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pct-44209393-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pct-44209393-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.pct-44209393-product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pct-44209393-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f9f9f9;
    margin-bottom: 10px;
}

.pct-44209393-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.pct-44209393-product-card:hover .pct-44209393-image-wrapper img {
    transform: scale(1.05);
}

.pct-44209393-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.3;
}

.pct-44209393-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 13px;
}

.pct-44209393-rating-value {
    font-weight: 700;
    color: #333;
}

.pct-44209393-stars {
    display: inline-flex;
    gap: 1px;
}

.pct-44209393-star-filled {
    color: #FFB800;
}

.pct-44209393-star-empty {
    color: #DDD;
}

.pct-44209393-rating-count {
    color: #999;
    font-size: 12px;
}

.pct-44209393-product-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pct-44209393-product-title a {
    color: inherit;
    text-decoration: none;
}

.pct-44209393-product-title a:hover {
    color: #4CAF50;
}

.pct-44209393-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pct-44209393-sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.pct-44209393-regular-price {
    font-size: 14px;
    color: #999;
}

.pct-44209393-add-to-cart {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border: 2px solid #333;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pct-44209393-add-to-cart:hover {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #fff;
}

.pct-44209393-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .pct-44209393-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pct-44209393-cols-4,
    .pct-44209393-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pct-44209393-tabs-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 5px;
    }

    .pct-44209393-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .pct-44209393-tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .pct-44209393-cols-4,
    .pct-44209393-cols-3,
    .pct-44209393-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pct-44209393-sale-price {
        font-size: 15px;
    }

    .pct-44209393-add-to-cart {
        font-size: 12px;
        padding: 8px 0;
    }
}
