* {
    margin: 0;
    padding: 0;
    font-family: montserrat,sans-serif;
    text-decoration: none;
    list-style: none;
    --text-color: #fff;
    --main-color: #16171a;
    --contrast-color: #7c23be;
    --second-color: #131415;
    --third-color: #7e7e7e
}

body {
    color: var(--text-color);
    background-color: var(--main-color)
}

.product-header {
    display: block;
    opacity: 1;
    transform: translateY(60%);
    transition: .5s
}

.product-title {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 80px
}

.product-container {
    margin-top: 200px;
    display: flex;
    justify-content: center;
    margin-bottom: 50px
}

.product-features-container {
    display: flex;
    width: 50%
}

.product-img {
    position: relative;
    max-width: 1000px;
    height: 360px;
    right: -95px;
    margin-bottom: 20px
}

.product-box {
    min-width: 500px;
    background-color: var(--second-color);
    border-radius: 30px;
    padding-block:30px;padding-inline:30px;margin-bottom: 20px;
    height: fit-content;
    box-shadow: 0 5px 10px #0e0f11;
    filter: blur(5px);
    transform: translateX(-50%);
    transition: .5s
}

.box-title {
    display: flex;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--third-color)
}

.feature-list {
    display: flex;
    margin-bottom: 5px;
    font-size: 14px
}

.description-title {
    display: flex;
    font-size: 20px;
    font-weight: 700
}

.product-pricing {
    width: 50%;
    margin-left: 30px;
    background-color: var(--second-color);
    height: fit-content;
    border-radius: 30px;
    padding-block:30px;padding-inline:30px;min-width: 350px;
    box-shadow: 0 5px 10px #0e0f11;
    filter: blur(5px);
    transform: translateX(50%);
    transition: .5s
}

.show {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0px)
}

.price-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px
}

.price {
    color: var(--third-color);
    font-size: 14px
}

.price-number {
    font-size: 30px;
    font-weight: 700
}

#price-number {
    font-size: 30px;
    font-weight: 850
}

.key-options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 25px;
    gap: 10px
}

.key-buttons {
    display: flex;
    justify-content: space-between;
    background-color: var(--main-color);
    border: solid 1px #7e7e7e28;
    padding-block:20px;width: 350px;
    border-radius: 13px;
    cursor: pointer;
    transition: .5s
}

.key-time {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px
}

.price-box2 {
    display: flex;
    justify-content: center;
    align-items: center
}

.dollar {
    color: var(--contrast-color);
    font-size: 18px;
    font-weight: 600;
    margin-right: 3px
}

#key-price1,#key-price2,#key-price3,#key-price4 {
    color: var(--third-color);
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px
}

.price-buttons {
    display: block;
    justify-content: center
}

.checkout {
    background-color: var(--contrast-color);
    border: none;
    color: var(--text-color);
    padding-block:16px;width: 350px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
    margin-bottom: 24px
}

.checkout:hover {
    background-color: var(--text-color);
    font-weight: 600;
    box-shadow: 0 5px 10px #0e0f11;
    color: var(--contrast-color)
}

.status {
    display: flex;
    justify-content: center
}

.status span {
    display: flex;
    font-size: 14px;
    color: #7e7e7e;
    align-items: center
}

.ri-shield-flash-line,.ri-refresh-line {
    font-size: 20px;
    margin-right: 5px
}

.ri-checkbox-circle-line {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 400;
    margin-left: 5px;
    color: #1fb900
}

.ri-close-circle-line {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 400;
    margin-left: 5px;
    color: #b60000
}

.ri-indeterminate-circle-line {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 400;
    margin-left: 5px;
    color: #c0ad00
}

/*NEW CHECKOUT*/

.btn {
    padding: 12px 25px;
    margin: 10px;
    font-size: 18px;
    background-color: var(--contrast-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    align-items: center;
    justify-content: center;
}


.modal-content {
    background-color: var(--main-color);
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content p {
    margin-bottom: 15px;
}

.modal-content a {
    color: #5865F2;
    text-decoration: none;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-cancel {
    background-color: #aaa;
}