.product-price {
    font-size: 1.2rem;
    color: var(--main);
    font-weight: 600;
}

.product-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    padding: 4px 0;
    font-size: 0.95rem;
}

.color-box {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ccc;
    transition: border-color 0.2s ease;
}

.color-box:hover {
    border-color: #007bff;
}

.color-box.selected {
    border: 2px solid #000;
}

.bg-orange {
    background-color: #FE6A00 !important;
}

.size-btn {
    border: 1px solid #015BA9;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    min-width: 50px;
    text-align: center;
    color: #015BA9;
}

.size-btn:hover {
    background: var(--main);
    color: #fff;
}

.product-main-img img {
    width: 100%;
    border-radius: 8px;
}

.thumbs img {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
}

.thumbs img:hover {
    border-color: var(--main);
}

.product-icons i {
    font-size: 1.2rem;
    color: var(--main);
    margin-left: 15px;
    background-color: #E9F3FF;
    padding: 10px;
    border-radius: 50%
}

@media (max-width: 768px) {
    .product-section {
        padding: 15px;
    }
}

.product-details {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background-color: #015AAA;
    border: none;
    border-radius: 12px;
    padding: 8px;
}

.specs-list li {
    display: grid;
    grid-template-columns: 150px 1fr;
    /* 150px للعمود الأول ثابت */
    padding: 4px 0;
}

.specs-part {
    color: #015AAA;
}

.thumb {
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

