/* Marketplace Buttons */
.aws-marketplace-buttons {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.aws-marketplace-buttons__title {
    margin: 0 0 12px;
    font-size: 14px;
    color: #666;
}

.aws-marketplace-buttons__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aws-marketplace-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--aws-mp-color, #333);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.aws-marketplace-btn:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

.aws-marketplace-btn__icon {
    display: flex;
}

.aws-marketplace-btn__icon svg {
    width: 20px;
    height: 20px;
}

/* Icon only style */
.aws-marketplace-buttons--icon-only .aws-marketplace-btn {
    padding: 10px;
}

.aws-marketplace-buttons--icon-only .aws-marketplace-btn__label {
    display: none;
}

/* Text only style */
.aws-marketplace-buttons--text-only .aws-marketplace-btn__icon {
    display: none;
}

@media (max-width: 480px) {
    .aws-marketplace-buttons__list {
        flex-direction: column;
    }
    .aws-marketplace-btn {
        justify-content: center;
    }
}
