@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* --------------------------------
      BRAND COLORS (Exact Mantu Style)
  ----------------------------------*/
  --primary: #000;        /* Blue highlight */
  --primary-light: #e9edff;
  --primary-soft: #f5f7ff;

  --success: #27c469;
  --danger: #ff4d4f;
  --warning: #faad14;

  /* Neutral Theme Colors */
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --text: #444;
  --text-light: #777;

  --border: #e6e6e6;
  --border-light: #f0f0f0;

   --bg: #f2f4f7;           /* Page background grey */
  --white: #ffffff;

  /* --------------------------------
      FONT FAMILY
  ----------------------------------*/
  --font-main: "Nunito", sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* --------------------------------
      FONT SIZE SYSTEM (Matching UI)
  ----------------------------------*/
  --fs-xxl: 2.4rem;     /* banner */
  --fs-xl: 1.8rem;      /* section headings */
  --fs-lg: 1.4rem;      /* card titles */
  --fs-md: 1.1rem;      /* normal title text */
  --fs-base: 0.95rem;   /* body text */
  --fs-sm: 0.85rem;     /* small labels */
  --fs-xs: 0.75rem;     /* micro text */

  /* --------------------------------
      RADIUS (Look at cards in screenshot)
  ----------------------------------*/
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* --------------------------------
      SHADOWS (Soft, clean, airy)
  ----------------------------------*/
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

  /* --------------------------------
      SPACING SYSTEM
  ----------------------------------*/
  --space-xxl: 4rem;
  --space-xl: 3rem;
  --space-lg: 2rem;
  --space-md: 1.2rem;
  --space-sm: 0.7rem;
  --space-xs: 0.4rem;
}
header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    max-width: 1300px;
    padding: 5px 20px;
    margin: 0px auto 20px auto;
    border: 1px solid var(--border);
    border-radius: 0px 0px 5px 5px;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999999 !important;
}
.h-logo
{
    height: 50px;
    margin: 0px 0px;
}
.link-sec{
    position: absolute;
    top: 65px ;
    right: 50%;
    left: 50%;
    transform: translate(-50% , 0%);
    z-index: 9999 !important;
    width: 350px;
       background-color: var(--white);
    border: 1px solid var(--border);
    color: #060606;
    padding: 15px 20px;
    display: none;
}
#menu-btn{
    display: none;
}
.link-sec.active{
    display: block;
}
.link-sec li{
    display: block !important;
    width: 100% !important;
    margin: 0px 0px 10px 0px;
   
}
.flex-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.link-sec li i {
    opacity: 0;
    transition: all 100ms;
}
.link-sec li:hover i {
    opacity: 1;

}
header ul{
    padding: 0px ;  
    margin: 0px;
}
header ul li {
    display: inline-block;
    margin: 0px 15px;
    align-items: center;
    padding: 0px !important;
}
header ul li i{
    font-size: 15px !important;
    margin-top: 10px;
    display: block;
}
header ul li a{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark);
}
header ul li span{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark);
    cursor: pointer;
}
header h2 {
    font-size: var(--fs-lg);
    margin: 0px;
    font-weight: 600;
}
header i{
    font-size: var(--fs-md);
    margin: 0px 6px;
}
.header-icon{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.cart{
    position: relative;
    margin-right: 25px;
}
#menu-btn i{
    font-size: 25px;
}
#cartItem{
    position: absolute;
    top: -4px;
    right: -10px;
    background-color: var(--black);
    padding: 3px 7px;
    font-size: 9px;
    border-radius: 50px;
    color: #fff;
}

@media(max-width:768px)
{
  .header-link{
    display: none;
    position: absolute;
    top:60px;
    left: 0px;
    right: 0px;
        background-color: var(--white);
    border: 1px solid var(--border);
    color: #060606;
    width: 100% !important;
    padding: 20px 10px;
    z-index: 9999 !important;

  }
  .header-link.active{
    display: block;
  }
  .header-link.active ul li{
    display: block !important;
    margin-bottom: 15px;
  }
  .header-link.active ul li a {
    font-size: 16px;
    font-weight: 500;
  }
   .header-link.active ul li span{
    font-size: 16px;
    font-weight: 500;
  }
  #menu-btn{
    display: block;
  }
  header{
    margin: 0px !important;
    border-radius: 0px !important;
  }
  .link-sec{
    position: static;
    transform: none !important;
    padding: 15px 15px 0px 15px;
    border: none;
  }
  .link-sec li a{
    font-size: 14px !important;
    color: var(--dark);
  }
}

@media(max-width:1030px)
{
    header{
           position: fixed;
    top: 0px;
    margin: 0px auto;
    border-radius: 0px;
    }
}