/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #74df6c, #e1da55);
  color: #333333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  /* background: linear-gradient(to right, #4CAF50, #FF9800); */
  color: white;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: beige;
}

.logo img {
  width: 70px;
}

.menu-icon {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: white;
}

.hero {
  text-align: center;
  padding-top: 0%;
  margin-top: -61px;
  /* background: linear-gradient(to right, #4CAF50, #FF9800); */
  color: black;
  font-weight: bold;
}

.hero h1 {
  margin-top: -36px;
  font-family: Fantasy;
}

.hero p {
  padding-bottom: 20px;
}

#heading-para {
  font-size: 20px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.main-img {
  width: 20rem;
  height: auto;
  padding: 0%;
  margin: 0%;
}

.catalog {
  padding: 2rem 1rem;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 30px;
  align-items: end;
}

.item img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

.item p {
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#custom-para {
  margin-top: -4%;
  font-size: 92%;
  color: red;
  /* font-weight: 500; */
}

.strike {
  color: red;
}

#Custom_Product {
  margin-bottom: 45px;
}


.order-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.order-btn:hover {
  background: white;
  color: black;
}

.footer {
  text-align: center;
  padding: 1rem;
  background: black;
  color: white;
}

.social-icons a {
  font-size: 1.5rem;
  color: white;
  margin: 0 0.5rem;
}

.social-icons a :hover {
  color: orangered;
}

.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.zoom-modal img {
  max-width: 90%;
  max-height: 90%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

#return{
  display: inline-block;
  margin-bottom: 50px;
  padding: 0.5rem 1rem;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
#return :hover{
  background: white;
  color: black;
}

/* Mobile View */
@media (max-width: 768px) {

  /* .nav-links{
    padding: 0%;
    margin: 0%;
    font-size: 1rem;
    text-align: end;
  } */
  .hero {
    padding: 41px 10px;
    /* Reduce padding for smaller screens */
  }

  .hero .main-img {
    width: 100px;
    /* Smaller logo size for mobile */
  }

  .hero h1 {
    font-size: 2rem;
    margin-top: -13px;
    /* Smaller heading size */
  }

  .hero p {
    font-size: 1rem;
    /* Smaller paragraph size */
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.3rem;
    background-color: transparent;
    margin-top: -10px;
    position: absolute;
    top: 60px;
    right: 1rem;
    padding: 1rem;
    z-index: 1;
    text-align: right;

  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .navbar {
    position: relative;
  }

  #Custom_Product {
    margin-bottom: 0px;
  }

.footer{
  font-size: 12px;
}

.social-icons{
  size: 5px;
}

  .lower-footer {
    align-items: start;
    font-size: 10px;
  }
}