/* Standard Button System for Razia Foreign Trade */

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    min-height: 44px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 200ms ease;
    border: none;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid #F4A623;
    outline-offset: 2px;
}

/* Primary Button */
.btn-primary {
    background-color: #F4A623;
    color: #0A1A3C;
}

.btn-primary:hover {
    background-color: #0A8F2F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 166, 35, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
    background-color: #0A1A3C;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #0D2448;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 26, 60, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    color: #0A1A3C;
    border: 2px solid #0A1A3C;
}

.btn-outline:hover {
    background-color: #0A1A3C;
    color: #FFFFFF;
}

/* Ghost Button */
.btn-ghost {
    background-color: transparent;
    color: #0A1A3C;
}

.btn-ghost:hover {
    background-color: rgba(10, 26, 60, 0.05);
}

/* Large CTA Button */
.btn-cta {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
}

/* Disabled State */
.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Button with Icon */
.btn-icon {
    gap: 0.5rem;
}

.btn-icon .material-symbols-outlined {
    font-size: 18px;
}

/* Full Width Button */
.btn-full {
    width: 100%;
}
