/* WooCommerce Line & Shopee Link Plugin Styles */
.cm-woo-link-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.cm-woo-link-container .cm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    color: #ffffff !important;
    /* Force white text */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    /* Use theme font */
}

.cm-woo-link-container .cm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

.cm-woo-link-container .cm-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cm-woo-link-container .cm-shopee-img-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* LINE Button Style */
.cm-woo-link-container .cm-line-btn {
    background-color: #00c300;
    /* LINE Brand Green */
}

.cm-woo-link-container .cm-line-btn:hover {
    background-color: #00a800;
}

/* Shopee Button Style */
.cm-woo-link-container .cm-shopee-btn {
    background: linear-gradient(90deg, #f53d2d 0%, #ff7337 100%);
    /* Shopee Brand Orange */
}

.cm-woo-link-container .cm-shopee-btn:hover {
    background: linear-gradient(90deg, #d83526 0%, #e66630 100%);
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .cm-woo-link-container {
        flex-direction: column;
    }

    .cm-woo-link-container .cm-btn {
        width: 100%;
    }
}