.ksartech-phones-widget {
    background: #ededed;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 5px rgba(255,255,255,0.05);
    direction: rtl;
}

.phones-header {
    background: linear-gradient(to right, #f85700, #ffcc00);
    color: white;
    padding: 12px 0 8px 0;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.phones-header.popular {
    margin-top: 10px;
}

.phones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
    text-align: center;
}

.phone-item {
    background-color: #c5c5c5;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    overflow: hidden;
    display: block;
    transition: all 0.3s ease;
}

.phone-item:hover {
    background: #444;
    transform: scale(1.03);
}

.phone-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.phone-item .title {
    display: block;
    padding: 6px 5px;
}


.dark-skin .ksartech-phones-widget {
    background: #1e1e1e;
    
}
.dark-skin .phone-item {
    background-color: #2b2b2b;
}

