/* ==========================================================
   Foxco Offer Cards — v1.0.0
   Styles: light | dark | orange | minimal
   ========================================================== */

/* ── Base Card ─────────────────────────────────────────── */
.foxco-offer-card {
    position: relative;
    border-radius: 20px;
    padding: 36px 32px 32px;
    overflow: hidden;
    font-family: inherit;
    max-width: 520px;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.foxco-offer-card:hover {
    transform: translateY(-4px);
}

.foxco-oc-price-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 8px;
}
.foxco-oc-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.foxco-oc-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
}
.foxco-oc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.foxco-oc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}
.foxco-oc-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 11px;
}
.foxco-oc-cta {
    display: block;
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-sizing: border-box;
}
.foxco-oc-cta:hover {
    opacity: 0.88;
    transform: scale(1.01);
    text-decoration: none;
}

/* Decorative bg shape (light & dark) */
.foxco-oc-bg-shape {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 220px;
    height: 260px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}
.foxco-offer-card > *:not(.foxco-oc-bg-shape) {
    position: relative;
    z-index: 1;
}

/* ==========================================================
   STYLE 1 — Light (like the screenshot)
   ========================================================== */
.foxco-oc-light {
    background: linear-gradient(145deg, #ffffff 0%, #f0eaff 60%, #e8e0ff 100%);
    box-shadow: 0 20px 60px rgba(120, 80, 220, 0.15), 0 4px 16px rgba(0,0,0,0.06);
}
.foxco-oc-light .foxco-oc-price-label { color: #1a1a3e; }
.foxco-oc-light .foxco-oc-title       { color: #0f0f2e; }
.foxco-oc-light .foxco-oc-description { color: #2d2d5e; }
.foxco-oc-light .foxco-oc-features li { color: #1a1a3e; }
.foxco-oc-light .foxco-oc-check {
    background: #1a1a3e;
    color: #fff;
}
.foxco-oc-light .foxco-oc-cta {
    background: linear-gradient(90deg, #e8357a 0%, #3b9eff 100%);
    color: #fff;
}
.foxco-oc-light .foxco-oc-bg-shape {
    fill: url(#foxco-oc-light-grad);
}

/* ==========================================================
   STYLE 2 — Dark / Neon
   ========================================================== */
.foxco-oc-dark {
    background: linear-gradient(145deg, #0d0d1a 0%, #13132b 100%);
    box-shadow: 0 0 0 1px rgba(100, 80, 255, 0.25),
                0 20px 60px rgba(80, 60, 200, 0.3),
                0 0 80px rgba(0, 200, 255, 0.06) inset;
}
.foxco-oc-dark .foxco-oc-price-label { color: #a78bfa; }
.foxco-oc-dark .foxco-oc-title       { color: #ffffff; }
.foxco-oc-dark .foxco-oc-description { color: #c4b5fd; }
.foxco-oc-dark .foxco-oc-features li { color: #e2e8ff; }
.foxco-oc-dark .foxco-oc-check {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: #fff;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.6);
}
.foxco-oc-dark .foxco-oc-cta {
    background: linear-gradient(90deg, #7c3aed 0%, #06b6d4 100%);
    color: #fff;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.4);
}
.foxco-oc-dark .foxco-oc-bg-shape {
    opacity: 0.08;
    fill: #a78bfa;
}

/* ==========================================================
   STYLE 3 — Foxco Orange Gradient
   ========================================================== */
.foxco-oc-orange {
    background: linear-gradient(135deg, #E26431 0%, #f0954a 45%, #e05a1c 100%);
    box-shadow: 0 20px 60px rgba(226, 100, 49, 0.4), 0 4px 16px rgba(226, 100, 49, 0.2);
}
.foxco-oc-orange .foxco-oc-price-label { color: rgba(255,255,255,0.85); }
.foxco-oc-orange .foxco-oc-title       { color: #ffffff; }
.foxco-oc-orange .foxco-oc-description { color: rgba(255,255,255,0.9); }
.foxco-oc-orange .foxco-oc-features li { color: #ffffff; }
.foxco-oc-orange .foxco-oc-check {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.foxco-oc-orange .foxco-oc-cta {
    background: #ffffff;
    color: #E26431;
}
.foxco-oc-orange .foxco-oc-bg-shape {
    opacity: 0.12;
    fill: #fff;
}

/* ==========================================================
   STYLE 4 — Minimal / Outlined
   ========================================================== */
.foxco-oc-minimal {
    background: transparent;
    border: 2px solid currentColor;
    border-color: #E26431;
    box-shadow: none;
}
.foxco-oc-minimal .foxco-oc-price-label { color: #E26431; }
.foxco-oc-minimal .foxco-oc-title       { color: #1a1a1a; }
.foxco-oc-minimal .foxco-oc-description { color: #555; }
.foxco-oc-minimal .foxco-oc-features li { color: #333; }
.foxco-oc-minimal .foxco-oc-check {
    background: transparent;
    border: 2px solid #E26431;
    color: #E26431;
}
.foxco-oc-minimal .foxco-oc-cta {
    background: transparent;
    color: #E26431;
    border: 2px solid #E26431;
    box-shadow: none;
}
.foxco-oc-minimal .foxco-oc-cta:hover {
    background: #E26431;
    color: #fff;
    opacity: 1;
}
.foxco-oc-minimal .foxco-oc-bg-shape { display: none; }

/* ==========================================================
   Elementor centering helper
   ========================================================== */
.foxco-offer-card-wrap {
    display: flex;
    justify-content: center;
}
