.card-wrapper {
    width: 415px;
    height: auto;
    background-color: white;
    border-radius: 15px;
    border: rgba(0, 0, 0, 0.125) 1px solid;
}

.card-head {
    padding: 10px 10px 0 10px;
}

.card-image img {
    width: 100%;
    max-height: 300px;
    border-radius: 10px;
}

.card-badge {
    display: inline-block;
    background-color: #eeeeee;
    padding: 0 15px 0 15px;
    border-radius: 15px;
    margin-bottom: 5px;
}

.card-badge .badge-text {
    color: #0c56ff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
}

.card-body {
    margin-bottom: 10px;
    padding: 10px 10px 0 10px;
}

.card-body h1 {
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
}

.card-body h2 {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    color: #86868e;
    margin-bottom: 5px;
}

.card-body small {
    color: #0c56ff;
    font-weight: 600;
    font-size: 16px;
}

.card-package {
    margin-top: 20px;
    border-top: #c2c2ce solid 2px;
}

.card-package-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eeeefc;
    color: black;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    margin-top: 5px;
    margin-bottom: 30px;
    transition: background-color 0.3s ease-in-out;
}

.card-package-button.selected {
    background-color: #ffcc00;
}

.card-package-button.selected:focus {
    outline: 5px solid #e9e9ea;
}

.card-package-button div {
    color: black;
    font-size: 20px;
    font-weight: 600;
}

.card-desc {
    margin-top: 20px;
    border-top: #c2c2ce solid 2px;
}

.card-desc-list-wrapper {
    margin-top: 5px;
    margin-bottom: 15px;
}

.card-desc-list {
    margin-top: 5px;
    display: flex;
    align-items: start;
    gap: 5px;
}

.card-desc i {
    margin-top: 4px;
    font-size: 20px;
}

.card-desc p {
    font-size: 16px;
    color: black;
}

.card-footer {
    position: relative;
    padding: 10px 10px 10px 20px;
    background-color: rgb(0, 178, 179);
    border-radius: 0 0 15px 15px !important;
}

.card-footer i {
    position: absolute;
    top: -17px;
    right: 15px;
    padding: 8px 10px 8px 10px;
    background-color: #079dff;
    color: white;
    font-size: 24px;
    border-radius: 100%;
}

.card-footer p {
    color: white;
    font-size: 16px;
}

.card-footer .card-footer-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}

.card-footer .card-price {
    font-size: 40px;
    color: #ffe800;
    font-weight: 700;
    font-style: normal;
}

.card-footer .buy-draft-button {
    position: absolute;
    right: 15px;
    bottom: -17px;
    border: none;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 20px 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.card-footer .already-paid-button {
    text-decoration: none !important;
    position: absolute;
    right: 15px;
    bottom: -17px;
    border: none;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 20px 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    background-color: #3b82f6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 1.2em;
}

.card-footer .buy-draft-button:not(:disabled) {
    color: black;
    background: linear-gradient(to right, rgb(255, 190, 32), rgb(255, 150, 0));
    background-size: 200% auto;
    background-position: left center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.19);
}

.card-footer .buy-draft-button:not(:disabled):hover {
    background-position: right center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.card-footer .buy-draft-button:disabled {
    background-color: #00cbd8;
    box-shadow: none;
    cursor: not-allowed;
    color: #eee;
}

/* Mobile */
@media (max-width: 767px) {
    .card-price {
        font-size: 36px !important;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .card-image img {
        max-height: 250px;
    }

    .card-badge .badge-text {
        font-size: 14px;
    }

    .card-package-button div {
        font-size: 14px;
    }

    .card-price {
        font-size: 24px !important;
    }

    .card-footer .buy-draft-button {
        right: 15px;
        bottom: -17px;
        font-size: 18px;
    }
}
