  @import url("https://fonts.googleapis.com/css2?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 {
  --primary-color: #e02727;
  --secondary-color: #ff4757;
  --text-dark: #333;
  --text-light: #666;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --border-light: #e9ecef;
  --shadow-light: 0 8px 25px rgba(0,0,0,0.1);
  --shadow-medium: 0 15px 40px rgba(0,0,0,0.12);
  --gradient-primary: linear-gradient(135deg, #e02727, #ff4757);
  --gradient-background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f0f0f0;
  color: #333;
  /* padding-bottom: 80px;
  padding-top: 70px; */
  scroll-behavior: smooth;
  transition: background 0.3s, color 0.3s;
}
.title2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2d87ee;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.title1 {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d87ee;
}
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #2d87ee;
      padding: 0 20px;
      height: 70px;
      flex-wrap: wrap;
    }

    .nav-left,
    .nav-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    nav a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: #f0f0f0;
      text-decoration: none;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: 10px;
    }

    nav a:hover {
      background-color: #2c79d1;
    }

    .search-container {
      position: relative;
      display: flex;
      align-items: center;
    }

    .search-container input {
      width: 300px;
      height: 35px;
      padding-left: 35px;
      border-radius: 10px;
      border: none;
      font-size: 16px;
    }

    .search-icon {
      position: absolute;
      left: 10px;
      width: 18px;
      height: 18px;
      stroke: #581271;
    }

    /* SIDEBAR NAV2 */
    #nav2 {
      position: fixed;
      top: 0;
      left: -240px;
      height: 100%;
      width: 200px;
      background: #5b98dd;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      transition: left 0.3s ease;
      z-index: 1001;
      padding: 20px 15px;
    }

    #nav2.show {
      left: 0;
    }

    #nav2 ul {
      list-style: none;
      padding: 0;
    }

    #nav2 li {
      padding: 12px;
      border-bottom: 1px solid #ddd;
      color: #fff;
      font-size: 16px;
    }
    #nav2 li a{
      color: #fff;
      text-decoration: none;

    }

    #nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: none;
    }

  #nav2 ul .main-links {
    display: none;
  }

  .whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1002;
  background-color: #25d366;
  border-radius: 55%;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon i {
  color: white;
  font-size: 28px;
}



    /* 🔻 MOBILE VIEW SETTINGS */
    @media screen and (max-width: 768px) {
      
      .title1 {
        display: flex;
      }
      #shop,#deals,#service,.title2, .hide-mobile {
        display: none;
      }
      .nav-left{
        display: flex;
        position: relative;
        right: 5%;
      }

      .search-container input {
        display: flex;
        position: relative;
        width: 180px;
        right: 10%;
      }
      #nav2 ul .main-links,a {
        display: block;
        color: #ffffff;
        text-decoration: none;
      }

    @media (max-width: 320px) {
      .footer-col-copyright{
       display: flex;
       flex-direction: column;
       align-items: center;
      }
      .footer-col-copyright h4 {
        color: #ffffff;
        text-align: center;
        width: 100%;
      }
      .footer-col-copyright pre {
      font-size: 1.1em;
      color: #ffffff;
      text-align: center;
      background: none;
      border: none;
      margin: 0;
      padding: 0;
      width: 100%;
      font-family: inherit;
    }
  }  
    }.footer {
      background: #2d87ee;
      padding: 40px 20px;
    }
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }
    .footer-col h4,
    .footer-col h3 {
      margin-bottom: 10px;
    }
    .footer-col a {
      display: block;
      color: #000;
      margin-bottom: 6px;
      text-decoration: none;
    }
    .footer-note {
      text-align: center;
      color: #f9f9f9;
      margin-top: 20px;
    }
    input[type="email"] {
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
img {
  pointer-events: auto;
  user-select: none;
}

/* PROFESSIONAL SCROLLBAR - INVISIBLE */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none;
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  display: none;
}

::-webkit-scrollbar-thumb:hover {
  display: none;
}
