@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 1.2rem;
  font-family: 'Merriweather Sans', sans-serif;
  background: #ffc7f3;
  color: #ececec;
  overflow-x: hidden;
}

.buttons {
  text-align: center;
  border-radius: 0 0 15px 15px;
  background: rgba(10, 10, 10, 0.10);
  backdrop-filter: blur(20px);
  display: flex;
  top: 80px;
  position: fixed;
  z-index: 99;
  width: 100%;
  left: 0;
  
}
#no-products-message{
    position: fixed;
    height: 100vh;
    width: 100%;
    text-align: center;
    justify-content: center;
    top: 190px;
    z-index: -1;
}
.buttons button {
  margin: 8px auto;
  padding: 10px 20px;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  color: rgba(10, 10, 10, 0.65);
}
.buttons .active {
  background: rgba(255, 255, 255, 0.60);
  font-weight: bold;
  letter-spacing: 1px;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.all-products {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 90vh;
}
.product {
  overflow: hidden;
  background: #2c3e50;
  color: #edf2f3;
  text-align: center;
  width: 290px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  margin: 1rem;
}
.product .product-title,
.product .product-price {
  font-size: 13px;
}
.price-alert {
  font-size: 10px;
}
.product:hover img {
  scale: 1.1;
}
.product:hover {
  z-index: 10;
  box-shadow: 5px 15px 25px #eeeeee;
  scale: 1.3;
}
.product img {
  height: 250px;
  margin: 1rem;
  transition: all 0.3s;
}
.product a:link,
.product a:visited {
  color: #ececec;
  display: inline-block;
  text-decoration: none;
  background-color: #ff5adb;
  padding: 1rem 3rem;
  border-radius: 1rem;
  margin-top: 1rem;
  font-size: 14px;
  transition: all 0.2s;
}
.product a:hover {
  transform: scale(1);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 200px;
  background: #ff5adb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
}
.nav {
  justify-content: space-between;
}
a {
  color: #fff;
  text-decoration: none;
}
.nav .logo {
  font-size: 22px;
  font-weight: 500;
}
.nav .nav-links {
  column-gap: 20px;
  list-style: none;
}

.nav .nav-links a {
  transition: all 0.2s linear;
}

.nav.openSearch .nav-links a {
  opacity: 0;
  pointer-events: none;
}

.nav .search-icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.nav .search-box {
  position: absolute;
  right: 250px;
  height: 45px;
  max-width: 555px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}

.nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}

.search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  color: #4a98f7;
  transform: translateY(-50%);
}
.search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #fff;
  padding: 0 15px 0 45px;
}
.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}
/* responsive */
@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 80px;
  }

  .nav .search-box {
    right: 150px;
  }

  .nav .logo {
    margin-right: 10px;
  }

  .adrs {
    width: 50%;
  }
  .buttons{
    top: 81px;
  }
}


@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }

  .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
  .buttons{
    top: 81px;
  }
}

@media screen and (max-width: 768px) {

  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
  }

  .nav {
    padding: 2px 6px;
  }

  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #11101d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 10000;
  }

  .nav.openNav .nav-links {
    left: 0;
  }

  .nav .navOpenBtn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }

  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }

  .nav .search-box {
    top: calc(100% + 10px);
    max-width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .buttons{
    top: 54px;
  }
}

#logoimg {
  width: 50px;
  border: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

.adrs {
  width: 100%;
  background-color: #2c3e50;
  border-radius: 20px;
  padding: 9px;
  position: relative;
  z-index: -1;
}

.limg {
  height: 35px;
  margin-top: 5px;
  border-radius: 50%;
}

.adrs-title {

  font-size: 1rem;
  width: 100%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 20px;

}

.adrs-title p {
  margin-top: 5px;

}

.adrs-title i {
  margin-right: 15px;
}

.adrs-logo {
  display: flex;
  width: 280px;
  position: absolute;
  left: 50%;
  margin-left: -140px;


}

.ctitle {
  margin-left: 10px;
  padding-top: 12px;
}


/* loder css */
#page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  z-index: 99;
  padding-top: 50%;
  background-color: #ffc7f3;

}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#h3 {
  color: rgb(82, 79, 79);
}

#ring {
  width: 190px;
  height: 190px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
}

#ring:nth-child(1) {
  border-bottom: 8px solid rgb(240, 42, 230);
  animation: rotate1 2s linear infinite;
}

@keyframes rotate1 {
  from {
    transform: rotateX(50deg) rotateZ(110deg);
  }

  to {
    transform: rotateX(50deg) rotateZ(470deg);
  }
}

#ring:nth-child(2) {
  border-bottom: 8px solid rgb(240, 19, 67);
  animation: rotate2 2s linear infinite;
}

@keyframes rotate2 {
  from {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
  }

  to {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
  }
}

#ring:nth-child(3) {
  border-bottom: 8px solid rgb(3, 170, 170);
  animation: rotate3 2s linear infinite;
}

@keyframes rotate3 {
  from {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
  }

  to {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
  }
}

#ring:nth-child(4) {
  border-bottom: 8px solid rgb(207, 135, 1);
  animation: rotate4 2s linear infinite;
}

@keyframes rotate4 {
  from {
    transform: rotateX(70deg) rotateZ(270deg);
  }

  to {
    transform: rotateX(70deg) rotateZ(630deg);
  }
}

/* Improving visualization in light mode */


.foot{
  width: 100%;
  height: 50px;
  font-size:12px;
  background-color: rgb(255, 220, 220);
  color: black;
  text-align:center;
  justify-content: center;
align-items: center;
  margin-top:10px;
  padding-top:3px;
  display: flex;
}
.copy{
  margin-left: auto;
  margin-right: auto;
}
#whatsapp, #face{
  font-size: 40px;


}
#whatsapp,#face{
  margin: auto;
}
#whatsapp{
color:#25D366;
}
#face{
color:#1877f2;
}

body {
  -webkit-user-select: none;  /* Safari */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* Internet Explorer/Edge */
  user-select: none;          /* Standard syntax */
}
/* Global level pe sabhi elements ke liye */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Specific elements ke liye */
div, button, a {
  -webkit-tap-highlight-color: transparent;
}
