body {
    background: #050505;
    color: #fff;
}

.pytes-card-content {
    padding: 28px;
}

.pytes-card-content h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.pytes-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pytes-meta span {
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 100px;
    font-size: 13px;
}

.pytes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff7b00;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
}

.pytes-btn:hover {
    background: #ff922d;
}

@media(max-width:1200px){

    .pytes-products-grid {
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:992px){

    .pytes-layout {
        grid-template-columns: 1fr;
    }

    .pytes-products-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .pytes-sidebar {
        position: relative;
        top: auto;
    }

}

@media(max-width:768px){

    .pytes-products-grid {
        grid-template-columns: 1fr;
    }

}