/* 4S Fashion Enterprise Theme Stylesheet */
:root {
    --fs-primary: #FF6B00;
    --fs-primary-hover: #E05E00;
    --fs-secondary: #FF3D57;
    --fs-navy: #0F172A;
    --fs-bg: #F8FAFC;
    --fs-card-bg: #FFFFFF;
    --fs-border: #E5E7EB;
    --fs-text-main: #111827;
    --fs-text-sub: #4B5563;
    --fs-success: #16A34A;
    --fs-warning: #F59E0B;
}

body {
    font-family: 'Hind Siliguri', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--fs-bg) !important;
    color: var(--fs-text-main) !important;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Category Filter Active Pill Button */
.fs-cat-btn.active {
    background-color: #FF6B00 !important;
    color: #ffffff !important;
    border-color: #FF6B00 !important;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35) !important;
}

/* Custom WooCommerce Form Overrides for BD Checkout */
.woocommerce-billing-fields p.form-row {
    margin-bottom: 1rem !important;
}

.woocommerce-billing-fields label {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.375rem;
}

.woocommerce-billing-fields input.input-text,
.woocommerce-billing-fields select {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid #CBD5E1;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.woocommerce-billing-fields input.input-text:focus,
.woocommerce-billing-fields select:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

/* Checkout Place Order Button */
#place_order {
    width: 100% !important;
    background: linear-gradient(135deg, #FF6B00 0%, #FF3D57 100%) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    font-size: 1.125rem !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: 0.75rem !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 10px 15px -3px rgba(255, 107, 0, 0.35) !important;
    transition: all 0.2s ease !important;
}

#place_order:hover {
    opacity: 0.95 !important;
}
