/* Karma Licenses Frontend Styles */

.karma-licenses-shop {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.karma-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.karma-product-card {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.karma-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #007cba;
}

.karma-product-card.featured {
    border-color: #007cba;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.karma-product-card.featured::before {
    content: "POPOLARE";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #007cba;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
}

.karma-product-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.karma-product-description {
    color: #6c757d;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.karma-price-current {
    font-size: 2em;
    font-weight: bold;
    color: #007cba;
    margin: 20px 0;
}

.karma-price-original {
    font-size: 1.2em;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 10px;
}

.karma-sale-badge {
    background: #d63384;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 10px;
}

.karma-product-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.karma-product-button:hover {
    background: #005a87;
    transform: translateY(-2px);
}

/* Bundle Section */
.karma-bundle-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.karma-bundle-title {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.karma-bundle-price {
    font-size: 3em;
    font-weight: bold;
    margin: 20px 0;
}

/* Checkout */
.karma-checkout {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.karma-checkout-form {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 30px;
}

.karma-form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1em;
    margin: 10px 0;
}

.karma-form-input:focus {
    outline: none;
    border-color: #007cba;
}

/* Notifications */
.karma-notification {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: bold;
}

.karma-notification.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.karma-notification.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .karma-products-grid {
        grid-template-columns: 1fr;
    }
    
    .karma-bundle-title {
        font-size: 2em;
    }
}
