/* ── WCDA – Front-end Styles ────────────────────────────────────────────────── */

/* ── Decoration Tabs Container ──────────────────────────────────────────────── */
.wcda-decoration-tabs {
    margin: 16px 0 20px;
    border-top: 1px solid #e0e0e0;
}

/* ── Tab Item ────────────────────────────────────────────────────────────────── */
.wcda-tab-item {
    border-bottom: 1px solid #e0e0e0;
}

/* ── Tab Header (accordion trigger) ─────────────────────────────────────────── */
.wcda-tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}
.wcda-tab-header:hover {
    background: #faf5fc;
}

.wcda-tab-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.01em;
}

.wcda-tab-toggle {
    font-size: 20px;
    font-weight: 300;
    color: #7A2B89;
    line-height: 1;
    min-width: 24px;
    text-align: right;
    transition: transform 0.2s;
}

.wcda-tab-item.wcda-open .wcda-tab-toggle {
    transform: rotate(0deg); /* Already shows '−' via JS */
}

/* ── Tab Body ─────────────────────────────────────────────────────────────────  */
.wcda-tab-body {
    display: none;
    padding: 4px 0 20px;
}

/* ── Description list ────────────────────────────────────────────────────────── */
.wcda-tab-description ul {
    margin: 0 0 16px;
    padding-left: 20px;
    list-style: disc;
}
.wcda-tab-description li {
    margin-bottom: 6px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.55;
}
.wcda-tab-description strong {
    color: #333;
}

/* ── CTA Buttons ─────────────────────────────────────────────────────────────── */
.wcda-open-designer {
    display: inline-block;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.wcda-btn-embroidery {
    background: #7A2B89 !important;
    color: #fff !important;
    border-color: #7A2B89 !important;
}
.wcda-btn-embroidery:hover {
    background: #5e2069 !important;
    color: #fff !important;
}

.wcda-btn-printing {
    background: #F3805D !important;
    color: #fff !important;
    border-color: #F3805D !important;
}
.wcda-btn-printing:hover {
    background: #d96840 !important;
    color: #fff !important;
}

.wcda-no-designer-notice {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* ── Switch-tab link inside description ──────────────────────────────────────── */
.wcda-tab-description a.wcda-switch-tab {
    color: #7A2B89;
    text-decoration: underline;
    cursor: pointer;
}

/* ── Designer sidebar – location box ─────────────────────────────────────────── */
.wcda-location-box label {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Designer sidebar – price display ───────────────────────────────────────── */
#wcda-price-display {
    border-radius: 3px;
    font-size: 13px;
}

/* ── Bounding box overlay on canvas ─────────────────────────────────────────── */
#wcda-bbox-overlay {
    border-radius: 2px;
}
