/* WooCommerce Catalogue Buttons – Frontend Styles */

/* ── Archive Button ──────────────────────────────── */
.wcb-archive-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 6px;
    transition: opacity 0.2s ease, transform 0.15s ease;
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
}

.wcb-archive-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #fff !important;
}

/* ── Download Catalogue Button (Product Page) ────── */
.wcb-download-wrap {
    margin-bottom: 16px;
}

.wcb-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 6px;
    padding: 12px 28px;
    color: #fff !important;
    border: none;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    cursor: pointer;
}

.wcb-download-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    color: #fff !important;
}

.wcb-btn-icon {
    font-size: 1.1em;
    line-height: 1;
}

.wcb-btn-text {
    line-height: 1;
}
