/*========================
HEADER AREA
========================*/
/*==============
*NOTICE AREA
==============*/
#header_area{
    background: #ffffff;
    opacity: 95%;
    position: fixed;
    width: 100%;
    z-index: 10000;
}
#notice{
    margin: 0%;
    background: #1b4130;
    padding: 6px 0;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    border-bottom: 1px solid #888;
}
#notice p{
    margin: 0;
    font-size: 13px;
}

/*=============
*HEADER AREA
==============*/
/*logo*/
#header {
    width: 100%; 
    margin-top: 10px; 
    margin-bottom: 10px;
}

#header .col-md-3 {
    display: flex;
    align-items: center;       
    justify-content: flex-start; 
}

#header .col-md-3 img {
    max-height: 50px;
    height: auto;
    width: auto;
    padding: 0;
}

/*Account , cart*/
#header .col-md-2{
    display: flex;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    left: 70px;
}
#header .col-md-2 a {
    font-size: 23px;
    color: #1b4130;
    text-decoration: none;
    transition: 0.2s;
}  

#header .col-md-2 a:hover {
  color: #e67830;
}
/* counter */
.wishlist-count, .cart-count {
    position: relative;
    right: 20px;
    bottom: 10px;
    background: red !important;
    color: white !important;
    border-radius: 50%;
    padding: 4px 6px;
    font-size: 11px;
    z-index: 9999;
}

/* =========================
   MAIN MENU
========================= */
#header {
  padding: 2px 0;
  box-shadow: 0 3px 10px #ddd;
}

#header .col-md-6 ul {
  font-family: "Oswald", sans-serif;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

#header .col-md-6 ul li {
  display: inline-block;
  position: relative;
}

#header .col-md-6 ul li a {
  position: relative;
  display: block;
  padding: 14px 15px;
  font-size: 16px;
  color: #1b4130;
  text-transform: uppercase;
  text-decoration: none;
}

#header .col-md-6 ul li a span {
  display: block;
  font-size: 12px;
  font-family: "Kaisei Decol", serif;
}

/* ❌ remove block hover from main menu */
#header .col-md-6 ul > li > a:hover {
  background: none;
  color: #1b4130;
}

/* ✅ underline animation (ONLY main menu) */
#header .col-md-6 > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: #1b4130;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

#header .col-md-6 > ul > li > a:hover::after {
  width: 70%;
}


/* =========================
   DROPDOWN MENU
========================= */
#header .col-md-6 ul li ul {
  position: absolute;
  top: 100%;
  left: -99999px;
  width: 200px;
  background: #1b4130;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  text-align: left;
  z-index: 9999;
}

/* show dropdown */
#header .col-md-6 ul li:hover > ul {
  left: 0;
}

/* dropdown item */
#header .col-md-6 ul li ul li {
  display: block;
  position: relative;
}

#header .col-md-6 ul li ul li a {
  padding: 8px 14px;
  color: #fff;
  background: none;
}

/* ✅ block hover ONLY for dropdown */
#header .col-md-6 ul li ul li a:hover {
  background: #ddd;
  color: #1b4130;
}

/* ❌ remove underline from dropdown */
#header .col-md-6 ul li ul li a::after {
  display: none !important;
  content: none;
}


/* =========================
   SUB DROPDOWN
========================= */
#header .col-md-6 ul li ul li ul {
  position: absolute;
  top: 0;
  left: -99999px;
  width: 200px;
  background: #1b4130;
  padding: 6px 0;
}

/* show sub dropdown */
#header .col-md-6 ul li ul li:hover > ul {
  left: 100%;
}

/* submenu hover */
#header .col-md-6 ul li ul li:hover > a {
  background: #ddd;
  color: #1b4130;
}


/*ACTIVE MENU*/
#header .col-md-6 ul li.current-menu-item > a,
#header .col-md-6 ul li.current-menu-parent > a {
  color: #1b4130;
  background: #ffffff;
}

/* active underline */
#header .col-md-6 ul li.current-menu-item > a::after,
#header .col-md-6 ul li.current-menu-parent > a::after {
  width: 70%;
}
/* =========================
   HAMBURGER MENU
========================= */

#header .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 30px;
}

/* =========================
   SIDEBAR BASE
========================= */
#header .sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#header .sidebar ul li {
  position: relative;
}

/* Links */
#header .sidebar ul li a {
  display: block;
  padding: 10px 15px;
  color: #1b4130;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* =========================
   SUBMENU (CLICK ONLY)
========================= */
#header .sidebar ul li ul {
  max-height: 0;
  overflow: hidden;
  background: #f5f5f5;
  transition: max-height 0.35s ease;
}

/* Show submenu when active */
#header .sidebar ul li.active > ul {
  max-height: 500px;
}

/* Indent submenus */
#header .sidebar ul li ul li a {
  padding-left: 25px;
}

#header .sidebar ul li ul li ul li a {
  padding-left: 40px;
}

/* =========================
   ARROW ICON (CLICK AREA)
========================= */
#header .sidebar ul li.menu-item-has-children > a::after {
  content: "▶";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: 0.3s;
  pointer-events: none; /* important */
}

/* Rotate arrow */
#header .sidebar ul li.active > a::after {
  transform: translateY(-50%) rotate(90deg);
}
/*======================
Menu Position
======================*/

/* Right Menu default*/

/*
left menu
*/
#header_area.left_menu .col-md-9{
    order: 1;
}
#header_area.left_menu .col-md-9 ul{
    text-align: left;
}
#header_area.left_menu .col-md-3{
    order: 2;
}
/* Parent column flex */
#header_area.left_menu .col-md-3{
    display: flex;           /* Flex container */
    justify-content: flex-end; /* Push logo to the right */
    align-items: center;       /* Vertical center */
}

/* Logo image */
#header_area.left_menu .col-md-3img {
    max-height: 50px; /* Adjust as needed */
    width: auto;
}

/*
center menu
*/
#header_area.center_menu .col-md-9{
    order: 1;
    width: 100%;
    display: flex;           
    justify-content: center; 
    align-items: center;   
}

#header_area.center_menu .col-md-9 ul{
    text-align: left ;
}
#header_area.center_menu .col-md-3{
    width: 100%;
    display: flex;           
    justify-content: center; 
    align-items: center;
    margin: 10px;    
}
/*======================
Smooth underline animation
======================*/
#header .col-md-6 ul li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: #1b4130;
  transition: 0.3s ease;
  transform: translateX(-50%);
}
/* ==========================
   Responsive Hamburger Menu
========================== */

#header .sidebar {
  display: none; 
}
#header .hamburger{
  display: none;
}
#header .col-md-6 {
  display: block; 
}

/* Mobile & Tablet (max-width: 1024px) */
@media only screen and (max-width: 1024px) {
  #header .sidebar {
    display: none; 
  }
 #header .hamburger{
  display: flex;
  }
  #header .col-md-6 {
    display: none;
  }
}

/* ==========================================================================
   Medium Layout: 1280px.
   ========================================================================== */
@media only screen and (min-width: 200px) and (max-width: 1200px) {
  
}
/* ==========================================================================
   Tablet Layout: 768px. 
   ========================================================================== */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header .hamburger {
    top: 6px;
    display: flex;
    position: relative;
    width: 15%;
  }  
  #header .col-md-3{
    width: 35%;
    display: flex;
    position: relative;
    left: -40px;
  }
  #header .col-md-3 img {
    max-height: 30px;
    height: auto;
  }
  #header .col-md-2{
    display: flex;
    position: relative;
    width: 50%;
    top: 3px;
    left: -30px;
  }
    #header .col-md-2 a{
    font-size: 23px;
  }
  .wishlist-count, .cart-count {
    padding: 3px 5px;
    font-size: 10px;
}
}  

/* ==========================================================================
   Wide Mobile Layout: 480px.
   ========================================================================== */
@media only screen and (min-width: 200px) and (max-width: 767px) {
  #notice p{
    font-size: 10px;
  }  
  #header .hamburger {
    top: 6px;
    display: flex;
    position: relative;
    width: 15%;
  }   
  #header .col-md-3{
    width: 35%;
    display: flex;
  }
  #header .col-md-3 img {
    max-height: 30px;
    height: auto;
  }
  #header .col-md-2{
    display: flex;
    position: relative;
    width: 50%;
    top: 3px;
    left: -30px;
  }
    #header .col-md-2 a{
    font-size: 20px;
  }
  .wishlist-count, .cart-count {
    padding: 2px 4px;
    font-size: 10px;
    right: 18px;
  }
}  