/* ============================================
   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: clamp(30px, 4vw, 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-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;
}