/**
 * Clubigo points widget — shared, customizable styles.
 *
 * One generic "widget" (icon + text) rendered in three size contexts
 * (shop-loop badge, product-page box, thank-you card) and 6 selectable
 * visual styles. Structure: .tp-clubigo-points-widget + .tpc-style-*
 * (colors/shape) + .tpc-size-* (padding/font sized for its context).
 */

.tp-clubigo-points-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.tp-clubigo-points-widget .tpc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.tp-clubigo-points-widget .tpc-icon .dashicons {
    width: 1em;
    height: 1em;
    font-size: 1.2em;
}

.tp-clubigo-points-widget .tpc-text strong {
    font-weight: 700;
}

/* ---------- Size contexts ---------- */

.tpc-size-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.tpc-size-box {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0;
}
.tpc-size-box .tpc-icon .dashicons {
    font-size: 18px;
}

.tpc-size-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}
.tpc-size-card .tpc-icon .dashicons {
    font-size: 40px;
    width: 1em;
    height: 1em;
    margin-bottom: 10px;
}
.tpc-size-card .tpc-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
}
.tpc-size-card .tpc-text {
    font-size: 16px;
    line-height: 1.5;
}
.tpc-size-card .tpc-subtext {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px;
}

/* ---------- Visual styles ---------- */

/* 1. Classic — matches the plugin's original look */
.tpc-style-classic.tpc-size-badge {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}
.tpc-style-classic.tpc-size-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.tpc-style-classic.tpc-size-card {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 1px solid #ba68c8;
    color: #4a148c;
}
.tpc-style-classic.tpc-size-card .tpc-title { color: #7b1fa2; }

/* 2. Minimal — no background, just icon + text */
.tpc-style-minimal {
    background: transparent;
    color: inherit;
    border: none;
    padding-left: 0;
    padding-right: 0;
}
.tpc-style-minimal.tpc-size-box,
.tpc-style-minimal.tpc-size-badge {
    padding: 2px 0;
}
.tpc-style-minimal .tpc-icon { color: #667eea; }

/* 3. Pill — solid brand color, fully rounded */
.tpc-style-pill {
    background: #5c5076;
    color: #fff;
    border-radius: 999px;
}
.tpc-style-pill.tpc-size-card { border-radius: 20px; }

/* 4. Outline — colored border, transparent fill */
.tpc-style-outline {
    background: #fff;
    color: #5c5076;
    border: 2px solid #5c5076;
}

/* 5. Gradient — bold, eye-catching */
.tpc-style-gradient {
    background: linear-gradient(135deg, #5c5076 0%, #6cc6c9 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(92, 80, 118, 0.3);
}

/* 6. Banner — full-width bar (badge/box only; card is already full-width) */
.tpc-style-banner.tpc-size-badge,
.tpc-style-banner.tpc-size-box {
    display: flex;
    width: 100%;
    justify-content: center;
    background: #fff3cd;
    color: #7a5c00;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
}
.tpc-style-banner.tpc-size-card {
    background: #fff3cd;
    color: #7a5c00;
    border: 1px solid #ffeaa7;
}
.tpc-style-banner.tpc-size-card .tpc-title { color: #7a5c00; }

/* Hover lift, skipped for minimal/banner which shouldn't "float" */
.tp-clubigo-points-widget:not(.tpc-style-minimal):not(.tpc-style-banner):hover {
    transform: translateY(-2px);
}

/* ---------- Shop badge positioning ---------- */

/* Overlaid on the product image (original default) */
.tpc-pos-overlay-tr,
.tpc-pos-overlay-tl {
    position: absolute;
    top: 8px;
    z-index: 2;
}
.tpc-pos-overlay-tr { right: 8px; }
.tpc-pos-overlay-tl { left: 8px; }

/* In the normal document flow of the product card */
.tpc-pos-below-image,
.tpc-pos-below-title,
.tpc-pos-near-price,
.tpc-pos-below-cart {
    position: static;
    margin: 6px 0;
}

/* The product card needs relative positioning for the overlay variants to
   anchor correctly — WooCommerce's own theme markup doesn't guarantee this. */
.woocommerce ul.products li.product {
    position: relative;
}

@media (max-width: 768px) {
    .tpc-size-box { padding: 10px 14px; font-size: 13px; }
    .tpc-size-badge { padding: 4px 8px; font-size: 11px; }
}

[dir="rtl"] .tp-clubigo-points-widget { direction: rtl; text-align: right; }
