/* Product Cards */
.pricing-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
}

.pricing-item img {
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.pricing-item h3 {
    margin: 15px 0;
    font-size: 20px;
    font-weight: 600;
}

.pricing-item h4 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-item h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing-item ul {
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

.pricing-item ul li {
    padding: 8px 0;
    text-align: left;
}

.pricing-item ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.btn-buy {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 4px;
    color: #fff;
    background: var(--primary-color);
    border: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.btn-buy:hover {
    background: var(--primary-dark);
}

/* Cart Modal */
.cart-item {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 10px;
}

.cart-item h5 {
    margin: 0;
    font-size: 16px;
}

.cart-item input[type="number"] {
    width: 70px;
}

.cart-total {
    border-top: 2px solid #eee;
    padding-top: 15px;
    text-align: right;
}

/* Notification */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    background: #fff;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification .close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    margin-left: 15px;
}

/* Payment Modal */
#payment-form {
    padding: 20px;
}

#payment-element {
    margin-bottom: 24px;
}

/* Success Modal */
#download-links {
    margin-top: 20px;
}

#download-links .btn {
    width: 100%;
    margin-bottom: 10px;
}
