/* =========================================================
   STEP 0 — Base reset
========================================================= */
* { box-sizing: border-box; }
body { 
  margin: 0; 
  font-family: "Segoe UI", Arial, sans-serif; 
  padding-top: 150px;  /* ✅ prevents content hiding under header */
}

/* =========================================================
   STEP 1 — Header frame (fixed at top)
========================================================= */
.header{
  background:#fff;
  border-bottom:1px solid #ddd;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:9999;    
  width:100%;
}

/* PAYMENT SECTION  */


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Payment Section */

.payment-section {
  
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    border-bottom: 1px solid #e0e0e0;
    max-width: 1515px;
    margin: 6px auto;
    text-align: center;
}

/* .payment-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
} */
 /* payment-grid h4 h3 {
    font-size: 24px;
    text-align: center;
  } */

  /* .payment-section-h3 h3{
   padding-bottom: 30px;
  } */
   .payment-section{
   text-align: center;
    padding: 49px 25px

   }

.payment-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 113px;
    max-width: 100%;
    margin-left: 80px;
}

.payment-method {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 180px;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.payment-method h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
  
}


.payment-method .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.payment-method img {
    max-height: 30px;
    object-fit: contain;
}

.note {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.note p {
    margin: 5px 0;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
    position: relative;
}

.f-container {
    max-width: 1200px;
    margin: 0 auto;
}

.f-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.f-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f-brand .f-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
}

.f-brand .f-logo svg {
    width: 32px;
    height: 32px;
}

.f-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

.f-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.f-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #2c2c2c;
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s ease;
}

.f-social-btn:hover {
    background: #3b82f6;
}

.f-social-btn svg {
    width: 20px;
    height: 20px;
}

.f-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.f-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-list a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.f-list a:hover {
    color: #3b82f6;
}

.f-news .f-note {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 15px;
}

.f-form {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

.f-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    background: #2c2c2c;
    color: #fff;
}

.f-form input::placeholder {
    color: #9ca3af;
}

.f-btn {
    padding: 10px 20px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.f-btn:hover {
    background: #2563eb;
}

.f-legal {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 10px;
}

.f-legal a {
    color: #3b82f6;
    text-decoration: none;
}

.f-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #2c2c2c;
    font-size: 14px;
    color: #9ca3af;
}

.f-mini {
    display: flex;
    gap: 20px;
    list-style: none;
}

.f-mini a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.f-mini a:hover {
    color: #3b82f6;
}

.f-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.f-to-top:hover {
    background: #2563eb;
}

.f-to-top svg {
    width: 20px;
    height: 20px;
}


  @media (max-width: 767px) {
    .brand-container {
      display:none;
     }
 }

@media (max-width: 768px) {
    .payment-section {
       padding: 30px 15px;
        display: flex;
    }

    .payment-grid {
        padding: 30px 15px;
        display: flex;
        flex-direction: column;
        gap: 30px;
               margin-left: 5px;
        width: 100%;
    }

    .f-grid {
        grid-template-columns: 1fr;
    }

    .f-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .f-to-top {
        bottom: 10px;
        right: 10px;
    }
}



  .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .options img {
    height: 35px;
    width: auto;
    padding: 6px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: 0.2s;
  }
  .options img:hover {
    background: #eee;
  }
  .note {
    margin-top: 20px;
    font-size: 14px;
    color: #c00;
  }
.options img {
  height: 40px; /* slightly bigger */
  width: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15); /* subtle shadow */
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.options img:hover {
  transform: scale(1.2); /* zoom effect */
  background: #f0f0f0; /* slightly darker bg on hover */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* stronger shadow */
}

/* =========================================================
   STEP 2 — Top row: logo, search, right cluster, hamburger
========================================================= */
.header-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo{ 
    display:flex; 
    align-items:center; 
    gap:10px;
    flex-shrink: 0;
}
.logo img{ 
  height: 60px;
  width: 235px;
  justify-content: center;
}
.tagline{ 
    font-size:12px; 
    color:#777; 
}

/* Search */
.search-box{
    flex: 1 1 auto;
    max-width: 600px;
    min-width: 300px;
    display:flex;
}
.search-box input{
    flex:1;
    padding:10px 12px;
    border:1px solid #bbb;
    border-right:none;
    border-radius:4px 0 0 4px;
    outline:none;
}
.search-btn{
    background:#003399; 
    color:#fff; 
    border:none;
    padding:10px 16px; 
    border-radius:0 4px 4px 0; 
    cursor:pointer;
}

/* Right cluster */
.header-right{
    display:flex; 
    align-items:center; 
    gap:12px; 
    flex-shrink: 0;
}
.header-right a{ 
    text-decoration:none; 
    font-size:14px; 
    color:#003399;
    white-space: nowrap;
}
.cart{ 
    position:relative; 
}
.cart-count{
    position:absolute; 
    top:-8px; 
    right:-12px;
    background:#e53935; 
    color:#fff; 
    font-size:11px; 
    line-height:1;
    padding:2px 6px; 
    border-radius:999px; 
    font-weight:700;
}
.login-btn{
    background:#003399; 
    color:#fff !important;
    padding:8px 14px; 
    border-radius:4px; 
    font-weight:700;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}
.quote-btn{
    background:#003399; 
    color: #fff; 
    border:none; 
    padding:8px 14px;
    border-radius:4px; 
    font-weight:700; 
    cursor:pointer;
    white-space: nowrap;
}

/* Hamburger (hidden on desktop) */
.hamburger{ display:none; flex-direction:column; gap:4px; cursor:pointer; }
.hamburger span{ width:22px; height:2px; background:#333; }

/* =========================================================
   STEP 3 — Main nav strip (row under the top bar)
========================================================= */
.nav-bar{
  display:flex; align-items:center; flex-wrap:wrap;
  gap:62px;
  padding:16px 223px;  /* keep your spacing */
  border-top:1px solid #eee; border-bottom:1px solid #eee;
}
.nav-item{
  font-size:14px; font-weight:700; color:#003399; cursor:pointer;
}
.nav-item:hover{ color:#000; }
.hot-icon{
  background:#e53935; color:#fff; font-size:10px;
  padding:2px 4px; border-radius:3px; margin-left:3px;
}

/* =========================================================
   STEP 4 — Dropdowns (Brand / Economy / Technical / Promotion)
========================================================= */


/* =========================================================
   STEP 5 — Account dropdown (top-right avatar/name)
========================================================= */
.account{ 
  position:relative; 
  display:inline-block; 
  z-index:100; /* Ensure it's above other header elements */
}

/* bRAND CSS OF THE HEADER  */
.brand {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Navbar container styles */
.brand-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid #eee;
    flex-wrap: nowrap;
}

        /* Brand dropdown toggle styling */
        .brand-dropdown .brand-dropdown-toggle {
            cursor: pointer;
            background: none;
            border: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #003399;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .brand-dropdown .brand-dropdown-toggle:hover {
            background-color: #f1f1f1;
        }

        /* Brand label styling */
        .brand-label {
            display: inline-flex;
            align-items: center;
        }

        .brand-label a {
            text-decoration: none;
            color: #003399;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .brand-label a:hover {
            background-color: #f1f1f1;
        }

        .category-section {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            color: #003399;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .category-section:hover {
            background-color: #f1f1f1;
        }

        .brand-item {
            position: relative;
            display: inline-flex;
        }
        
        .brand-dropdown {
            position: relative;
            display: inline-flex;
        }

        /* Dropdown menu hidden by default */
        .brand-dropdown-menu {
            display: block;
            position: absolute;
            background: white;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 200px;
            top: 100%; /* Position directly below the toggle button */
            left: 0; /* Align to the left edge of the parent */
            z-index: 1300; /* Higher z-index to appear above other content */
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            margin-top: 5px; /* Small gap to prevent hover gap */
        }

        /* Show dropdown on hover - both parent and menu */
        .brand-dropdown:hover .brand-dropdown-menu,
        .brand-dropdown-menu:hover {
            opacity: 1;
            pointer-events: auto;
            visibility: visible;
        }
        
        /* Keep dropdown visible when hovering over it */
        .brand-dropdown-menu:hover {
            opacity: 1;
            pointer-events: auto;
            visibility: visible;
        }

        /* Dropdown link styles */
        .brand-dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: #003399;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid #f1f1f1;
            transition: background-color 0.3s ease; /* Smooth background transition */
        }

        /* Remove border on the last link */
        .brand-dropdown-menu a:last-child {
            border-bottom: none;
        }

        /* Hover effect on links */
        .brand-dropdown-menu a:hover {
            background-color: #f1f1f1; /* Light grey on hover */
            color: #0056b3; /* Darker blue on hover */
        }

 /* Hide mobile menu toggle button on large screens */
/* Header row with button (left) and cart (right) */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

/* Hide toggle by default */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* Cart styling */
.cart-button {
    font-size: 16px;
    text-decoration: none;
    color: #000;
}

.cart-count-boadge {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 4px;
}

/* Desktop view - Single row */
.mobile-menu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding: 12px 0;
}

.mobile-menu-content {
    display: block;
    background: #fff;
    width: 100%;
}

/* Mobile view */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-content {
        display: none;
        background: #fff;
        padding: 10px;
    }

    .mobile-menu-content.show {
        display: block;
    }

    .mobile-menu-container {
        flex-direction: column;
    }

    .brand-item,
    .brand-label,
    .category-section {
        margin: 10px 0;
    }
}
/* Hide Cart button on laptop and larger screens */
@media (min-width: 768px) {
    .cart-button {
        display: none;
    }
}
 @media (max-width: 768px) {
    .cart {
      display: none;
    }
  }

.account .dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  right:0;             /* right align for account menu */
  background:#fff;
  min-width:180px;
  border:1px solid #ddd;
  border-radius:4px;
  padding:10px 0;
  box-shadow:0 8px 16px rgba(0,0,0,.1);
  z-index:1300;       /* Higher than mega menu (1200) */
  margin-top:5px;      /* Add spacing from button */
}
.account .dropdown-menu.show{
  display:block;
}
.account .dropdown-menu li{ list-style:none; margin:0; }
.account .dropdown-menu a,
.account .dropdown-menu button.linklike{
  display:block; width:100%; text-align:left;
  padding:10px 16px; background:none; border:none; font-size:14px;
  color:#003399; text-decoration:none; cursor:pointer;
}
.account .dropdown-menu a:hover,
.account .dropdown-menu button.linklike:hover{
  background:#f0f0f0; color:#003399;
}
@media (min-width: 993px){
  .account:hover .dropdown-menu{ 
    display:block !important; 
  }
  .account .dropdown-menu:hover{ 
    display:block !important; 
  }
  .account .dropdown-menu.show{ 
    display:block !important; 
  }
}

/* Login/Register Dropdown Styles */
.login-register-dropdown {
  position: relative;
  display: inline-block;
}

.login-register-dropdown .dropdown-toggle {
  width: 100%;
  text-align: left;
}

.login-register-dropdown .dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  right:0;
  background:#fff;
  min-width:180px;
  border:1px solid #ddd;
  border-radius:4px;
  padding:10px 0;
  box-shadow:0 8px 16px rgba(0,0,0,.1);
  z-index:1300;
  margin-top:5px;
}

.login-register-dropdown .dropdown-menu.show{
  display:block;
}

.login-register-dropdown .dropdown-menu li{ 
  list-style:none; 
  margin:0; 
}

.login-register-dropdown .dropdown-menu a{
  display:block; 
  width:100%; 
  text-align:left;
  padding:10px 16px; 
  background:none; 
  border:none; 
  font-size:14px;
  color:#003399; 
  text-decoration:none; 
  cursor:pointer;
}

.login-register-dropdown .dropdown-menu a:hover{
  background:#f0f0f0; 
  color:#003399;
}

@media (min-width: 993px){
  .login-register-dropdown:hover .dropdown-menu{ 
    display:block !important; 
  }
  .login-register-dropdown .dropdown-menu:hover{ 
    display:block !important; 
  }
  .login-register-dropdown .dropdown-menu.show{ 
    display:block !important; 
  }
}

/* =========================================================
   STEP 6 — Mega Menu (Categories ▾)
========================================================= */
.mega-menu{
  display:none;
  position:absolute; left:0; top:100%;
  width:100%; background:#fff;
  border-top:2px solid #003399;
  padding:20px;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
  z-index:1200; /* above nav dropdowns */
}
.mega-menu.active{ display:flex; flex-wrap:wrap; }

/* Left category list */
.mega-menu .menu{
  width:300px;
  list-style:none; margin:0; padding:0;
  background:#f9f9f9; border-right:1px solid #eee;
}
.mega-menu .menu li{
  padding:12px 16px; border-bottom:1px solid #eee;
}
.mega-menu .menu li:hover{ background:#003399; color:#fff; }
.mega-menu .menu li a{ color:inherit; text-decoration:none; display:block; }
.mega-menu .menu .ico{ margin-right:6px; }

/* Right content area */
.submenu{
  flex:1; 
  display:none; 
  padding:20px;
  gap:24px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 450px;
  scroll-behavior: smooth;
}
.submenu.active{ 
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
}

/* Scrollbar styling for submenu */
.submenu::-webkit-scrollbar {
  width: 8px;
}

.submenu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.submenu::-webkit-scrollbar-thumb {
  background: #003399;
  border-radius: 4px;
}

.submenu::-webkit-scrollbar-thumb:hover {
  background: #002266;
}

.submenu-col{
  margin-bottom: 20px;
}

.submenu-col h4{
  margin:0 0 8px; 
  font-size:15px; 
  font-weight:700; 
  color:#003399;
}
.submenu-col ul{ 
  list-style:none; 
  margin:0; 
  padding:0; 
}
.submenu-col li{ 
  margin:6px 0; 
}
.submenu-col a{ 
  color:#444; 
  text-decoration:none; 
}
.submenu-col a:hover{ 
  color:#003399; 
}

/* =========================================================
   STEP 7 — Search by Category Fix
========================================================= */
.cats-toggle, 
.hero-row, 
.cats-card {
  position: relative;
  z-index: 1;   /* ensures it's above slider */
  background:#fff;
}

@media (max-width: 992px){
  .cats-toggle {
   display: block;
    margin: 45px 0;
    padding: 0px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
  }
  .cats-toggle button {
    width:100%;
    background:none;
    border:none;
    font-size:15px;
    font-weight:600;
    text-align:center;
  }
}

/* =========================================================
   STEP 8 — Responsive rules
========================================================= */
@media (max-width: 992px){
  body{ padding-top: 120px; }
  .search-box{ display:none; }
  .hamburger{ display:flex; margin-left:auto; }
  .header-right{ width:100%; gap:10px; order:3; }
  .login-btn, .quote-btn{
    flex:1 1 calc(50% - 6px);
    text-align:center;
    padding:10px 12px;
    font-size: 14px;
  }
  .nav-bar{
    display:none;
    width:40%;
    padding:0; gap:0;
    border-top:1px solid #eee; border-bottom:1px solid #eee;
  }
  .nav-bar.open{ display:flex; flex-direction:column; }
  .nav-bar .nav-item{
    width:100%; padding:12px 16px; border-bottom:1px solid #eee; font-size:15px;
  }
  .nav-bar .nav-item:hover{ background:#f7f7f7; color:#003399; }
  .mega-menu{
    position:static; box-shadow:none; padding:12px; border-top:0;
  }
  .mega-menu .menu{ width:100%; border-right:0; }
  .submenu{
    grid-template-columns:repeat(2, minmax(140px, 1fr));
    padding:12px 4px;
  }
}

/* Tablet landscape */
@media (max-width: 768px){
  body{ padding-top: 110px; }
  .header-top{ padding: 10px 12px; }

  .tagline{ font-size: 11px; }
  .header-right a{ font-size: 13px; }
  .login-btn, .quote-btn{ padding: 8px 10px; font-size: 13px; }
}

/* Mobile landscape */
@media (max-width: 640px){
  body{ padding-top: 100px; }
  .header-top{ padding: 8px 10px; flex-wrap: wrap; }
  .logo{ gap: 8px; }
 
  .tagline{ font-size: 10px; }
  .header-right{ gap: 8px; }
  .header-right a{ font-size: 12px; }
  .login-btn, .quote-btn{ 
    padding: 6px 8px; 
    font-size: 12px;
    flex: 1 1 calc(50% - 4px);
  }
  .cart-count{ font-size: 10px; padding: 1px 4px; }
}

/* Mobile portrait */
@media (max-width: 480px){
  body{ padding-top: 90px; }
  .header-top{ padding: 6px 8px; }
  /* .logo img{ height: 28px; justify-content: center;  align-items: center; margin-left: 50
    
    px; } */
  .tagline{ display: none; }
  .header-right{ gap: 6px; }
  .header-right a{ font-size: 11px; }
  .login-btn, .quote-btn{ 
    padding: 5px 6px; 
    font-size: 11px;
    flex: 1 1 calc(50% - 3px);
  }
  .nav-bar .nav-item{ padding: 10px 12px; font-size: 14px; }
  .submenu{ display: block; }
}

/* Extra small phones */
@media (max-width: 360px){
  body{ padding-top: 85px; }
  .header-top{ padding: 5px 6px; }

  .header-right a{ font-size: 10px; }
  .login-btn, .quote-btn{ 
    padding: 4px 5px; 
    font-size: 10px;
  }
  .nav-bar .nav-item{ padding: 8px 10px; font-size: 13px; }
}


  /* Footer  */

  /* ---------- Footer Look & Feel ---------- */
:root{
  --f-bg: #0c1220;
  --f-bg-2: #0f1629;
  --f-ink: #e9edf6;
  --f-ink-soft: #aeb7c6;
  --f-link: #7db0ff;
  --f-accent: #3b82f6;
  --f-border: #1e2741;
  --f-success: #20c997;
}

.site-footer{
  position: relative;
  color: var(--f-ink);
  background:
    radial-gradient(1200px 400px at 80% 0%, #152042 0%, transparent 60%),
    linear-gradient(180deg, var(--f-bg) 0%, var(--f-bg-2) 100%);
  padding: 56px 0 24px;
  border-top: 2px solid #1a2440;
}

.f-container{ max-width: 1180px; margin: 0 auto; padding: 0 16px; }

.f-grid{
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1.4fr;
  gap: clamp(20px, 2.2vw, 36px);
  align-items: start;
}

/* Brand block */
.f-brand .f-logo{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700; color: var(--f-ink); text-decoration: none;
}
.f-brand .f-logo svg{ color: var(--f-accent); }
.f-desc{ margin: 10px 0 16px; color: var(--f-ink-soft); max-width: 36ch; }

.f-social{ display: flex; gap: 10px; }
.f-social-btn{
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--f-border); border-radius: 50%;
  color: var(--f-ink-soft); background: #0b1427;
  transition: transform .15s ease, color .2s ease, border-color .2s ease;
}
.f-social-btn:hover{ color: var(--f-ink); border-color: var(--f-link); transform: translateY(-2px); }
.f-social-btn svg{ width: 18px; height: 18px; }

/* Titles & lists */
.f-title{
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--f-ink); margin: 4px 0 12px; opacity: .85;
}
.f-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.f-list a{
  color: var(--f-ink-soft); text-decoration: none; transition: color .15s ease;
}
.f-list a:hover{ color: var(--f-link); }

/* Newsletter */
.f-news .f-note{ color: var(--f-ink-soft); margin: 0 0 10px; }
.f-form{ display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.f-form input{
  height: 42px; border-radius: 8px; border: 1px solid var(--f-border);
  background: #0b1427; color: var(--f-ink); padding: 0 12px;
}
.f-form input::placeholder{ color: #8190a9; }
.f-btn{
  height: 42px; border: none; border-radius: 8px; padding: 0 14px;
  background: linear-gradient(180deg, #2b6ffe 0%, #3b82f6 100%);
  color: white; font-weight: 600; cursor: pointer;
  transition: transform .08s ease, filter .2s ease;
}
.f-btn:hover{ filter: brightness(1.06); }
.f-btn:active{ transform: translateY(1px); }
.f-legal{ font-size: 12px; color: #90a0bb; margin-top: 8px; }
.f-legal a{ color: var(--f-link); text-decoration: underline; }

/* Bottom bar */
.f-bottom{
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; border-top: 1px solid var(--f-border); margin-top: 32px; padding-top: 18px;
}
.f-copy{ margin: 0; color: var(--f-ink-soft); font-size: 14px; }
.f-mini{ list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.f-mini a{ color: var(--f-ink-soft); text-decoration: none; }
.f-mini a:hover{ color: var(--f-link); }

/* Back to top button */
.f-to-top{
  position: fixed; right: 18px; bottom: 22px; z-index: 20;
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--f-border);
  background: #0b1427; color: var(--f-ink); display: grid; place-items: center;
  cursor: pointer; opacity: .9; box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .15s ease, opacity .2s ease, filter .2s ease;
}
.f-to-top:hover{ transform: translateY(-2px); filter: brightness(1.1); }
.f-to-top svg{ width: 20px; height: 20px; transform: rotate(180deg); }

/* Utilities */
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Responsive */
@media (min-width: 1400px){
  .header-top{
    max-width: 1600px;
    padding: 0px 40px;
  }
  .brand-container{
    max-width: 1600px;
    padding: 12px 40px;
  }
  .search-box{
    max-width: 700px;
  }
}

@media (max-width: 980px){
  .f-grid{ grid-template-columns: 1fr 1fr; }
  .f-brand{ grid-column: 1 / -1; }
  .site-footer{ padding: 40px 0 20px; }
}

@media (max-width: 768px){
  .f-container{ padding: 0 12px; }
  .f-grid{ gap: clamp(16px, 2vw, 24px); }
  .f-social{ gap: 8px; }
  .f-social-btn{ width: 34px; height: 34px; }
  .f-social-btn svg{ width: 16px; height: 16px; }
  .f-form{ grid-template-columns: 1fr; gap: 10px; }
  .f-form input, .f-btn{ height: 40px; }
}

@media (max-width: 620px){
  .f-grid{ grid-template-columns: 1fr; }
  .f-bottom{ flex-direction: column; align-items: flex-start; gap: 10px; }
  .site-footer{ padding: 32px 0 16px; }
  .f-container{ padding: 0 10px; }
  .f-brand .f-logo{ font-size: 20px; }
  .f-desc{ font-size: 14px; margin: 8px 0 12px; }
  .f-title{ font-size: 13px; margin: 3px 0 10px; }
  .f-list a{ font-size: 14px; }
  .f-social{ gap: 6px; }
  .f-social-btn{ width: 32px; height: 32px; }
  .f-social-btn svg{ width: 14px; height: 14px; }
  .f-form input, .f-btn{ height: 38px; font-size: 14px; }
  .f-legal{ font-size: 11px; }
  .f-copy{ font-size: 13px; }
  .f-mini{ gap: 12px; }
  .f-mini a{ font-size: 13px; }
}

@media (max-width: 480px){
  .site-footer{ padding: 28px 0 14px; }
  .f-container{ padding: 0 8px; }
  .f-brand .f-logo{ font-size: 18px; gap: 8px; }
  .f-brand .f-logo svg{ width: 24px; height: 24px; }
  .f-desc{ font-size: 13px; margin: 6px 0 10px; }
  .f-title{ font-size: 12px; margin: 2px 0 8px; }
  .f-list{ gap: 6px; }
  .f-list a{ font-size: 13px; }
  .f-social{ gap: 5px; }
  .f-social-btn{ width: 30px; height: 30px; }
  .f-social-btn svg{ width: 13px; height: 13px; }
  .f-form input, .f-btn{ height: 36px; font-size: 13px; padding: 0 10px; }
  .f-legal{ font-size: 10px; }
  .f-copy{ font-size: 12px; }
  .f-mini{ gap: 10px; }
  .f-mini a{ font-size: 12px; }
  .f-to-top{ width: 36px; height: 36px; right: 12px; bottom: 16px; }
  .f-to-top svg{ width: 18px; height: 18px; }
}


/*  for header section pages  */
.Category-Product-Section {
        /* Container Styles */
        display: inline-flex;
        align-items: center;
        padding: 0px 12px;
        font-size: 15px;
        font-weight: bold;
        color: rgb(0, 51, 153);
        white-space: nowrap;
        cursor: pointer;
        background-color: transparent;
        border: none;
    }

    .Category-Product-Section .tag-icon {
        margin-right: 6px;
        content: '🏷';
        display: inline-block;
        width: 18px;
        height: 18px;
        color:#ffc107;
}