.cr-precio,
.cr-precio__floatbar {
    --cr-pink:     var(--pink,      #ff3b82);
    --cr-pink-rgb: 230, 56, 136;
    --cr-ink:      var(--ink,       #0f0f12);
    --cr-ink-2:    var(--ink-soft,  #4a4a55);
    --cr-mute:     var(--muted,     #8a8a95);
    --cr-line:     var(--line,      #ececef);
    --cr-pink-2:   #ff6aa3;
    --cr-bg:       #fff;
    --cr-soft:     #f7f7f9;
    --cr-radius:   20px;
    --cr-radius-sm:12px;
    --cr-shadow:   0 18px 50px rgba(0, 0, 0, .10);
    --cr-shadow-bar: 0 8px 28px rgba(0, 0, 0, .12);
    --cr-topbar-offset: 0px;
    font-family: var(--font-body, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif);
}
.cr-precio {
    color: var(--cr-ink);
    margin: 48px auto;
    max-width: 820px;
    padding: 0 20px;
    box-sizing: border-box;
}
.cr-precio *,
.cr-precio__floatbar * { box-sizing: border-box; }
.cr-precio__head {
    text-align: center;
    margin-bottom: 32px;
}
.cr-precio__title {
    font-family: 'Boldonse', 'Inter', sans-serif;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1;
    letter-spacing: -.01em;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.cr-precio__sub {
    color: var(--cr-ink-2);
    font-size: 17px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 560px;
}
.cr-precio__hero {
    background: var(--cr-ink);
    color: #fff;
    border-radius: var(--cr-radius);
    padding: 32px 28px;
    margin-bottom: 32px;
    text-align: center;
    box-shadow: var(--cr-shadow);
    position: relative;
    overflow: hidden;
}
.cr-precio__hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(var(--cr-pink-rgb), .35), transparent 60%);
    pointer-events: none;
}
.cr-precio__eyebrow {
    display: inline-block;
    background: var(--cr-pink);
    color: #fff !important;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-decoration: none;
}
.cr-precio__total {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 100%;
}
.cr-precio__total-amount {
    font-family: 'Boldonse', 'Inter', sans-serif;
    font-size: clamp(44px, 9vw, 84px);
    line-height: 1;
    letter-spacing: -.02em;
    color: #fff;
    white-space: nowrap;
    transition: transform .2s ease;
}
.cr-precio__total-amount.is-bump {
    animation: cr-bump .4s ease;
}
@keyframes cr-bump {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.05); color: var(--cr-pink-2); }
    100% { transform: scale(1); }
}
.cr-precio__iva {
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .6px;
    white-space: nowrap;
    padding-bottom: 8px;
}
.cr-precio__monthly {
    position: relative;
    z-index: 1;
    margin: 4px 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
}
.cr-precio__monthly[hidden] { display: none; }
.cr-precio__monthly-plus {
    color: var(--cr-pink);
    font-weight: 700;
}
.cr-precio__monthly-amount {
    font-weight: 700;
    color: #fff;
}
.cr-precio__monthly-note {
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cr-precio__cta {
    display: inline-block;
    background: var(--cr-pink);
    color: #fff !important;
    text-decoration: none !important;
    text-align: center;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px rgba(var(--cr-pink-rgb), .35);
    border: 0;
}
.cr-precio__cta:hover,
.cr-precio__cta:focus,
.cr-precio__cta:visited {
    background: var(--cr-pink-2);
    transform: translateY(-1px);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(var(--cr-pink-rgb), .45);
}
.cr-precio__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cr-precio__section {
    background: var(--cr-bg);
    border: 1px solid var(--cr-line);
    border-radius: var(--cr-radius);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.cr-precio__section[open] {
    border-color: rgba(15, 15, 18, .12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
}
.cr-precio__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none !important;
    user-select: none;
}
.cr-precio__section-head::-webkit-details-marker,
.cr-precio__section-head::marker { display: none; content: ''; }
.cr-precio__section-head:hover {
    background: var(--cr-soft);
}
.cr-precio__section-title-wrap {
    min-width: 0;
    flex: 1;
}
.cr-precio__section-title {
    font-family: 'Boldonse', 'Inter', sans-serif;
    font-size: 18px;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: -.01em;
}
.cr-precio__section-desc {
    color: var(--cr-mute);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}
.cr-precio__section-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.cr-precio__count {
    background: var(--cr-soft);
    color: var(--cr-ink);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    min-width: 22px;
    text-align: center;
    transition: background .15s ease, color .15s ease;
}
.cr-precio__count[data-hidden] { display: none; }
.cr-precio__count.is-active {
    background: var(--cr-pink);
    color: #fff;
}
.cr-precio__chev {
    width: 20px;
    height: 20px;
    color: var(--cr-ink-2);
    transition: transform .25s ease;
    flex-shrink: 0;
}
.cr-precio__section[open] .cr-precio__chev {
    transform: rotate(180deg);
}
.cr-precio__items,
.cr-precio .cr-precio__items {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 8px 8px !important;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--cr-line);
}
.cr-precio__item,
.cr-precio .cr-precio__item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none;
}
.cr-precio__item::before,
.cr-precio__item::marker { content: none !important; display: none !important; }
.cr-precio__item {
    border-radius: var(--cr-radius-sm);
    transition: background .15s ease;
}
.cr-precio__item + .cr-precio__item {
    border-top: 1px solid var(--cr-line);
}
.cr-precio__item:hover:not(.cr-precio__item--static) {
    background: var(--cr-soft);
}
.cr-precio__static {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 14px !important;
}
.cr-precio__static-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #14572a;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.cr-precio__section--static .cr-precio__section-head {
    cursor: pointer;
}
.cr-precio__section--static .cr-precio__count { display: none !important; }
.cr-precio__toggle {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px !important;
    cursor: pointer;
    margin: 0;
}
.cr-precio__cb {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.cr-precio__check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--cr-line);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .15s ease;
    background: #fff;
}
.cr-precio__check::after {
    content: '';
    width: 11px;
    height: 6px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px) scale(.6);
    opacity: 0;
    transition: all .15s ease;
}
.cr-precio__cb:checked ~ .cr-precio__check {
    background: var(--cr-pink);
    border-color: var(--cr-pink);
}
.cr-precio__cb:checked ~ .cr-precio__check::after {
    opacity: 1;
    transform: rotate(-45deg) translate(1px, -1px) scale(1);
}
.cr-precio__cb:focus-visible ~ .cr-precio__check {
    outline: 3px solid rgba(var(--cr-pink-rgb), .25);
    outline-offset: 2px;
}
.cr-precio__label-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    font-size: 15px;
    line-height: 1.35;
}
.cr-precio__label-main {
    font-weight: 500;
    color: var(--cr-ink);
}
.cr-precio__help {
    color: var(--cr-mute);
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 400;
}
.cr-precio__price {
    font-weight: 600;
    font-size: 15px;
    color: var(--cr-ink);
    white-space: nowrap;
    flex-shrink: 0;
}
.cr-precio__item.is-selected .cr-precio__price { color: var(--cr-pink); }
.cr-precio__badge {
    display: inline-block;
    background: #f0fdf4;
    color: #14572a !important;
    border: 1px solid #bbf7d0;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cr-precio__months {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px 14px 50px; 
    font-size: 13px;
    color: var(--cr-mute);
    transition: opacity .2s ease;
}
.cr-precio__item--monthly:not(.is-selected) .cr-precio__months {
    opacity: .45;
}
.cr-precio__months-label {
    font-weight: 500;
    color: var(--cr-ink-2);
    font-size: 12.5px;
}
.cr-precio__months-unit {
    color: var(--cr-mute);
    font-size: 12.5px;
}
.cr-precio__stepper--sm .cr-precio__step {
    width: 30px;
    height: 30px;
    font-size: 15px;
}
.cr-precio__stepper--sm .cr-precio__qty {
    width: 36px;
    font-size: 13px;
}
.cr-precio__qty-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 14px 6px !important;
}
.cr-precio__subrow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px 14px 50px; 
    font-size: 13px;
    color: var(--cr-mute);
    flex-wrap: wrap;
}
.cr-precio__subrow-label {
    font-weight: 500;
    color: var(--cr-ink-2);
    font-size: 12.5px;
}
.cr-precio__subrow-unit {
    color: var(--cr-mute);
    font-size: 12.5px;
}
.cr-precio__stepper {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--cr-line);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}
.cr-precio__step {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--cr-ink);
    transition: background .15s ease, color .15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.cr-precio__step:hover:not(:disabled) {
    background: var(--cr-pink);
    color: #fff;
}
.cr-precio__step:disabled {
    color: var(--cr-mute);
    cursor: not-allowed;
    opacity: .5;
}
.cr-precio__qty {
    width: 48px;
    border: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    -moz-appearance: textfield;
    font-family: inherit;
}
.cr-precio__qty::-webkit-outer-spin-button,
.cr-precio__qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cr-precio__qty:focus { outline: none; }
.cr-precio__floatbar {
    position: fixed;
    top: calc(var(--cr-topbar-offset, 0px));
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--cr-ink);
    color: #fff;
    transform: translateY(-110%);
    transition: transform .28s cubic-bezier(.2, .7, .2, 1), box-shadow .28s ease;
    box-shadow: none;
    padding-top: env(safe-area-inset-top, 0);
}
.cr-precio__floatbar.is-visible {
    transform: translateY(0);
    box-shadow: var(--cr-shadow-bar);
}
.admin-bar .cr-precio__floatbar {
    top: calc(32px + var(--cr-topbar-offset, 0px));
}
@media (max-width: 782px) {
    .admin-bar .cr-precio__floatbar {
        top: calc(46px + var(--cr-topbar-offset, 0px));
    }
}
.cr-precio__floatbar-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cr-precio__floatbar-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}
.cr-precio__floatbar-label {
    color: rgba(255, 255, 255, .55);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .7px;
    font-weight: 600;
}
.cr-precio__floatbar-amount {
    font-family: 'Boldonse', 'Inter', sans-serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: -.01em;
    margin-top: 2px;
    white-space: nowrap;
    transition: transform .2s ease;
}
.cr-precio__floatbar-amount.is-bump { animation: cr-bump .4s ease; }
.cr-precio__floatbar-monthly {
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    margin-top: 2px;
    font-weight: 500;
}
.cr-precio__floatbar-monthly[hidden] { display: none; }
.cr-precio__floatbar-monthly::before { content: '+ '; color: var(--cr-pink); font-weight: 700; }
.cr-precio__floatbar-cta {
    background: var(--cr-pink);
    color: #fff !important;
    text-decoration: none !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .15s ease, transform .15s ease;
    flex-shrink: 0;
    border: 0;
}
.cr-precio__floatbar-cta:hover,
.cr-precio__floatbar-cta:focus,
.cr-precio__floatbar-cta:visited {
    background: var(--cr-pink-2);
    color: #fff !important;
    transform: translateY(-1px);
}
.cr-precio-attach {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0 0 24px;
    background: transparent;
    border: 0;
    font-family: 'Inter', system-ui, sans-serif;
    animation: cr-attach-in .35s ease;
}
.cr-precio-attach[hidden] { display: none; }
@keyframes cr-attach-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cr-precio-attach__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--cr-ink, #1a1a1a);
    line-height: 1.4;
    text-align: center;
}
.cr-precio-attach__actions {
    display: flex;
    gap: 12px;
    width: 100%;
}
.cr-precio-attach__pill {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 26px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    line-height: 1;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.cr-precio-attach__pill--total {
    background: #fff;
    border: 2px solid var(--cr-pink, #E63888);
    color: var(--cr-pink, #E63888) !important;
}
.cr-precio-attach__pill--monthly {
    background: #fff;
    border: 2px solid var(--cr-ink, #1a1a1a);
    color: var(--cr-ink, #1a1a1a) !important;
    font-size: 13px;
    font-weight: 600;
}
.cr-precio-attach__pill--monthly[hidden] { display: none; }
.cr-precio-attach__pill--modify {
    background: var(--cream-dark, #F4D79A);
    border: 2px solid transparent;
    color: var(--cr-ink, #1a1a1a) !important;
    text-transform: uppercase;
    letter-spacing: .6px;
    cursor: pointer;
    font-size: 14px;
}
.cr-precio-attach__pill--modify:hover {
    background: var(--cream, #FBE4B5);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}
@media (max-width: 680px) {
    .cr-precio { margin: 24px auto; }
    .cr-precio__hero { padding: 26px 20px; }
    .cr-precio__total-amount { font-size: clamp(40px, 12vw, 60px); }
    .cr-precio__cta { padding: 14px 28px; }
    .cr-precio__section-head { padding: 16px 18px; }
    .cr-precio__section-title { font-size: 16px; }
    .cr-precio__section-desc { display: none; }
    .cr-precio__items,
    .cr-precio .cr-precio__items { padding: 0 4px 4px !important; }
    .cr-precio__toggle,
    .cr-precio__static { padding: 12px 10px !important; gap: 10px; }
    .cr-precio__label-text { font-size: 14px; }
    .cr-precio__floatbar-inner { padding: 6px 16px; gap: 10px; }
    .cr-precio__floatbar-amount { font-size: 17px; }
    .cr-precio__floatbar-label { font-size: 9.5px; }
    .cr-precio__floatbar-cta {
        padding: 8px 14px;
        font-size: 11px;
    }
}
