/* =================================
   PRICING HERO
================================= */

.pricing-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-label {
    color: #D4AF37;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
}

.pricing-hero h1 {
    font-size: clamp(42px, 6vw, 68px);
    margin: 15px 0;
}

.pricing-hero p {
    color: #ccc;
    line-height: 1.8;
}


/* =================================
   INTRO
================================= */

.pricing-intro {
    max-width: 700px;
    margin: auto;
    padding: 90px 20px 50px;
    text-align: center;
}

.pricing-intro span,
.category-heading span,
.price-note span,
.pricing-cta span {
    color: #D4AF37;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
}

.pricing-intro h2 {
    font-size: 38px;
    margin: 12px 0;
}

.pricing-intro p {
    color: #999;
    line-height: 1.8;
}


/* =================================
   PRICE SECTIONS
================================= */

.price-section {
    padding: 70px 8%;
    background: #111;
}

.alt-section {
    background: #0b0b0b;
}

.price-category {
    max-width: 1050px;
    margin: auto;
}

.category-heading {
    text-align: center;
    margin-bottom: 35px;
}

.category-heading h2 {
    font-size: 32px;
    margin-top: 10px;
}


/* =================================
   PRICE LIST
================================= */

.price-list {
    border-top: 1px solid rgba(212,175,55,0.25);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    padding: 23px 10px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
}

.price-item:hover {
    padding-left: 18px;
    padding-right: 18px;
    background: rgba(212,175,55,0.04);
}

.price-item h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.price-item p {
    margin: 0;
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

.price-item strong {
    flex-shrink: 0;
    color: #D4AF37;
    font-size: 17px;
}


/* =================================
   ADDONS
================================= */

.price-addons {
    padding: 30px 8% 100px;
    background: #111;
}

.addon-grid {
    max-width: 1050px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.addon-card {
    padding: 25px;
    text-align: center;

    background: #181818;
    border: 1px solid rgba(212,175,55,0.2);

    transition: 0.3s;
}

.addon-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.addon-card h3 {
    font-size: 15px;
    margin-bottom: 12px;
}

.addon-card strong {
    color: #D4AF37;
}


/* =================================
   PRICE NOTE
================================= */

.price-note {
    padding: 70px 8%;
    background: #0b0b0b;
}

.price-note > div {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.price-note h2 {
    font-size: 30px;
    margin: 12px 0;
}

.price-note p {
    color: #888;
    line-height: 1.9;
    font-size: 14px;
}


/* =================================
   CTA
================================= */

.pricing-cta {
    padding: 100px 8%;
    text-align: center;
    background: #111;
}

.pricing-cta h2 {
    font-size: 40px;
    margin: 12px 0;
}

.pricing-cta p {
    color: #999;
    margin-bottom: 30px;
}

.pricing-cta a {
    display: inline-block;

    padding: 14px 32px;

    background: #D4AF37;
    color: #111;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.pricing-cta a:hover {
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 900px) {

    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .pricing-intro {
        padding-top: 65px;
    }

    .pricing-intro h2 {
        font-size: 29px;
    }

    .price-section {
        padding: 55px 6%;
    }
category-heading h2 {
        font-size: 27px;
    }

    .price-item {
        align-items: flex-start;
        padding: 20px 5px;
    }

    .price-item h3 {
        font-size: 15px;
    }

    .price-item p {
        font-size: 12px;
    }

    .price-item strong {
        font-size: 14px;
    }

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

    .pricing-cta h2 {
        font-size: 29px;
    }

}


/* =================================
   VIEW DETAIL BUTTON
================================= */

.price-item {
    position: relative;
}

.price-info {
    flex: 1;
}


.view-detail-btn {
    background: transparent;

    border: 1px solid rgba(212, 175, 55, 0.5);

    color: #D4AF37;

    padding: 8px 15px;

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;

    transition: 0.3s;

    white-space: nowrap;
}


.view-detail-btn:hover {
    background: #D4AF37;

    color: #111;
}


/* =================================
   IMAGE POPUP
================================= */

.price-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.85);

    backdrop-filter: blur(5px);
}

.price-modal.active {
    display: flex;
}


/* POPUP SIZE FOLLOWS IMAGE */

.price-modal-content {
    position: relative;

    display: inline-block;

    width: fit-content;

    max-width: 90vw;
    max-height: 90vh;

    background: #111;

    border: 1px solid rgba(212, 175, 55, 0.5);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);

    overflow: hidden;

    animation: pricePopupIn 0.25s ease;
}


@keyframes pricePopupIn {

    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* IMAGE */

.price-modal-content img {

    display: block;

    width: auto;
    height: auto;

    max-width: 90vw;
    max-height: 85vh;

    object-fit: contain;
}


/* CLOSE BUTTON */

.price-modal-close {

    position: absolute;

    top: 10px;
    right: 10px;

    z-index: 10;

    width: 36px;
    height: 36px;

    border: 1px solid #D4AF37;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.75);

    color: #D4AF37;

    font-size: 24px;

    line-height: 1;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: 0.3s;
}


.price-modal-close:hover {

    background: #D4AF37;

    color: #111;
}


/* MOBILE */

@media (max-width: 600px) {

    .price-modal {
        padding: 10px;
    }

    .price-modal-content {
        max-width: 94vw;
        max-height: 90vh;
    }

    .price-modal-content img {
        max-width: 94vw;
        max-height: 82vh;
    }

    .price-modal-close {
        width: 32px;
        height: 32px;
        font-size: 21px;
    }

}
.pricing-detail-note {
    margin-top: 20px;
    padding: 16px 18px;
    border: 1px solid rgba(218, 176, 42, .20);
    border-radius: 12px;
    background: #1d1d1d;
}

.pricing-detail-note-label {
    margin-bottom: 7px;
    color: #d9ae2e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pricing-detail-note-text {
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.7;
    white-space: pre-line;
}