/* General */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background-color: pink;
  color: #ff4d8d;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  background: pink;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  padding: 0px 20px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .logo {
  display: flex;
  align-items: center; /* vertically center image and text */
  gap: 10px; /* space between image and text */
  font-size: 24px;
  font-weight: bold;
  color: #ff4d8d; /* your pink */
  cursor: pointer;
}

.navbar .logo img.logo-img {
  width: 40px; /* adjust size */
  height: 40px; /* adjust size */
  border-radius: 50%; /* make circle if PNG isn't already */
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  padding-left: 10px;
}

.navbar nav ul li a {
  display: block;
  padding: 6px 14px;
  border-radius: 20px;
  border: 2px solid #ff4d8d;
  color: #ff4d8d;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.navbar nav ul li a:hover {
  background: #ff4d8d;
  color: white;
}

/* Active button */
.navbar nav ul li a.active {
  background: #ff4d8d;
  color: white;
}
  


.hero {
display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 150px 20px 50px;
  min-height: 50vh;
  background-image: url('back1.JPG'); /* custom background image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-left h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero-left button {
  background: pink;
  color: white;
  border: none;
  padding: 15px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-left button:hover {
  opacity: 0.8;
}

.hero-right img {
  width: 200px;
  margin-left: 20px;
  border-radius: 15px;
}

/* Features Section */
.features {
  background-color: pink; /* colored background */
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 15px 15px;
}

.features .feature img {
  width: 20px;
}

.features .feature h3 {
  margin: 1px 0;
  font-size: 13px;
}

.features .feature p {
  font-size: 10px;
}

/* Categories Section */
.categories {
  text-align: center;
  padding: 80px 20px;
  min-height: 100vh;
  background-image: url('back2.JPG');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.category-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.card {
  position: relative;
  width: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  display: block;
}

.card button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.8);
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

/* Contact Section */
.contact {
  background-color: pink; /* colored background */
  text-align: center;
  padding: 5px 10px;
}

.contact a {
  color: pink;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Category Product Pages */

 .category-page {
  display: flex;
  background-color: white;
  flex-direction: column;
  align-items: center;
  padding: 150px 20px 50px;
  text-align: center;
  min-height: 100vh;
  background-image: url('https://cdn.discordapp.com/attachments/1437821593056313537/1487597814006550568/IMG_4772.jpg');
  background-size: cover;
  background-position: center top;
}


}

.category-page h1 {
  color: pink;
  font-size: 50px;
  margin-bottom: 50px;
}

/* How To Buy Section */
.buy-feature {
  background-color: pink; /* same style as feature section */
  color: #ff4d8d;
  text-align: center;
  padding: 30px 20px;
  margin: 30px 0;
  border-radius: 15px;
}

/* Product Grid Centering */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Product Card */
.product-card {
  width: 200px;
  flex: 0 0 auto;
  border-radius: 15px;
  overflow: hidden;
  background-color: pink;
  color: white;
  text-align: center;
  padding: 10px;
  margin: 0 auto;

  /* New shadow */
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

/* Hover effect */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Product Image */
.product-card img {
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  transition: 0.3s;
}

/* Image zoom on hover */
.product-card:hover img {
  transform: scale(1.05);
}

/* Price */
.product-card .price {
  display: block;
  margin-top: 5px;
  font-weight: 600;
  color: #ff4d8d;
}

.order-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background: white;
  color: #ff4d8d;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.order-btn:hover {
  background: white;
  color: #ff4d8d;
}

@media screen and (max-width: 900px){
  .hero { 
    flex-direction: column; 
    text-align: center; 
  }
  .hero-right { 
    display: none; /* remove images on mobile */ 
  }
  .features { 
    flex-direction: column; 
    gap: 30px; 
  }
  .category-cards { 
    flex-direction: column; 
    gap: 20px; 
    align-items: center; 
  }
  .product-grid { 
    flex-direction: column; 
    gap: 20px; 
    align-items: center; /* fixed typo: align-items not align-item */ 
  }

  /* Fixed navbar menu */
  .navbar nav ul { 
    justify-content: flex-start; 
    padding-left: 0px; /* reduce padding so Contact shows */
    gap: 10px; /* optional spacing between options */
    overflow-x: auto;
    /* in case screen is too narrow */
  }

  .wrapper {
    padding: 20px 0;
  }
}

  .wrapper .icon {
    width: 50px;
    height: 50px;
  }

  .social-img {
    width: 24px;
    height: 24px;
  }

 .whatsapp-btn {
    bottom: 15px;
    right: 15px;

   
/* move navbar options slightly left */
}


/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  text-decoration: none; /* remove underline from link */
}

/* Keep original button style */
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 25px;
}

.sign svg path {
  fill: white;
}

.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.Btn:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.Btn:active {
  transform: translate(2px, 2px);
}

/* Shop Now Button Style - Uiverse 3D Shadow */
.shop-btn {
  --hover-shadows: 16px 16px 33px #121212, -16px -16px 33px #303030;
  --accent: fuchsia;
  font-weight: bold;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 1.1em;
  background-color: pink;
  cursor: pointer;
  color: #ff4d8d;
  padding: 1em 2em;
  transition: box-shadow ease-in-out 0.3s, background-color ease-in-out 0.1s,
    letter-spacing ease-in-out 0.1s, transform ease-in-out 0.1s;
  box-shadow: 13px 13px 10px #1c1c1c, -13px -13px 10px #262626;
}

.shop-btn:hover {
  box-shadow: var(--hover-shadows);
}

.shop-btn:active {
  box-shadow: var(--hover-shadows), var(--accent) 0px 0px 30px 5px;
  background-color: var(--accent);
  transform: scale(0.95);
}

/* Social Icons */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 30px 0;
  margin: 0;
}

.wrapper .icon {
  position: relative;
  background: #ff4d8d;
  border-radius: 50%;
  margin: 10px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

/* Make whole circle clickable */
.wrapper .icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

/* Custom icon image */
.social-img {
  width: 26px;
  height: 26px;
}

/* Tooltip */
.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 13px;
  background: #ff4d8d;
  color: pink;
  padding: 5px 8px;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

/* Tooltip arrow */
.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #000;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

/* Show tooltip on hover */
.wrapper .icon:hover .tooltip {
  top: -40px;
  opacity: 1;
}

/* Hover Effects Colors */
.wrapper .whatsapp:hover {
  background: #25D366;
}

.wrapper .tiktok:hover {
  background: #000000;
}

.wrapper .instagram:hover {
  background: #E4405F;
}

/* Make icon white on hover */
.wrapper .icon:hover .social-img {
  filter: brightness(0) invert(1);
}


/* Footer */
.footer {
  color: #ff4d8d;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}

.footer p {
  margin: 5px 0;
  font-size: 14px;
}

.footer .made-by {
  color: #ff4d8d;
  font-size: 12px;
  opacity: 0.8;
}


  
    /* ========================
   Floating Language Button
======================== */

/* Container */
.lang-float {
  position: fixed;
  bottom: 17px;
  left: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

/* Main circle flag */
.lang-main img {
  width: 45px;
  height: 45px;
  bottom: 17px;
  left: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}

/* Flags dropdown */
.lang-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.3s;
}

.lang-options img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 8px;
  cursor: pointer;
}

/* Show dropdown */
.lang-options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Jump animation */
@keyframes jump {
  0% { transform: translateY(0); }
  30% { transform: translateY(-15px); }
  60% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

.jump {
  animation: jump 0.5s ease;
}

/* Circle wave animation */
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0,0,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

.wave {
  border-radius: 50%;
  animation: wave 0.6s ease;
}


/* ========================
   Desktop / Laptop Fixes
======================== */
/* Hide warning by default */
.desktop-warning {
  display: none;
  text-align: center;
  padding: 50px;
  font-size: 30px;
  color: pink;
  background: black;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hide site content on desktop */
@media screen and (min-width: 901px) {
  .site-content {
    display: none;
  }

  .desktop-warning {
    display: flex;
  }
}

/* Show site content and hide warning on mobile */
@media screen and (max-width: 900px) {
  .site-content {
    display: block;
  }

  .desktop-warning {
    display: none;
  }
}




/* Slider */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  padding: 40px 0;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center;
  height: 100%;
}

/* Product cards */
.slider .product-card {
  min-width: 220px;
  margin: 0 15px;
  transform: scale(0.85);
  opacity: 0.7;
  transition: 0.5s;
}

/* Active (center) product */
.slider .product-card.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

/* Arrows */
.slider-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: pink;
  color: white;
  border: none;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.left { left: 0px; }
.slider-btn.right { right: 0px; }



/* ========================
   Desktop Warning Screen
======================== */

.desktop-warning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Show warning on desktop */
@media screen and (min-width: 901px) {
  .site-content {
    display: none;
  }

  .desktop-warning {
    display: flex;
  }
}

/* Show site on mobile */
@media screen and (max-width: 900px) {
  .site-content {
    display: block;
  }

  .desktop-warning {
    display: none;
  }
}

/* ========================
   Error Box Style
======================== */

.error {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  align-items: center;
  background: #ff4d8d; /* your pink color */
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
  animation: popup 0.4s ease;
}

/* Icon */
.error__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.error__icon path {
  fill: #fff;
}

/* Text */
.error__title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

/* Close button */
.error__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.error__close path {
  fill: #fff;
}

/* Popup animation */
@keyframes popup {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
