/**
* Theme Name: Urna Child
* Description: This is a child theme for Urna
* Author: Thembay
* Author URI: https://thembay.com/
* Version: 2.4.11
* Template: urna
*/

/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */

/* ซ่อนลูกศรเดิม */
.woof_childs_list_opener .woof_is_closed::before,
.woof_childs_list_opener .woof_is_opened::before {
    display: none;
}

/* เพิ่มเครื่องหมาย + เมื่อปิด */
.woof_childs_list_opener .woof_is_closed::after {
    content: '+';
    font-weight: normal;
    font-size: 30px;
    color: #333;
    transition: color 0.3s ease;
}

/* เปลี่ยนเป็น - เมื่อเปิด */
.woof_childs_list_opener .woof_is_opened::after {
    content: '-';
    font-weight: normal;
    font-size: 30px;
    color: #333;
    transition: color 0.3s ease;
}

/* ✅ เมื่อ hover: เปลี่ยนสีของเครื่องหมาย */
.woof_childs_list_opener:hover .woof_is_closed::after,
.woof_childs_list_opener:hover .woof_is_opened::after {
    color: #F9B105; /* หรือสีที่คุณต้องการ เช่น #F9B105 */
}

