/* =====================
   DECOR PREMIUM PAYWALL
   ===================== */
#modal-decor-paywall {
    position: fixed;
}

.decor-paywall-panel {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(100%, 430px);
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    padding: 12px 22px 20px;
    text-align: center;
    animation: decorPaywallUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes decorPaywallUp {
    from {
        transform: translate(-50%, 100%);
    }

    to {
        transform: translate(-50%, 0);
    }
}

.decor-paywall-close {
    position: absolute;
    top: 13px;
    right: 16px;
    z-index: 2;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    color: #666666;
    font-family: Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 30px;
    cursor: pointer;
}

.decor-paywall-panel h2 {
    margin: 0 38px 16px;
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
}

.decor-paywall-stage {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 10px;
    padding: 8px;
    border: 1px solid #e9d5ff;
    border-radius: 12px;
    background: #faf7ff;
}

.decor-paywall-board {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background-color: #ffffff;
    background-image: radial-gradient(#b9b9b9 1px, transparent 1px);
    background-size: 12px 12px;
}

.paywall-asset,
.paywall-note,
.paywall-player,
.paywall-folder,
.paywall-ring {
    position: absolute;
    opacity: 0;
    animation: paywallItemIn 5.5s ease-in-out infinite;
}

.paywall-ring {
    left: 42%;
    top: 28%;
    width: 25%;
    aspect-ratio: 1;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9de2, #c77dff, #72efdd);
    animation-delay: 0.25s;
}

.paywall-ring img {
    width: 100%;
    height: 100%;
    display: block;
    border: 3px solid white;
    border-radius: 50%;
    object-fit: cover;
}

.paywall-sticker-one {
    left: 8%;
    top: 12%;
    width: 18%;
    animation-delay: 0.75s;
}

.paywall-sticker-two {
    right: 7%;
    top: 12%;
    width: 17%;
    animation-delay: 1.15s;
}

.paywall-note {
    left: 8%;
    bottom: 12%;
    padding: 6px 9px;
    background: #ffd0e0;
    color: #111111;
    font-family: var(--font-hand);
    font-size: 0.66rem;
    transform: rotate(-3deg);
    animation-delay: 1.55s;
}

.paywall-player {
    right: 8%;
    bottom: 8%;
    width: 25%;
    aspect-ratio: 1;
    animation-delay: 1.95s;
}

.paywall-player-base {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.paywall-vinyl {
    position: absolute;
    left: 15%;
    top: 21%;
    width: 58%;
    height: 58%;
    object-fit: contain;
    animation: rotateVinyl 4s linear infinite;
}

.paywall-folder {
    left: 35%;
    bottom: 5%;
    width: 23%;
    animation-delay: 2.35s;
}

@keyframes paywallItemIn {
    0%, 7% {
        opacity: 0;
        transform: translateY(9px) scale(0.82) rotate(-3deg);
    }
    14%, 84% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    94%, 100% {
        opacity: 0;
        transform: translateY(-3px) scale(0.96);
    }
}

.decor-paywall-price {
    margin-bottom: 13px;
}

.decor-paywall-price strong,
.decor-paywall-price span {
    display: block;
}

.decor-paywall-price strong {
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 1.05rem;
}

.decor-paywall-price span {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.72rem;
}

.decor-paywall-primary {
    width: 100%;
    border: none;
    font-family: var(--font-ui);
    cursor: pointer;
}

.decor-paywall-primary {
    padding: 12px 16px;
    border-radius: 12px;
    background: #171717;
    color: white;
    font-size: 0.92rem;
    font-weight: 700;
}

.decor-paywall-secondary {
    width: 100%;
    margin-top: 9px;
    padding: 11px 16px;
    border: 1.5px solid #dac8e8;
    border-radius: 12px;
    background: #f6eefc;
    color: #7c3aed;
    font-family: var(--font-ui);
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
}

.decor-pricing-options {
    max-width: 300px;
    margin-bottom: 10px;
}

/* =====================
   ANON INSIGHT PAYWALL
   ===================== */
.anon-insight-panel {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(100%, 430px);
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    padding: 18px 22px 24px;
    text-align: center;
    animation: decorPaywallUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.anon-insight-peek {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 130px;
    margin: 0 auto 14px;
    border: 1px solid #e9d5ff;
    border-radius: 18px;
    background:
        radial-gradient(circle at 24% 28%, rgba(255, 208, 224, 0.9), transparent 24%),
        radial-gradient(circle at 74% 34%, rgba(198, 246, 213, 0.9), transparent 22%),
        #faf7ff;
    overflow: hidden;
}

.anon-insight-peek .peek-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 8px 10px;
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #2b2b2b;
    font-family: var(--font-ui);
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
    animation: anonPeekFloat 4.8s ease-in-out infinite;
}

.anon-insight-peek .peek-card-one {
    left: 15px;
    top: 18px;
}

.anon-insight-peek .peek-card-two {
    right: 14px;
    top: 46px;
    animation-delay: 0.4s;
}

.anon-insight-peek .peek-card-three {
    left: 42px;
    bottom: 5px;
    animation-delay: 0.8s;
}

@keyframes anonPeekFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.anon-insight-panel h2 {
    margin: 0 30px 16px;
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
}

.anon-insight-copy {
    max-width: 310px;
    margin: 0 auto 14px;
    color: #625c67;
    font-size: 0.88rem;
    line-height: 1.35;
}

.anon-pricing-options {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 12px;
    display: grid;
    gap: 7px;
}

.anon-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #eee6f6;
    border-radius: 14px;
    background: #ffffff;
    color: var(--text-primary);
    text-align: left;
    font-family: var(--font-ui);
    font-size: 1rem;
    cursor: pointer;
}

.anon-price-row.is-selected {
    border-color: #c084fc;
    background: #f4e8ff;
    box-shadow: 0 5px 14px rgba(124, 58, 237, 0.1);
}

.anon-price-row span,
.anon-price-row strong {
    line-height: 1.2;
}

.anon-price-row strong {
    text-align: right;
}

.anon-price-row em {
    color: #7c3aed;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.anon-price-row:not(.is-best-value) em {
    color: #8b8290;
    font-weight: 700;
}

.promo-code-box {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 12px;
    display: grid;
    gap: 6px;
    font-family: var(--font-ui);
}

.promo-code-box label {
    color: #8b8290;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: left;
    margin-left: 2px;
}

.promo-code-controls {
    display: flex;
    gap: 8px;
}

.promo-code-controls input {
    min-width: 0;
    flex: 1;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #eee6f6;
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
}

.promo-code-controls button {
    height: 38px;
    padding: 0 14px;
    border: 1px solid #d9b8ff;
    border-radius: 12px;
    background: #f7eeff;
    color: #7c3aed;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.promo-code-controls button:disabled {
    background: #f4f4f5;
    border-color: #e4e4e7;
    color: #a1a1aa;
    cursor: not-allowed;
    pointer-events: none;
}

.anon-insight-note {
    max-width: 300px;
    margin: 0 auto 12px;
    color: #8b8290;
    font-size: 0.75rem;
    line-height: 1.35;
}

.anon-details-panel {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(100%, 430px);
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    padding: 20px 22px 24px;
    text-align: center;
    animation: decorPaywallUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.anon-details-panel h2 {
    margin: 2px 36px 4px;
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Interactive Location Map Card */
.anon-map-card {
    width: 100%;
    max-width: 330px;
    height: 190px;
    margin: 12px auto 8px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
    background: #f1f0ec;
    box-sizing: border-box;
}

.anon-map-view {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.anon-map-view .leaflet-control-container,
.anon-map-view .leaflet-attribution-flag {
    display: none !important;
}

.anon-details-list {
    width: 100%;
    max-width: 330px;
    margin: 14px auto 12px;
    display: grid;
    gap: 9px;
}

.anon-details-list div {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    padding: 12px 13px;
    border: 1px solid #eee6f6;
    border-radius: 16px;
    background: #ffffff;
    text-align: left;
    box-shadow: 0 7px 18px rgba(17, 17, 17, 0.05);
}

.anon-details-list span {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4e8ff;
}

.anon-details-list strong {
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    line-height: 1.2;
}

.anon-details-list small {
    margin-top: 2px;
    color: #8b8290;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    line-height: 1.2;
}

