/* Modal Overlay */
.wcda-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.wcda-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Modal Wrapper */
.wcda-modal-wrap {
    background: #fff;
    border-radius: 12px;
    width: 95%;
    max-width: 700px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    font-family: sans-serif;
    max-height: 90vh;
    overflow-y: auto;
	color:#140b0b !important;
}

.wcda-modal-wrap h2{
	color:#140b0b;
}

/* Service Grid */
.wcda-addon-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wcda-item-wrap {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

.wcda-item-wrap.selected {
    border-color: #f39c12;
    background: #fffaf0;
}

.wcda-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.wcda-head label {
    font-weight: 700;
    flex-grow: 1;
    cursor: pointer;
    color: #000;
}

.wcda-head input {
    width: 20px;
    height: 20px;
    accent-color: #f39c12;
}

/* Collapsible Detail Drawers */
.wcda-toggle {
    font-size: 13px;
    color: #3498db;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.wcda-drawer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
}

.wcda-drawer.open {
    max-height: 300px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.wcda-feat {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 6px;
}

.wcda-feat:before {
    content: '✓';
    color: #27ae60;
    font-weight: 900;
}

/* Actions Box */
.wcda-foot {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.wcda-sub {
    background: rgb(244,190,63)!important;
    color: #fff;
    border: none;
    padding: 15px 60px !important;
    border-radius: 40px !important;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

.wcda-skip {
    background: none !important;
    border: none !important;
    color: #777;
    text-decoration: underline;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .wcda-addon-list {
        grid-template-columns: 1fr;
    }
}