/* TK Catalog Button Styles */

.tk-catalog-wrapper {
    text-align: center;
    margin: 30px 0;
}

.tk-catalog-button {
    display: inline-block;
    background: linear-gradient(135deg, #29487d 0%, #3a5fa0 100%);
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 72, 125, 0.3);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tk-catalog-button:hover {
    background: linear-gradient(135deg, #3a5fa0 0%, #29487d 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 72, 125, 0.4);
    outline: none !important;
    border: none !important;
}

.tk-catalog-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(41, 72, 125, 0.3);
    outline: none !important;
    border: none !important;
}

.tk-catalog-button:focus {
    outline: none !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(41, 72, 125, 0.5);
}

.tk-catalog-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.tk-catalog-text {
    line-height: 1;
    display: inline-block;
    color: #ffffff !important;
}

.tk-catalog-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: #29487d;
    font-size: 14px;
}

.tk-catalog-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e0e0e0;
    border-top-color: #29487d;
    border-radius: 50%;
    animation: tk-spin 0.8s linear infinite;
}

@keyframes tk-spin {
    to {
        transform: rotate(360deg);
    }
}

.tk-catalog-loading-text {
    font-weight: 500;
}

/* Extra specificity to override theme/Elementor styles */
button.tk-catalog-button,
button.tk-catalog-button:hover,
button.tk-catalog-button:focus,
button.tk-catalog-button:active {
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 15px rgba(41, 72, 125, 0.3) !important;
}

button.tk-catalog-button:hover {
    box-shadow: 0 6px 20px rgba(41, 72, 125, 0.4) !important;
}

button.tk-catalog-button:focus {
    box-shadow: 0 4px 15px rgba(41, 72, 125, 0.5) !important;
}
