.custom-accordion-7245d7ae {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ca-item {
    background: #f8f5eb;
    border-radius: 8px;
    overflow: hidden;
}
.ca-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
}
.ca-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ca-main-icon {
    font-size: 40px;
    width: 50px;
    display: flex;
    justify-content: center;
}
.ca-main-icon svg {
    width: 40px;
    height: auto;
    fill: #333;
}
.ca-step-indicator {
    background: #cba358;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.ca-title {
    margin: 0;
    font-size: 18px;
    color: #333;
}
.ca-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ca-hours {
    font-size: 14px;
    color: #666;
}
.ca-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    width: 20px;
    height: 20px;
}
.ca-chevron-svg {
    stroke: #27140C; /* Using your site text color */
}
.ca-item.active .ca-toggle-icon {
    transform: rotate(180deg);
}
.ca-content {
    border-top: 1px solid #e1dac6;
}
.ca-content-inner {
    padding: 12px; /* Set to 12px around */
    width: 100%; /* Ensure full width */
    color: #444;
    line-height: 1.6;
    box-sizing: border-box; /* Include padding in width */
}

/* Mobile Responsiveness Elementor Breakpoint */
@media (max-width: 767px) {
    .ca-header {
        padding: 15px;
    }
    .ca-header-left {
        gap: 10px;
    }
    
    /* Hide Step Icons on Mobile */
    .custom-accordion-7245d7ae .ca-step-indicator {
        display: none !important;
    }

    .ca-title {
        font-size: 16px;
    }
    
    /* Hide Hours on Mobile */
    .custom-accordion-7245d7ae .ca-hours {
        display: none !important; /* Force hide hours on mobile */
    }
    
    .ca-content-inner {
        padding: 12px; /* Maintain 12px padding on mobile */
    }
}
