* {
  margin: 0;
  font-family: Arial;
  box-sizing: border-box;
}

.navbar {
  height: 60px;
  background-color: #0f1111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.navbar div {
  padding: 3px;
}
.nav-logo {
  height: 50px;
  width: 100px;
}
.logo {
  background-size: cover;
  height: 50px;
  width: 100%;
  cursor: pointer;
}

.border {
  border: 1.5px solid transparent;
  cursor: pointer;
}

.border:hover {
  border: 1.5px solid white;
}

/* Styling for add first and second */

.add-first {
  color: #cccccc;
  font-size: 0.8rem;
  margin-left: 15px;
}

.add-sec {
  font-size: 1rem;
  margin-left: 13px;
}
.add-icon {
  display: flex;
  align-items: center;
}

/* Box 3 search bar */
.nav-search {
  display: flex;
  justify-content: space-evenly;
  width: 620px;
  height: 40px;
  border-radius: 4px;
}

.search-select {
  background-color: #e6e6e6;
  width: 50px;
  text-align: center;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: none;
}
option{
    cursor: pointer;
}
.search-select:hover{
    cursor: pointer;
    border: 2px solid orange;
}
.search-input {
  width: 100%;
  font-size: 1rem;
  border: none;
}

.search-icon {
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  background-color: #febd6a;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color: #0f1111;
}

span {
  font-size: 0.8rem;
}
.nav-second {
  font-size: 0.85rem;
  font-weight: 700;
}
.nav-cart i {
  font-size: 30px;
}
.nav-cart {
  font-size: 0.85rem;
  font-weight: 700;
}
.india {
 background-image: url("https://imgs.search.brave.com/3Mt4MPmdv6KJ27CERAuNJ_7PvNoL01sb_2wu1HXjvd0/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly90NC5m/dGNkbi5uZXQvanBn/LzAwLzYyLzE5Lzgz/LzM2MF9GXzYyMTk4/MzU0X1pNVm1UR1By/WDZSRmI5RGZFTjY3/QXM5emhWdmxVT3B0/LmpwZw");
  background-size: cover;
  height: 10px;
  width: 18px;
}

.flag {
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Pannel */
/* 🌟 Panel Container */
.pannel {
  height: 50px;
  background-color: #232f3e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

/* 🌟 Panel Options (Navigation Links) */
.pannel-ops {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.pannel-ops a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: 500;
}

/* 🔥 Hover Effects */
.pannel-ops a:hover {
  color: #ff9900;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* 🌟 Improved Hamburger Menu (For Mobile) */
.pannel-all {
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  transition:0.3s ease-in-out;
}

.pannel-all i {
  font-size: 22px;
}

/* 🔥 Hover Effect */
.pannel-all:hover {
  background-color: #37475a;
}
/* Sidebar styles */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  height: 100%;
  background-color: white;
  z-index: 999;
  overflow-y: auto;
  transition: left 0.3s ease;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #232f3e;
  color: white;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-user i {
  font-size: 24px;
}

.sidebar-close {
  cursor: pointer;
  font-size: 20px;
}

.sidebar-content {
  padding: 15px;
}

.sidebar-section {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.sidebar-section:last-child {
  border-bottom: none;
}

.sidebar-section h3 {
  margin-bottom: 10px;
  color: #111;
}

.sidebar-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-section ul li {
  margin-bottom: 8px;
}

.sidebar-section ul li a {
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

.sidebar-section ul li a:hover {
  color: #ff9900;
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  background-image: url('hero_image.jpg');
  height: 400px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-msg {
  background-color: white;
  height: 40px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  width: 90%;
  margin-bottom: 25px;
}
.hero-msg a {
  color: #007185;
  text-decoration: none;
}
/* Shop Section */
.shop-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #e2e7e6;
}

.box {
  height: 365px;
  width: 23.6%;
  background-color: white;
  padding: 20px 0px 15px;
  margin-top: 15px;
}

.box-img {
  height: 300px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-size: cover;
}
.box-content {
  margin-left: 1rem;
  margin-right: 1rem;
}
.box-content a {
  text-decoration: none;
}
.box-content p {
  color: #007185;
}

/* Footer */
footer {
  margin-top: 15px;
}

/* Panel 1: Back to Top */
.foot-pannel1 {
  background-color: #37475a;
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.foot-pannel1 a {
  text-decoration: none;
  color: white;
}
/* Panel 2: Footer Links */
.foot-pannel2 {
  background-color: #222f3d;
  color: white;
  display: flex;
  justify-content: space-evenly;
}

ul {
  margin-top: 20px;
}

ul p {
  font-weight: bold;
}

ul li {
  margin-top: 10px;
}

ul a {
  font-size: 0.85rem;
  color: #dddddd;
  text-decoration: none;
}

ul a:hover {
  color: white; /* Highlight link on hover */
}

/* Panel 3: Logo Section */
.foot-pannel3 {
  background-color: #222f3d;
  color: white;
  border-top: 0.5px solid white;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foot-logo {
  background-size: cover; /* Adjust logo scaling */
  height: 50px;
  width: 100px; /* Maintain aspect ratio */
}

/* Panel 4: Legal Links and Copyright */
.foot-pannel4 {
  background-color: #0f1111;
  color: white;
  height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.copyright {
  padding: 5px;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  max-width: 1200px; /* Restrict max width for better layout */
  margin: 0 auto; /* Center the grid */
}

/* 🌟 Product Card */
.product-card { 
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: calc(25% - 20px); /* 4 items per row with spacing */
  max-width: 280px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.3s;
  text-align: center;
}

/* 🌟 Product Image - Ensures Full Visibility */
.product-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover; /* Ensures image fits inside without distortion */
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

/* 🌟 Hover Effect */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card:hover img {
  transform: scale(1.05); /* Slight zoom effect */
}
.product-card:hover {
  transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
button {
  background-color: #FF9900;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}
button:hover {
  background-color: #e68000;
}
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.95);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
header{
  background-color:#0f1111;
  color: white;
  height: 60px;
  align-items: center;
  text-align: center;

}

#foot{
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: #37475a;
  color: white;
  height: 50px;
  text-decoration: none;
}