.aa-prod-view-size a {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ccc;
    margin: 5px;
    text-decoration: none;
    color: black;
    border-radius: 5px;
}

.aa-prod-view-size a.active {
    background-color: #ff871c;
    /* สีเหลือง */
    color: white;
    border: 1px solid #ff871c;
}

.designer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.designer-box h3 {
    margin-bottom: 10px;
}

.designer-box figure {
    width: 100%;
    display: flex;
    justify-content: center;
}

.designer-box img {
    width: 80%;
    height: auto;
    border-radius: 50%;
}

.designer-box a {
    display: block;
    margin-top: 10px;
}

.designer-box a:hover { 
    color: #ff871c;
} 
.designer-profile {
    display: flex;
    align-items: center;
    gap: 20px; /* ระยะห่างระหว่างรูปกับข้อมูล */
    flex-wrap: wrap; /* ให้รองรับการย่อหน้าจอ */
    padding: 20px 10px;
}

.designer-img {
    width: 100%; /* ปรับขนาดรูป */
    max-width: 150px; /* จำกัดขนาดไม่ให้ใหญ่เกินไป */
    border-radius: 50%; /* ทำให้เป็นวงกลม */
}

.designer-info {
    flex: 1; /* ให้ส่วนข้อมูลขยายเต็มพื้นที่ที่เหลือ */
}

/* Responsive: ถ้าหน้าจอเล็กกว่า 768px ให้รูปอยู่บน ข้อมูลอยู่ล่าง */
@media (max-width: 768px) {
    .designer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .designer-img {
        width: 50%; /* ให้รูปใหญ่ขึ้นเมื่ออยู่ตรงกลาง */
        max-width: 200px;
    }
}
