/*
 Theme Name: Astra Child
 Theme URI: https://wpastra.com/
 Description: Child theme for Astra
 Author: Ahmad Raza
 Author URI: https://yourwebsite.com/
 Template: astra
 Version: 1.0.0
*/

/* Add your custom CSS below */


.da-breadcrumbs{
    display:inline-flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.da-breadcrumbs a{
    color:#444;
    text-decoration:none;
    transition:0.3s ease;
    position:relative;
}

.da-breadcrumbs a:hover{
    color:#E10600;
}

.da-breadcrumbs .sep{
    color:#FF4D4D;
    font-weight:700;
}

.da-breadcrumbs span{
    color:#444;
}

/* Optional Gradient Hover Effect */
.da-breadcrumbs a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:linear-gradient(90deg,#E10600,#FF4D4D);
    transition:0.3s;
}

.da-breadcrumbs a:hover::after{
    width:100%;
}