/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-table {
    width: 100%;
    display: flex;
    margin-top: 5em;
    margin-bottom: 5em;
}

.pricing-table-column {
    width: 25%;
    text-align: center;
}

.pricing-table-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.pricing-hours-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    width: 44px;
    height: 44px;
    z-index: 0;

    border-radius: 9999px;
    border: 1px solid var(--glass-border);

    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    cursor: pointer;

    transition: transform .2s ease, border-color .2s ease, background .2s ease;

    color: var(--text);
    /* svg inherits */

    margin-top: auto;
    margin-bottom: auto;

    overflow: hidden;
}

.pricing-hours-nav::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;

    border-radius: 50%;
    background: rgba(255, 170, 168, 0);

    transform: scale(0);
    transition: transform 0.4s ease,
        background 0.4s ease;
}

.pricing-hours-nav:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-hours-nav:active {
    transform: translateY(0);
}

.pricing-hours-nav svg {
    transition: fill 0.4s ease;
}

.pricing-hours-nav.animate::after {
    animation: fillPulse 0.5s ease;
}

.pricing-hours-nav.animate svg {
    animation: iconFlash 0.45s ease;
}

.pricing-service-select {
    appearance: none;
    /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    font-family: 'Archivo Black', sans-serif;
    font-size: 40px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    border-radius: 24px;
    border: 1px solid var(--glass-border);

    width: auto;
    margin-top: 0em;

    padding: 0.5em 0.5em 0.5em 0.5em;

    transition: all 0.4s ease;
}


.pricing-service-select:hover {
    border: 1px solid var(--primary);
}

.pricing-service-select:focus {
    border: 1px solid var(--primary);
    outline: 2px solid var(--primary);
}

.pricing-service-select-div {
    position: relative;
    display: inline-block;
    width: fit-content;
}

.pricing-service-select-div::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 3em;
    height: 3em;
    pointer-events: none;
    background: url("data:image/svg+xml;utf8,<svg fill='%23ffaaa8' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat center;
    background-size: contain;
    transform: translateY(-50%);
}

.pricing-table-songs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.pricing-songs-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    width: 44px;
    height: 44px;
    z-index: 0;

    border-radius: 9999px;
    border: 1px solid var(--glass-border);

    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    cursor: pointer;

    transition: transform .2s ease, border-color .2s ease, background .2s ease;

    color: var(--text);
    /* svg inherits */

    margin-top: auto;
    margin-bottom: auto;

    overflow: hidden;
}

.pricing-songs-nav::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;

    border-radius: 50%;
    background: rgba(255, 170, 168, 0);

    transform: scale(0);
    transition: transform 0.4s ease,
        background 0.4s ease;
}

.pricing-songs-nav:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-songs-nav:active {
    transform: translateY(0);
}

.pricing-songs-nav svg {
    transition: fill 0.4s ease;
}

.pricing-songs-nav.animate::after {
    animation: fillPulse 0.5s ease;
}

.pricing-songs-nav.animate svg {
    animation: iconFlash 0.45s ease;
}

.pricing-service-row {
    display: flex;
    align-items: start;
}

.pricing-service-row h3 {
    margin-top: 10px;
}

.pricing-total {
    display: inline-block;
    background: var(--primary-light);
    border-radius: 14px;
    padding: 0 0.5em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .pricing-table {
        margin-top: 3em;
        margin-bottom: 3em;
    }

    /* Service select on its own row above "at dreams." */
    .pricing-service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25em;
    }

    .pricing-service-row h3 {
        margin-left: 20px !important;
    }

    .pricing-service-select {
        font-size: 35px;
    }
}

@media (max-width: 768px) {

    /* Tabs layout: stack nav above content */
    .process-tabs.production {
        flex-direction: column;
        gap: 1em;
        min-width: 100%;
        width: 100%;
    }

    .process-tabs-nav.production {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5em;
        margin-bottom: 0;
        min-width: 100%;
    }

    .process-tabs-content.production {
        width: 100%;
        min-width: 100%;
        padding: 2em;
    }

    .process-tab {
        padding: 12px 16px;
        font-size: 14px;
        flex: 1 1 auto;
    }

    /* Pricing table: 2-column grid */
    .pricing-table {
        flex-wrap: wrap;
        margin-top: 2em;
        margin-bottom: 2em;
        gap: 1.5em 0;
    }

    .pricing-table-column {
        width: 50%;
    }

    .pricing-service-row h3 {
        margin-left: 10px !important;
    }

    /* Service select + title row */
    .pricing-service-select {
        font-size: 30px;
        padding: 0.35em 0.4em;
    }

    .pricing-service-select-div::after {
        width: 2em;
        height: 2em;
        right: 0.3em;
    }

    /* Button rows: stack vertically */
    .process-tab-pane .btn {
        display: block;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0.75em !important;
        width: 100%;
        text-align: center;
    }
}