/* Custom CSS styles for Bột giặt Thanh Nhàn theme */

/* WordPress Admin Bar offsets */
body.admin-bar #masthead { 
    top: 32px; 
}
@media screen and (max-width: 782px) {
    body.admin-bar #masthead { 
        top: 46px; 
    }
}

/* FluentForm overrides to match UI styles */
.fluentform .ff-el-form-control {
    padding: 0.65rem 1rem !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.75rem !important;
    font-size: 0.875rem !important;
    outline: none !important;
    width: 100% !important;
    font-family: inherit !important;
    transition: border-color 0.2s !important;
}
.fluentform .ff-el-form-control:focus {
    border-color: #00A859 !important;
    box-shadow: 0 0 0 2px rgba(0, 168, 89, 0.1) !important;
}
.fluentform .ff-el-form-content {
    margin-bottom: 1rem !important;
}
.fluentform .ff-el-form-content label {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #1a3020 !important;
    margin-bottom: 0.375rem !important;
    display: block !important;
}
.fluentform .ff-btn-submit {
    width: 100% !important;
    background: linear-gradient(to right, #FF8C00, #ff9f24) !important;
    color: white !important;
    padding: 0.875rem 2rem !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    border: none !important;
    transition: all 0.2s !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}
.fluentform .ff-btn-submit:hover {
    background: #e07a00 !important;
    transform: translateY(-0.5px) !important;
}

/* Hide scrollbars for carousels */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Banner animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}
