.cst-premium-ticket-shop {
    background: #000;
    color: #fff;
    padding: 0 0 70px;
    font-family: inherit;
}

.cst-shop-hero {
    min-height: 250px;
    background: radial-gradient(circle at top, rgba(255, 88, 181, .35), rgba(0,0,0,1) 70%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 20px;
}

.cst-shop-kicker {
    color: #7dd8cf;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cst-shop-hero h1 {
    font-size: clamp(48px, 8vw, 86px);
    line-height: 1;
    margin: 0;
    color: #ff6fbd;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.cst-shop-hero p {
    font-size: 20px;
    margin: 22px 0 0;
    color: #fff;
}

.cst-ticket-card-grid {
    max-width: 1180px;
    margin: 70px auto 40px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.cst-ticket-card {
    position: relative;
    min-height: 460px;
    border: 2px solid rgba(255, 111, 189, .9);
    border-radius: 22px;
    padding: 34px 32px;
    background:
        radial-gradient(circle at top left, rgba(255, 111, 189, .16), transparent 45%),
        rgba(12, 5, 11, .98);
    box-shadow: 0 20px 60px rgba(255, 111, 189, .1);
    display: flex;
    flex-direction: column;
}

.cst-ticket-card--voucher {
    border-color: rgba(255, 205, 91, .9);
    background:
        radial-gradient(circle at top left, rgba(255, 205, 91, .15), transparent 45%),
        rgba(13, 10, 4, .98);
}

.cst-ticket-card--group {
    border-color: rgba(125, 216, 207, .9);
    background:
        radial-gradient(circle at top left, rgba(125, 216, 207, .15), transparent 45%),
        rgba(3, 17, 16, .98);
}

.cst-ticket-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #d76ab5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}

.cst-ticket-card--group .cst-ticket-card-icon {
    background: #7dd8cf;
}

.cst-ticket-card--voucher .cst-ticket-card-icon {
    background: #ffcd5b;
}

.cst-ticket-card h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 26px;
    font-weight: 900;
}

.cst-ticket-card-price {
    color: #fff;
    font-size: clamp(46px, 5vw, 66px);
    font-weight: 950;
    line-height: 1;
    margin-bottom: 26px;
}

.cst-ticket-card-price .woocommerce-Price-amount {
    color: inherit;
}

.cst-ticket-card-price span {
    font-size: 14px;
    font-weight: 700;
    margin-left: 8px;
    color: #fff;
}

.cst-ticket-card-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: grid;
    gap: 16px;
}

.cst-ticket-card-benefits li {
    font-size: 16px;
    color: #fff;
}

.cst-ticket-card-button {
    margin-top: auto;
    display: block;
    text-align: center;
    text-decoration: none;
    background: #d76ab5;
    color: #fff;
    border-radius: 999px;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform .2s ease, filter .2s ease;
}

.cst-ticket-card--group .cst-ticket-card-button {
    background: #7dd8cf;
    color: #001615;
}

.cst-ticket-card--voucher .cst-ticket-card-button {
    background: #ffcd5b;
    color: #1d1400;
}

.cst-ticket-card-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: #fff;
}

.cst-ticket-info-panel {
    max-width: 1180px;
    margin: 42px auto 0;
    padding: 44px 24px;
    background: rgba(255,255,255,.04);
}

.cst-ticket-info-panel h2 {
    color: #fff;
    text-align: center;
    font-size: 26px;
    margin: 0 0 26px;
}

.cst-ticket-info-grid {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cst-ticket-info-item {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 15px 18px;
    color: #fff;
}

.cst-ticket-empty {
    grid-column: 1 / -1;
    background: #111;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
}

/* Produto individual WooCommerce */

.single-product .product {
    background: #000;
    color: #fff;
}

.cst-product-hero {
    background: radial-gradient(circle at top, rgba(255, 88, 181, .34), rgba(0,0,0,1) 72%);
    padding: 70px 24px 44px;
    text-align: center;
    margin-bottom: 36px;
}

.cst-product-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cst-product-kicker {
    color: #7dd8cf;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 900;
}

.cst-product-hero h1 {
    color: #ff6fbd;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1;
    margin: 14px 0;
    font-weight: 950;
}

.cst-product-hero p {
    color: #fff;
    font-size: 19px;
    margin: 0;
}

.cst-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.cst-product-badges span {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.cst-product-benefits {
    margin: 24px 0;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    border-radius: 16px;
    padding: 22px;
}

.cst-product-benefits h3 {
    color: #fff;
    margin-top: 0;
}

.cst-product-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.cst-product-benefits li {
    color: #fff;
}

.cst-product-after-panel {
    max-width: 1180px;
    margin: 50px auto;
    padding: 40px 24px;
    background: rgba(255,255,255,.04);
    color: #fff;
}

.cst-product-after-panel h2 {
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.cst-product-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cst-product-steps div {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 22px;
    background: #050505;
}

.cst-product-steps strong {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #ff6fbd;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 14px;
}

.cst-product-steps h4 {
    color: #fff;
    margin: 0 0 8px;
}

.cst-product-steps p {
    color: #ddd;
    margin: 0;
}

/* Ticket público e tradutor já existentes */

.cst-ticket-box {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    background: #fff;
    max-width: 980px;
    margin: 24px auto;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.cst-translator {
    background: linear-gradient(135deg, rgba(12, 18, 32, 0.96), rgba(28, 40, 70, 0.96));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 14px 16px;
    margin: 0 auto 18px auto;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    max-width: 980px;
}

.cst-translator__label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .9;
}

@media (max-width: 980px) {
    .cst-ticket-card-grid {
        grid-template-columns: 1fr;
    }

    .cst-ticket-info-grid,
    .cst-product-steps {
        grid-template-columns: 1fr;
    }
}

:root {
    --smp-pink: #ea68b0;
    --smp-cyan: #77c7be;
    --smp-gold: #ffcd5b;
    --smp-max: 1240px;
}

.smp-page {
    background: #000;
    color: #fff;
    overflow: hidden;
}

.smp-container {
    width: min(var(--smp-max), calc(100% - 48px));
    margin: 0 auto;
}

.cst-ultra-hero {
    padding: 102px 0 86px;
    background: linear-gradient(180deg, #691d53 0%, #290117 48%, #000 100%);
    text-align: center;
    position: relative;
}

.cst-ultra-hero::after {
    content: "";
    position: absolute;
    inset: auto 12% 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234,104,176,.9), transparent);
}

.cst-ultra-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(54px, 7vw, 100px);
    line-height: .95;
    color: var(--smp-pink);
    font-weight: 950;
    letter-spacing: -.04em;
    text-transform: uppercase;
    text-shadow: 0 0 34px rgba(234,104,176,.35);
}

.cst-ultra-hero p {
    margin: 0;
    color: #ececf0;
    font-size: 22px;
}

.cst-ultra-plans {
    padding: 70px 0 46px;
    background:
        radial-gradient(circle at 15% 10%, rgba(234,104,176,.11), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(119,199,190,.10), transparent 30%),
        #000;
}

.cst-ultra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cst-ultra-card {
    position: relative;
    border-radius: 22px;
    padding: 34px 34px 32px;
    background: linear-gradient(180deg, rgba(234,104,176,.12), rgba(0,0,0,.25));
    border: 2px solid rgba(234,104,176,.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 26px 80px rgba(234,104,176,.12);
    transform: translateY(0);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
    animation: cstCardRise .7s ease both;
}

.cst-ultra-card:nth-child(2) {
    animation-delay: .08s;
}

.cst-ultra-card:nth-child(3) {
    animation-delay: .16s;
}

.cst-ultra-card:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 34px 100px rgba(234,104,176,.22);
    filter: brightness(1.05);
}

.cst-ultra-card--group {
    background: linear-gradient(180deg, rgba(108,199,190,.12), rgba(0,0,0,.25));
    border-color: rgba(108,199,190,.95);
    box-shadow: 0 26px 80px rgba(108,199,190,.12);
}

.cst-ultra-card--group:hover {
    box-shadow: 0 34px 100px rgba(108,199,190,.25);
}

.cst-ultra-card--voucher {
    background: linear-gradient(180deg, rgba(255,205,91,.12), rgba(0,0,0,.25));
    border-color: rgba(255,205,91,.95);
    box-shadow: 0 26px 80px rgba(255,205,91,.12);
}

.cst-ultra-card--voucher:hover {
    box-shadow: 0 34px 100px rgba(255,205,91,.22);
}

.cst-ultra-card .head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.cst-ultra-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d76bae;
    color: #fff;
    box-shadow: 0 0 24px rgba(215,107,174,.35);
}

.cst-ultra-card--group .icon {
    background: #78c8bf;
    color: #111;
    box-shadow: 0 0 24px rgba(120,200,191,.35);
}

.cst-ultra-card--voucher .icon {
    background: var(--smp-gold);
    color: #111;
    box-shadow: 0 0 24px rgba(255,205,91,.35);
}

.cst-ultra-card .head h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 900;
    color: #fff;
}

.cst-ultra-card .price {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 8px 0 24px;
}

.cst-ultra-card .price strong,
.cst-ultra-card .price .woocommerce-Price-amount {
    font-size: clamp(42px, 4.6vw, 62px);
    line-height: .95;
    font-weight: 950;
    color: #fff;
}

.cst-ultra-card .price span {
    font-size: 15px;
    color: #d8d8df;
    margin-bottom: 10px;
    font-weight: 700;
}

.cst-ultra-card .list {
    display: grid;
    gap: 16px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.cst-ultra-card .list li {
    display: flex;
    gap: 12px;
    font-size: 16px;
    color: #ececf1;
}

.cst-ultra-card .list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 3px;
}

.cst-ultra-btn {
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cst-ultra-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
    transform: skewX(-18deg);
    transition: left .55s ease;
}

.cst-ultra-btn:hover::before {
    left: 130%;
}

.btn.pink {
    background: #d56fad;
    color: #fff;
}

.btn.cyan {
    background: #7bcac0;
    color: #111;
}

.btn.gold {
    background: var(--smp-gold);
    color: #111;
}

.cst-best-seller {
    position: absolute;
    top: -16px;
    right: 26px;
    background: linear-gradient(90deg, var(--smp-cyan), #bffff9);
    color: #001514;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(119,199,190,.35);
}

.cst-ultra-info {
    padding: 56px 0 72px;
    background: #090909;
}

.cst-ultra-info h3 {
    text-align: center;
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 950;
    color: #fff;
}

.info-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.info-item {
    background: #080808;
    border: 1px solid #2a2b30;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e6e6ec;
    font-size: 17px;
}

.info-item svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

@keyframes cstCardRise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .cst-ultra-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .smp-container {
        width: min(var(--smp-max), calc(100% - 28px));
    }

    .cst-ultra-hero p {
        font-size: 18px;
    }

    .cst-ultra-card .head h2 {
        font-size: 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-item--wide {
    align-items: flex-start;
    line-height: 1.5;
}

.smp-footer {
    background: #040404;
    padding: 52px 0 24px;
    color: #fff;
}

.smp-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .9fr .9fr;
    gap: 42px;
    padding-bottom: 42px;
    border-bottom: 1px solid #18181c;
}

.smp-footer h3,
.smp-footer h4 {
    margin: 0 0 22px;
}

.smp-footer-brand {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #ea68b0;
}

.smp-footer-text {
    font-size: 18px;
    line-height: 1.65;
    max-width: 430px;
    color: #d8d8de;
}

.smp-footer-links {
    display: grid;
    gap: 14px;
}

.smp-footer-links a {
    font-size: 18px;
    color: #d8d8de;
    text-decoration: none;
}

.smp-footer-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #77c7be;
}

.smp-socials {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.smp-social {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    max-width: 54px;
    max-height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #15161a;
    border: 1px solid #222;
    overflow: hidden;
}

.smp-svg,
.smp-social svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    display: block;
}

.smp-partners {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.smp-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #242529;
    font-size: 14px;
    color: #e8e8ec;
    border: 1px solid #2e2f36;
}

.smp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    flex-wrap: wrap;
}

.smp-footer-copy,
.smp-footer-legal a {
    font-size: 16px;
    color: #a9abb4;
}

.smp-footer-legal {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .smp-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Campo data */
input[type="date"] {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Botão */
.single_add_to_cart_button {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: bold;
    transition: 0.3s;
}

.single_add_to_cart_button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(236,72,153,0.6);
}

.cst-ticket-date-shortcode {
    margin: 18px 0 12px;
}

.cst-ticket-date-shortcode label {
    display: block;
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
}

.cst-ticket-date-shortcode .required {
    color: #ff4fa3;
}

.cst-ticket-date-shortcode input[type="date"] {
    width: 100%;
    min-height: 48px;
    background: #fff;
    color: #111;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 15px;
}.cst-ticket-date-shortcode {
    margin: 18px 0 12px;
}

.cst-ticket-date-shortcode label {
    display: block;
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
}

.cst-ticket-date-shortcode .required {
    color: #ff4fa3;
}

.cst-ticket-date-shortcode input[type="date"] {
    width: 100%;
    min-height: 48px;
    background: #fff;
    color: #111;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 15px;
}

/* ===== CALENDÁRIO PREMIUM CORRIGIDO ===== */

.cst-calendar {
    margin: 20px 0 18px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(234,104,176,.13), transparent 38%),
        rgba(255,255,255,.04);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    overflow: hidden;
}

.cst-calendar__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.cst-calendar__eyebrow {
    display: block;
    color: #77c7be;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cst-calendar h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
}

.cst-calendar__badge {
    border: 1px solid rgba(234,104,176,.55);
    color: #ff7cc7;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.cst-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(58px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.cst-calendar__day {
    width: 100%;
    min-width: 0;
    height: 72px;
    padding: 8px 6px;
    border: 1px solid rgba(255, 111, 189, .45);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    color: #fff;
    cursor: pointer;
    transition: .22s ease;
    overflow: hidden;
    text-align: center;

    display: grid;
    grid-template-rows: 14px 26px 14px;
    align-items: center;
    justify-items: center;
}

.cst-calendar__day span,
.cst-calendar__day small {
    display: block;
    max-width: 100%;
    font-size: 9px;
    line-height: 1;
    color: rgba(255,255,255,.72);
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.cst-calendar__day strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: #ff6fbd;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.cst-calendar__day:hover,
.cst-calendar__day.is-selected {
    transform: translateY(-3px);
    border-color: #ff6fbd;
    background: rgba(234,104,176,.18);
    box-shadow: 0 14px 30px rgba(255,111,189,.20);
}

.cst-calendar__day.is-selected {
    background: linear-gradient(135deg, rgba(255,111,189,.95), rgba(119,199,190,.75));
    border-color: rgba(255,255,255,.8);
}

.cst-calendar__day.is-selected span,
.cst-calendar__day.is-selected small,
.cst-calendar__day.is-selected strong {
    color: #061817;
}

.cst-calendar__day * {
    pointer-events: none;
}

.cst-calendar__slots {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 16px;
}

.cst-calendar__hint {
    margin: 0;
    color: #a9abb4;
}

.cst-calendar__slot-title {
    color: #fff;
    font-weight: 900;
    margin-bottom: 12px;
}

.cst-calendar__slot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cst-calendar__slot {
    min-height: 64px;
    border: 1px solid rgba(119,199,190,.35);
    background: rgba(119,199,190,.08);
    color: #fff;
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    transition: .2s ease;
    text-align: left;
}

.cst-calendar__slot strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.cst-calendar__slot span {
    display: block;
    font-size: 12px;
    color: #b8f4ee;
}

.cst-calendar__slot:hover,
.cst-calendar__slot.is-selected {
    background: #77c7be;
    color: #061817;
    box-shadow: 0 0 24px rgba(119,199,190,.28);
    transform: translateY(-2px);
}

.cst-calendar__slot.is-selected span {
    color: #061817;
}

.cst-calendar__slot:disabled {
    opacity: .38;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cst-calendar__status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(119,199,190,.12);
    border: 1px solid rgba(119,199,190,.35);
    color: #fff;
}

.cst-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a9abb4;
}

.cst-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.2);
    border-top-color: #ff6fbd;
    border-radius: 50%;
    animation: cstSpin .7s linear infinite;
}

@keyframes cstSpin {
    to {
        transform: rotate(360deg);
    }
}

.cst-calendar--voucher {
    border-color: rgba(255,205,91,.35);
    background:
        radial-gradient(circle at top left, rgba(255,205,91,.13), transparent 38%),
        rgba(255,255,255,.04);
}

@media (max-width: 900px) {
    .cst-calendar__days {
        grid-template-columns: repeat(4, minmax(58px, 1fr));
    }

    .cst-calendar__slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .cst-calendar__days,
    .cst-calendar__slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cst-calendar__header {
        flex-direction: column;
    }
}

.cst-product-highlight{
    background: linear-gradient(90deg,#ff00cc,#3333ff);
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    display:inline-block;
    margin-bottom:10px;
}

.cst-product-badges{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:10px 0;
}

.cst-product-badges span{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:6px 10px;
    border-radius:20px;
    font-size:12px;
}