/* ===== Reset & Variables ===== */
  :root {
            --primary: #047dc3;
            --primary-dark: #0369a1;
            --secondary: #ff8000;
            --dark: #1e293b;
            --gray: #64748b;
            --light-gray: #f1f5f9;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
            --radius: 8px;
            --radius-lg: 12px;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(90deg,#ebeeee 70%, #2e5257  ); 
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ===== Container Fix ===== */
.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 10px; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 10px; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 10px; }

@media (min-width: 576px) {
    .col-sm-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 10px; }
}

@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; max-width: 25%; padding: 0 10px; }
    .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 10px; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 10px; }
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
    .col-lg-2 { flex: 0 0 16.666%; max-width: 16.666%; padding: 0 10px; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; padding: 0 10px; }
    .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 10px; }
    .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; padding: 0 10px; }
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
}

@media (min-width: 1200px) {
    .col-xxl-2 { flex: 0 0 16.666%; max-width: 16.666%; padding: 0 10px; }
    .col-xxl-3 { flex: 0 0 25%; max-width: 25%; padding: 0 10px; }
}

/* ===== Header Top ===== */
.header-top {
    background: linear-gradient(#06053d 10%, #fff); 
    border-bottom: 1px solid var(--border);
    padding: 6px 0;
    font-size: 15px;
}

.header-top ul {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    
}

.header-top ul li a {
    color: var(--white);
}

.header-top ul li a:hover {
    color: var(--primary);
}

.header-top ul li a i {
    margin-right: 5px;
    color: var(--primary);
}

/* ===== Header Middle ===== */
.header-middle {
    background: #fff;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.header-middle .logo img {
    height: 45px;
}

.search-box {
    position: relative;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    height: 44px;
    padding: 0 50px 0 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.search-box input:focus {
    box-shadow: 0 0 0 3px rgba(4, 125, 195, 0.2);
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    width: 50px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.header-right .nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.header-right .nav-item:hover {
    background: var(--light-gray);
}

.header-right .nav-item i {
    font-size: 20px;
    color: var(--primary);
}

.header-right .nav-item .badge {
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    margin-left: -8px;
}

.mobile-cart {
    position: relative;
    font-size: 20px;
    color: var(--primary);
}

.mobile-cart .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
}

/* ===== Navigation ===== */
.main-nav {
    background:#033335; 
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    display: block;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.main-nav ul li a:hover {
    color: var(--secondary);
}

.main-nav ul li a i {
    margin-left: 5px;
    font-size: 12px;
}

.main-nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.main-nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul li .dropdown li {
    display: block;
    border-bottom: 1px solid var(--border);
}

.main-nav ul li .dropdown li:last-child {
    border-bottom: none;
}

.main-nav ul li .dropdown li a {
    color: var(--dark);
    text-transform: none;
    padding: 10px 20px;
    font-weight: 400;
}

.main-nav ul li .dropdown li a:hover {
    background: var(--light-gray);
    padding-left: 25px;
}

/* ===== Banner ===== */
.banner-section {
    padding: 20px 0;
}

.banner-section .owl-item img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.banner-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    font-size: 18px !important;
}

.banner-section .owl-nav .owl-prev {
    left: 10px;
}

.banner-section .owl-nav .owl-next {
    right: 10px;
}

.banner-section .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.banner-section .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.banner-section .owl-dots .owl-dot.active {
    background: var(--primary);
}

/* ===== Section Title ===== */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ===== Categories ===== */
.categories-section {
    padding: 30px 0;
}

.category-item {
    padding: 5px;
}

.category-item .card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-item .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-item .card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.category-item .card h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.category_active .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    font-size: 16px !important;
}

.category_active .owl-nav .owl-prev {
    left: -15px;
}

.category_active .owl-nav .owl-next {
    right: -15px;
}

/* ===== Products ===== */
.products-section {
    padding: 30px 0;
}

.products-section .nav-tabs {
    border-bottom: 2px solid var(--border);
    justify-content: center;
    margin-bottom: 25px;
    display: flex;
    gap: 0;
}

.products-section .nav-tabs .nav-link {
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    color: var(--gray);
    background: transparent;
    border-radius: 0;
    cursor: pointer;
}

.products-section .nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.products-section .nav-tabs .nav-link:hover {
    color: var(--primary);
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-card .image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--light-gray);
}

.product-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .image img {
    transform: scale(1.05);
}

.product-card .image .discount {
    position: absolute;
    top: 10px;
    left: 0;
    background: #ef4444;
    color: var(--white);
    padding: 2px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 20px 20px 0;
}

.product-card .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.product-card .content .name {
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-card .content .name:hover {
    color: var(--primary);
}

.product-card .content .price {
    text-align: center;
    margin: 8px 0;
}

.product-card .content .price .current {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.product-card .content .price .old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-card .content .btn-order {
    display: block;
    width: 100%;
    padding: 8px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-card .content .btn-order:hover {
    background: var(--secondary);
    color: var(--white);
}

.see-more-btn {
    border-radius: 25px !important;
    background: var(--primary) !important;
    border: none !important;
    padding: 12px 40px !important;
}

.see-more-btn:hover {
    background: var(--secondary) !important;
    color: var(--white) !important;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(#003438 60%, #440606 );
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer .logo img {
    height: 40px;
}

.footer .description {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 10px;
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer .social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer .social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer .bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* ===== Mobile Footer ===== */
.mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 999;
}

.mobile-footer ul {
    display: flex;
    justify-content: space-around;
}

.mobile-footer ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: var(--gray);
}

.mobile-footer ul li a i {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 2px;
}

.mobile-footer ul li a:hover {
    color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .main-nav {
        display: none !important;
    }
    .header-right {
        display: none !important;
    }
    .mobile-footer {
        display: block;
    }
    .d-md-none {
        display: block !important;
    }
    .d-md-block {
        display: none !important;
    }
    .banner-section .owl-item img {
        max-height: 250px;
    }
    .section-title h2 {
        font-size: 22px;
    }
    .product-card .content .price .current {
        font-size: 16px;
    }
    .category_active .owl-nav button {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .banner-section .owl-item img {
        max-height: 180px;
    }
    .section-title h2 {
        font-size: 18px;
    }
    .product-card {
        padding: 8px;
    }
    .product-card .content .name {
        font-size: 13px;
    }
    .product-card .content .price .current {
        font-size: 14px;
    }
    .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===== Auth Box ===== */
.auth-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.auth-box .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
}

.auth-box .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(4, 125, 195, 0.2);
}

.auth-box .btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
}

.auth-box .btn-primary:hover {
    background: var(--primary-dark);
}

/* ===== Cart Page ===== */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-item .info {
    flex: 1;
}

.cart-item .info h6 {
    margin: 0;
    font-size: 14px;
}

.cart-item .info .price {
    font-weight: 600;
    color: var(--primary);
}

.cart-summary {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cart-summary .row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.cart-summary .row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
}

/* ===== Success Page ===== */
.success-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

/* ============ Banner Area ============ */
.banner_area {
    padding: 12px 0;
}

.slider_banner_item {
    margin-top: 5px;
}

.slider_banner_item img {
    width: 100% !important;
    max-height: 450px !important;
    object-fit: cover;
    border-radius: 12px;
}

.slider_banner_active .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(4, 125, 195, 0.8) !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider_banner_active .owl-nav button:hover {
    background: rgba(4, 125, 195, 1) !important;
}

.slider_banner_active .owl-nav .owl-prev {
    left: 15px;
}

.slider_banner_active .owl-nav .owl-next {
    right: 15px;
}

.slider_banner_active .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider_banner_active .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
}

.slider_banner_active .owl-dots .owl-dot.active {
    background: #047dc3;
}

/* ============ Category Area ============ */
.category_area {
    padding: 3px 0;
}

.section_title {
    text-align: center;
    margin-bottom: 30px;
}

.section_title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.section_title .title_bottom_underline {
    width: 60px;
    height: 3px;
    background: #047dc3;
    margin: 10px auto 0;
    border-radius: 2px;
}

.category_item {
    padding: 5px;
}

.category_item_link {
    display: block;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.category_item_link:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.category_image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.category_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category_name p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #1e293b;
}

.category_item_link:hover .category_name p {
    color: #047dc3;
}

.category_active .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #047dc3 !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category_active .owl-nav button:hover {
    background: #0369a1 !important;
}

.category_active .owl-nav .owl-prev {
    left: -15px;
}

.category_active .owl-nav .owl-next {
    right: -15px;
}

/* ============ Products Tabs ============ */
.products_tabs_area {
    padding: 1px 1;
}

.products_tabs_list .nav-tabs {
    border-bottom: 2px solid #e2e8f0;
    justify-content: center;
    margin-bottom: 25px;
}

.products_tabs_list .nav-tabs .nav-link {
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #0d0d0d;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.products_tabs_list .nav-tabs .nav-link.active {
    color: #047dc3;
    border-bottom: 3px solid #047dc3;
    background: transparent;
}

.products_tabs_list .nav-tabs .nav-link:hover {
    color: #047dc3;
}

/* ============ See More Button ============ */
.product_see_more_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #047dc3;
    color: #9e3004;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product_see_more_btn:hover {
    background: #047dc3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4,125,195,0.2);
}

.product_see_more_btn i {
    transition: transform 0.3s ease;
}

.product_see_more_btn:hover i {
    transform: translateX(5px);
}

/* ============ Service Area ============ */
.service_area {
    padding: 30px 0;
}

.service_item {
    text-align: center;
}

.service_icon {
    width: 80px;
    height: 80px;
    line-height: 73px;
    text-align: center;
    font-size: 35px;
    border-radius: 50%;
    background: #047dc3;
    color: #fff;
    border: 5px solid #e2e8f0;
    margin: 0 auto;
}

.service_icon i {
    transition: all 0.3s ease;
}

.service_item:hover .service_icon i {
    transform: scaleX(-1);
}

.service_title {
    margin-top: 20px;
    margin-bottom: 5px;
}

.service_title h4 {
    font-size: 22px;
    font-weight: 600;
}

.service_description p {
    color: #060606;
}

/* ============ Product Card ============ */
.product_card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product_card:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product_image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    background: #f1f5f9;
}

.product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_card:hover .product_image img {
    transform: scale(1.05);
}

.product_discount {
    position: absolute;
    top: 10px;
    left: 0;
    background: #ef4444;
    color: #fff;
    padding: 2px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 20px 20px 0;
}

.product_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.product_name {
    flex: 1;
}

.product_name_link {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product_name_link:hover {
    color: #047dc3;
}

.product_price {
    margin: 8px 0;
    text-align: center;
}

.product_new_price {
    font-size: 18px;
    font-weight: 700;
    color: #047dc3;
}

.product_discount_price {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 8px;
}

.product_btn {
    margin-top: auto;
}

.product_btn_link {
    display: block;
    width: 100%;
    padding: 8px 0;
    background: #047dc3;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product_btn_link:hover {
    background: #0369a1;
    color: #fff;
}

/* ============ Responsive ============ */
@media (max-width: 991px) {
    .slider_banner_item img {
        max-height: 300px !important;
    }
    
    .section_title h2 {
        font-size: 22px;
    }
    
    .category_active .owl-nav button {
        display: none !important;
    }
    
    .products_tabs_list .nav-tabs .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .service_area {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .slider_banner_item img {
        max-height: 200px !important;
        border-radius: 8px;
    }
    
    .section_title h2 {
        font-size: 18px;
    }
    
    .product_name_link {
        font-size: 13px;
    }
    
    .product_new_price {
        font-size: 15px;
    }
    
    .product_discount_price {
        font-size: 12px;
    }
    
    .product_card {
        padding: 8px;
    }
    
    .product_see_more_btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Header Bottom Navigation ===== */
.header_bottom {
    background: #1e293b;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.main_menu {
    text-align: center;
    position: relative;
}

.main_menu > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main_menu > ul > li {
    position: relative;
    padding: 0 15px;
}

.main_menu > ul > li > a {
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.main_menu > ul > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ff8000;
    transition: all 0.3s ease;
}

.main_menu > ul > li:hover > a:after {
    width: 100%;
}

.main_menu > ul > li > a:hover {
    color: #ff8000;
}

.main_menu > ul > li > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.main_menu > ul > li:hover > a i {
    transform: rotate(180deg);
}

/* ===== Dropdown Menu ===== */
.main_menu ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    list-style: none;
    padding: 0;
    text-align: left;
    border-top: 3px solid #047dc3;
}

.main_menu ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main_menu ul li .submenu li {
    display: block;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.main_menu ul li .submenu li:last-child {
    border-bottom: none;
}

.main_menu ul li .submenu li a {
    display: block;
    padding: 10px 20px;
    color: #1e293b;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.main_menu ul li .submenu li a:hover {
    background: #f1f5f9;
    color: #047dc3;
    padding-left: 25px;
}

.main_menu ul li .submenu li a i {
    float: right;
    margin-top: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.main_menu ul li .submenu li:hover > a i {
    transform: rotate(180deg);
}

/* ===== Third Level Dropdown ===== */
.main_menu ul li .submenu li .submenu {
    position: absolute;
    top: -3px;
    left: 100%;
    min-width: 200px;
    border-radius: 0 8px 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border-top: 3px solid #047dc3;
}

.main_menu ul li .submenu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.main_menu ul li .submenu li .submenu li a {
    padding: 8px 20px;
    font-size: 13px;
}

.main_menu ul li .submenu li .submenu li a:hover {
    padding-left: 25px;
}

/* ===== Mobile Menu Toggle ===== */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
}

/* ===== Responsive Navigation ===== */
@media (max-width: 991px) {
    .header_bottom {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: #ffffff;
        z-index: 10000;
        padding: 20px;
        overflow-y: auto;
        transition: all 0.3s ease;
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #ffffff;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu ul li {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .mobile-menu ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        color: #1e293b;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-menu ul li a:hover {
        color: #fafbfc;
    }
    
    .mobile-menu ul li .submenu {
        display: none;
        padding-left: 15px;
    }
    
    .mobile-menu ul li .submenu.open {
        display: block;
    }
    
    .mobile-menu ul li .submenu li {
        border-bottom: none;
    }
    
    .mobile-menu ul li .submenu li a {
        font-weight: 400;
        font-size: 13px;
        padding: 8px 0;
    }
}

@media (max-width: 576px) {
    .main_menu > ul > li {
        padding: 0 10px;
    }
    
    .main_menu > ul > li > a {
        font-size: 12px;
        padding: 10px 0;
    }
}

/* ========================================
   BANNER MODERN ANIMATIONS - Add to style.css
   ======================================== */

/* Banner Glow Effect */
.modern-banner-slider::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(4,125,195,0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Text Shadow Animation */
.banner-content .banner-title {
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
    50% { text-shadow: 0 0 30px rgba(4,125,195,0.3), 0 0 60px rgba(4,125,195,0.1); }
}

/* Button Pulse Animation */
.banner-content .banner-btn {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 128, 0, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 128, 0, 0); }
}

/* Slide Transition Effects */
.banner-slide {
    position: relative;
    overflow: hidden;
}

.banner-slide img {
    transition: transform 8s ease;
}

.banner-slide.active img {
    transform: scale(1.05);
}

/* Floating Elements on Banner */
.banner-float-element {
    position: absolute;
    z-index: 1;
    animation: floatElement 6s ease-in-out infinite;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .modern-banner-slider .banner-slide img {
        max-height: 300px;
    }
    
    .banner-content .banner-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .modern-banner-slider .banner-slide img {
        max-height: 200px;
    }
    
    .banner-content .banner-title {
        font-size: 18px;
    }
}

/* ========================================
   MODERN BANNER SLIDER
   ======================================== */

.banner_area {
    padding: 0px 0;
    position: relative;
    overflow: hidden;
}

/* ===== Banner Slider Container ===== */
.modern-banner-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.modern-banner-slider .banner-slide {
    position: relative;
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}

.modern-banner-slider .banner-slide.active {
    display: block;
}

.modern-banner-slider .banner-slide img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

/* ===== Slide Content Overlay ===== */
.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 40px 60px;
    color: #fff;
    z-index: 2;
    max-width: 600px;
}

.banner-content .banner-badge {
    display: inline-block;
    background: rgba(4, 125, 195, 0.9);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    animation: slideInLeft 0.6s ease 0.3s both;
}

.banner-content .banner-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideInLeft 0.6s ease 0.5s both;
}

.banner-content .banner-title span {
    color: #ff8000;
}

.banner-content .banner-desc {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
    animation: slideInLeft 0.6s ease 0.7s both;
}

.banner-content .banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff8000;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease 0.9s both;
}

.banner-content .banner-btn:hover {
    background: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 128, 0, 0.4);
    color: #fff;
}

/* ===== Dark Overlay ===== */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* ===== Slide Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Navigation Arrows ===== */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-arrow:hover {
    background: rgba(4, 125, 195, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.banner-arrow.prev {
    left: 20px;
}

.banner-arrow.next {
    right: 20px;
}

/* ===== Dots Navigation ===== */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-dots .dot:hover {
    transform: scale(1.2);
}

.banner-dots .dot.active {
    background: #047dc3;
    border-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(4, 125, 195, 0.5);
}

/* ===== Progress Bar ===== */
.banner-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #047dc3, #ff8000);
    z-index: 10;
    transition: width 0.1s linear;
    width: 0%;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .banner-content {
        padding: 20px 30px;
        max-width: 100%;
    }
    
    .banner-content .banner-title {
        font-size: 28px;
    }
    
    .banner-content .banner-desc {
        font-size: 14px;
    }
    
    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .banner-arrow.prev {
        left: 10px;
    }
    
    .banner-arrow.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .banner-content .banner-title {
        font-size: 20px;
    }
    
    .banner-content .banner-desc {
        display: none;
    }
    
    .banner-content .banner-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .banner-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ===== Slide Animation Types ===== */
.slide-effect-zoom .banner-slide img {
    animation: zoomIn 4s ease infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.slide-effect-slide .banner-slide {
    animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.slide-effect-fade .banner-slide {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ============================================================
   MERGED HEADER STYLES
   ============================================================ */

.header-top.merged-header {
    background: linear-gradient(#40bec7 60%, #750202 ); 
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo .logo img {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
}

/* Search Box */
.header-search {
    flex: 1;
    max-width: 600px;
}

.header-search form {
    display: flex;
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.header-search form:focus-within {
    border-color: #047dc3;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(4, 125, 195, 0.1);
}

.header-search input {
    flex: 1;
    padding: 10px 18px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
}

.header-search button {
    padding: 10px 20px;
    border: none;
    background: #047dc3;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.header-search button:hover {
    background: #03609e;
}

/* Header Actions (User + Cart) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-user-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-user-links .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-user-links .nav-link:hover {
    background: #f1f5f9;
    color: #047dc3;
}

.header-user-links .nav-link i {
    font-size: 14px;
}

/* Cart */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #1e293b;
    text-decoration: none;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.header-cart:hover {
    background: #047dc3;
    color: #fff;
}

.header-cart .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #047dc3;
    color: #fff;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 11px;
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

.header-cart:hover .badge {
    background: #fff;
    color: #047dc3;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #1e293b;
    font-size: 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #f1f5f9;
}

/* Mobile Search */
.mobile-search {
    margin-top: 10px;
}

.mobile-search form {
    display: flex;
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    background: #f8f9fa;
}

.mobile-search input {
    flex: 1;
    padding: 8px 14px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
}

.mobile-search button {
    padding: 8px 16px;
    border: none;
    background: #047dc3;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.mobile-search button:hover {
    background: #03609e;
}

/* Mobile User Links */
.mobile-user-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.mobile-user-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: #1e293b;
    text-decoration: none;
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.mobile-user-links a:hover {
    background: #047dc3;
    color: #fff;
}

.mobile-user-links a i {
    font-size: 14px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablets & Small Laptops (768px - 991px) */
@media (max-width: 991px) {
    .header-top-wrapper {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .header-search {
        flex: 1 1 100%;
        order: 3;
        max-width: 100%;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-user-links .nav-link span {
        display: none;
    }
    
    .header-user-links .nav-link {
        padding: 6px 10px;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .header-top.merged-header {
        padding: 10px 0;
    }
    
    .header-top-wrapper {
        gap: 10px;
    }
    
    .header-logo .logo img {
        height: 32px;
        max-width: 120px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-cart {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
    
    .header-cart .badge {
        font-size: 10px;
        min-width: 18px;
        padding: 1px 6px;
        top: -3px;
        right: -3px;
    }
    
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .mobile-search {
        margin-top: 8px;
    }
    
    .mobile-search input {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .mobile-search button {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .mobile-user-links {
        gap: 4px;
        margin-top: 8px;
        padding-top: 8px;
    }
    
    .mobile-user-links a {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .mobile-user-links a i {
        font-size: 12px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .header-top.merged-header {
        padding: 6px 0;
    }
    
    .header-top-wrapper {
        gap: 6px;
    }
    
    .header-logo .logo img {
        height: 28px;
        max-width: 100px;
    }
    
    .header-actions {
        gap: 4px;
    }
    
    .header-cart {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    
    .header-cart .badge {
        font-size: 9px;
        min-width: 16px;
        padding: 1px 5px;
        top: -2px;
        right: -2px;
    }
    
    .mobile-menu-toggle {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    
    .mobile-search input {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .mobile-search button {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .mobile-user-links a {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* ============================================================
   ORIGINAL HEADER TOP STYLES (Keep for compatibility)
   ============================================================ */
.header-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.header-top ul li a:hover {
    color: #047dc3;
}

.header-top ul li a i {
    margin-right: 5px;
}