/* Add-ons Menu Styles */
.addons {
    background-color: rgba(10, 10, 20, 0.15);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.addons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, rgba(10, 10, 20, 0) 70%);
    z-index: 0;
}

.addons .container {
    position: relative;
    z-index: 1;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.addon-item {
    background: rgba(20, 20, 40, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.addon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(20, 20, 40, 0) 100%);
    z-index: -1;
}

.addon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
}

.addon-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.addon-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.addon-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #7c3aed;
    margin-top: auto;
    display: flex;
    align-items: center;
}

.addon-price::before {
    content: '+';
    margin-right: 5px;
}

@media (max-width: 992px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
}

