* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  text-decoration: none;
}

#home {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-color: #080808;
  --second-bg-color: #131313;
  --text-color: rgb(255, 255, 255);
  --main-color: #22e03b;

  --gradient-colors: linear-gradient(
    -45deg,
    #000000,
    #111111,
    #222222,
    #2e2e2e
  );
  --gradient-size: 400% 400%;
  --gradient-animation: gradientBG 12s ease infinite;
}

/* Keyframes for animated gradient */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Para sa pop up window sa mga minors 18+ or 18 below */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Popup box */

.popup-box {
  background: #000;
  color: #fff;
  border: 2px solid #22e03b;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  text-align: center;
  font-family: "Lato", sans-serif;
  box-shadow: 0 0 20px #22e03b;
}

/* Title */

.popup-box h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #22e03b;
  text-shadow: 0 0 10px #22e03b;
}

/* Buttons */

.popup-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}

.popup-buttons button {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  transition: 0.2s;
}

/* Over 18 button */

#btn-older {
  background: #22e03b;
  color: #000;
}
#btn-older:hover {
  background: #1ac030;
  box-shadow: 0 0 12px #22e03b;
}

/* Under 18 button */

#btn-under {
  background: #333;
  color: #fff;
}
#btn-under:hover {
  background: red;
  box-shadow: 0 0 12px red;
}

/* Navbar */

#logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-color);
  transition: transform 0.3s ease-in-out;
  text-shadow: 0 0 15px var(--main-color);
}

#logo:hover {
  transform: scale(1.05);
}

#logo img {
  height: 55px;
  width: 55px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 10px var(--main-color);
}

#logo span {
  font-family: "Oxygen", sans-serif;
  font-size: 2rem;
  color: var(--main-color);
  font-weight: 700;
}

.logo_contain {
  margin-right: auto;
  display: flex;
  margin-right: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  padding: 0.7rem 5% 0.8rem;
  background: rgba(0, 0, 0, 0.836);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  z-index: 999;
}

.navbar_container {
  display: flex;
  margin-top: 8px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-height: 55px;
}

.navbar_menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: auto;
}

/* Navbar links small */

.navbar_btn .navbar_links {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-bottom: 2px solid transparent;
}

.navbar_btn .navbar_links:hover {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
}

/* search bar */

.input-box {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0;
  margin-bottom: 10px;
  margin-left: 25px;
  background-color: #000000;
  border-radius: 25px;
  display: flex;
  align-items: center;
  transition: width 0.4s ease-in-out;
  overflow: hidden;
}

.input-box:hover,
.input-box:focus-within {
  width: 350px;
}

.input-box input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 20px 0 50px;
  font-size: 16px;
  color: #333;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-box:hover input,
.input-box:focus-within input {
  opacity: 1;
}

.input-box .search {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-box .search-icon {
  font-size: 20px;
  margin-left: 5px;
}

.input-box .close-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #000;
  cursor: pointer;
  display: none;
}

.input-box input:not(:placeholder-shown) ~ .close-icon {
  display: block;
}

.navbar_btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar_shop {
  border-radius: 100px;
  border: solid transparent;
  padding: 10px;
  transition: 0.3s ease;
}

.navbar_shop:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.button {
  display: inline-block;
  padding: 0.5rem 1.8rem;
  background: var(--main-color);
  box-shadow: 0 0 25px var(--main-color);
  border-radius: 4rem;
  font-size: 1rem;
  color: black;
  font-weight: 500;
  border: 2px solid transparent;
  transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--main-color);
}

/* Hamburger */

.navbar_toggle {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

/* Responsive media query navbar with hamburger toggle */

/* For tablets and phones */
@media (max-width: 768px) {
  .navbar_container {
    flex-wrap: wrap;
  }

  /* Hide the menu by default */
  .navbar_menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    display: none;
    transition: all 0.3s ease;
    z-index: 998;
  }

  /* Show when active */
  .navbar_menu.active {
    display: flex;
  }

  /* Show the hamburger button */
  .navbar_toggle {
    display: block;
    cursor: pointer;
    z-index: 999;
  }

  /* Hamburger lines */
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--main-color);
    transition: all 0.3s ease-in-out;
  }

  /* Animate to X when active */
  .navbar_toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar_toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar_toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* BG */

body {
  background-color: var(--second-bg-color);
}

/*  Contact us button */

#help-button {
  position: fixed;
  left: 0;
  top: 25%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: #22e03b;
  color: black;
  padding: 10px 5px;
  border-radius: 0 10px 10px 0;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(34, 224, 59, 0.5);
}

#help-button:hover {
  background-color: #1ac42e;
  box-shadow: 0 0 20px rgba(34, 224, 59, 0.9);
  transform: translateY(-50%) scale(1.05);
}

/* Responsive media query contact us button */

/* 🧭 Tablets */
@media (max-width: 992px) {
  #help-button {
    left: 0;
    top: 35%;
    padding: 8px 4px;
    font-size: 13px;
    border-radius: 0 8px 8px 0;
  }
}

/* 📱 Phones */
@media (max-width: 600px) {
  #help-button {
    left: 0;
    top: 40%;
    padding: 7px 3px;
    font-size: 12px;
    border-radius: 0 6px 6px 0;
  }
}

/* 📱 Small Phones (≤ 400px) */
@media (max-width: 400px) {
  #help-button {
    top: 42%;
    padding: 6px 3px;
    font-size: 11.5px;
  }
}

/*  Featured/carousel */

.featured-section {
  /* margin-top: 80px ;    */
  width: 100%;
  padding: 90px 0 0;
  background: var(--bg-color);
  text-align: center;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  /* border-radius: 20px; */
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  height: 91vh;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: fill;
  /* border-radius: 20px; */
  display: block;
}

/* Wala hover lang sa carousel */
/* .carousel-slide:hover img {
  transform: scale(1.1);
} */

.carousel-dots {
  position: absolute;
  bottom: 20px; /* position above the bottom of the image */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2; /* keep dots in front of the image */
}

.carousel-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--main-color);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots button.active {
  background-color: var(--main-color);
}

/* Responsive media query featured/carousel */

/* 💻 Large Laptops & Small Desktops */
@media (max-width: 1200px) {
  .carousel-slide {
    height: 80vh;
  }
}

/* 🧭 Tablets */
@media (max-width: 992px) {
  .carousel-slide {
    height: 70vh;
  }
}

/* 📱 Large Phones */
@media (max-width: 768px) {
  .carousel-slide {
    height: 55vh;
  }
}

/* 📱 Small Phones */
@media (max-width: 480px) {
  .featured-section {
    padding-top: 87px;
  }
  .carousel-slide {
    height: 45vh;
  }
}

/* 📱 Extra Small Phones */
@media (max-width: 360px) {
  .carousel-slide {
    height: 40vh;
  }
}


/* Warning Section */

.warning-section {
  background: #000;              /* black background */
  color: #fff;                   /* white text */
  text-align: center;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  height: 10vh;
}

.warning-section strong {
  color: #ffcc00;                /* yellow highlight for WARNING */
}

.warning-section p {
  margin: 20px 20px;  /* Top Bottom */
}

/* Responsive media query warning section */
/* 📱 Phones (portrait up to 480px) */
@media (max-width: 480px) {
  .warning-section {
    font-size: 12px;
    padding: 8px 0;
    height: auto;
  }

  .warning-section p {
    margin: 10px;
  }
}

/* 📱 Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .warning-section {
    font-size: 15px;
    padding: 10px 0;
    height: auto;
  }

  .warning-section p {
    margin: 12px;
  }
}

/* 💻 Small Laptops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .warning-section {
    font-size: 16px;
    height: 8vh;
  }
}

/* Products we offer */

/* New carousel wrapper for All Items/Products we offer */
.product-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.products {
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 40px;
  overflow-x: auto; /* horizontal scrolling */
  scroll-behavior: smooth; /* Smooth scroll effect */
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */

.products::-webkit-scrollbar {
  display: none;
}

.prod {
  flex: 0 0 auto; /* Prevent flex items from shrinking */
  position: relative;
  width: 350px;
  height: auto; /* Changed to auto to accommodate content */
  box-shadow: 0 5px 500px rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px 40px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 5px;
  min-height: 300px;
}

/* .prod:hover {
  transform: translateY(-15px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
} */

.image {
  width: 100%;
  height: 60px;
  display: grid;
  place-items: center;
}

.image img {
  width: 100%;
  max-width: 240px;
  max-height: 2200px;
  object-fit: contain;
  display: block;
}

.price {
  margin-top: 65px;
  width: 100%;
  justify-content: space-between;
  text-align: center;
  color: #fff;
}

.price h3 {
  margin-top: 115px;
  font-size: 2em;
  text-transform: capitalize;
}

.product p {
  margin-top: 15px;
  margin-bottom: 5px;
}

.prod p {
  text-align: center;
  color: #ffffff;
}

.buy {
  position: static;
  margin-top: auto;
  align-self: flex-end;
}

.buy button {
  padding: 10px 20px;
  border-radius: 7px;
  border: none;
  background-color: var(--main-color);
  color: beige;
  font-size: 18px;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.5s;
}

.buy button:hover {
  transform: scale(1.1);
}

.product-section {
  padding: 80px 5vw;
  background-color: var(--second-bg-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.section-title {
  font-size: 2rem;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 15px var(--main-color);
  flex: 1;
}

.product-section .products {
  display: flex;
  flex-wrap: nowrap; /* Important for carousel */
  justify-content: flex-start;
  gap: 40px;
}

/* See-all */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.see-all-link {
  font-size: 1.1rem;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.see-all-link:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--main-color);
  transform: translateX(5px);
}

/* 📱 Phones (max-width: 480px) */
@media (max-width: 480px) {
  .product-section {
    padding: 40px 4vw;
  }

  .section-title {
    font-size: 1.5rem;
    text-shadow: 0 0 8px var(--main-color);
  }

  .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .see-all-link {
    font-size: 0.9rem;
  }

  .products,
  .scroller__inner {
    gap: 15px;
  }

  .prod {
    width: 220px;
    padding: 15px;
    min-height: 250px;
  }

  .image img {
    max-width: 150px;
  }

  .price h3 {
    font-size: 1.3rem;
    margin-top: 60px;
  }

  .prod p {
    font-size: 0.85rem;
  }
}

/* 💊 Tablets (min-width: 481px and max-width: 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .product-section {
    padding: 60px 5vw;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    flex-direction: row;
    justify-content: space-between;
  }

  .prod {
    width: 260px;
    padding: 18px;
  }

  .image img {
    max-width: 180px;
  }

  .price h3 {
    font-size: 1.5rem;
    margin-top: 80px;
  }

  .prod p {
    font-size: 0.9rem;
  }
}

/* 💻 Laptops (min-width: 769px and max-width: 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
  .product-section {
    padding: 70px 6vw;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .prod {
    width: 300px;
    padding: 20px;
  }

  .image img {
    max-width: 200px;
  }

  .price h3 {
    font-size: 1.7rem;
  }

  .prod p {
    font-size: 1rem;
  }
}

/* Infinite auto scroll */

@keyframes scroll-left {
  to {
    transform: translateX(-100%); /* move left half the total width */
  }
}

.scroller {
  max-width: 100%;
  overflow: hidden;
  position: relative;

  /* Fade effect on edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-repeat: repeat;
  mask-size: 100% 100%;
}

.scroller__inner {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 90s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Optional: pause on hover */
/* #all-products:hover {
  animation-play-state: paused;
} */



/* New Product showcase css */

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--second-bg-color);
}

.container .section-title {
  font-size: 3.5rem;
  color: var(--main-color);
  margin-top: 5%;
  text-shadow: 0 0 15px var(--main-color);
}

.wgh-slider {
  position: relative;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
}
.wgh-slider__viewport {
  position: relative;
  height: 100%;
  width: 100%;
}
.wgh-slider__viewbox {
  display: block;
  position: relative;
  perspective: 100vw;
  margin: 0 auto;
  width: 33.3333333333%;
  max-width: 500px;
  transform-style: preserve-3d;
  z-index: 0;
}
.wgh-slider__viewbox::before {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  content: "";
  height: 0;
  padding-bottom: 100%;
  width: 100%;
}
.wgh-slider__container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: transform 0.3s cubic-bezier(0.62, 0.28, 0.23, 0.99) 0.3s;
  transform-style: preserve-3d;
}
.wgh-slider-target {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
input.wgh-slider-target {
  display: none;
}

.wgh-slider-target:first-of-type:last-of-type
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1)
  .wgh-slider-item__trigger {
  display: none;
}
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider__container {
  transform: translateX(0%);
}
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider__container {
  transform: translateX(-50%);
}
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider__container {
  transform: translateX(-100%);
}
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider__container {
  transform: translateX(-150%);
}
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider__container {
  transform: translateX(-200%);
}
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider__container {
  transform: translateX(-250%);
}
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider__container {
  transform: translateX(-300%);
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider__container {
  transform: translateX(-350%);
}
.wgh-slider-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(45deg);
  transition: transform 0.6s cubic-bezier(0.62, 0.28, 0.23, 0.99) 0.15s;
}
.wgh-slider-item:nth-child(1) {
  left: 0%;
}
.wgh-slider-item:nth-child(2) {
  left: 50%;
}
.wgh-slider-item:nth-child(3) {
  left: 100%;
}
.wgh-slider-item:nth-child(4) {
  left: 150%;
}
.wgh-slider-item:nth-child(5) {
  left: 200%;
}
.wgh-slider-item:nth-child(6) {
  left: 250%;
}
.wgh-slider-item:nth-child(7) {
  left: 300%;
}
.wgh-slider-item:nth-child(8) {
  left: 350%;
}
.wgh-slider-item__trigger {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  cursor: pointer;
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(8)
  .wgh-slider-item__trigger,
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(7)
  .wgh-slider-item__trigger,
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(6)
  .wgh-slider-item__trigger,
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(5)
  .wgh-slider-item__trigger,
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(4)
  .wgh-slider-item__trigger,
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(3)
  .wgh-slider-item__trigger,
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(2)
  .wgh-slider-item__trigger,
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1)
  .wgh-slider-item__trigger {
  display: none;
}
.wgh-slider-item__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transform: scale(0.75);
  transition: transform 0.3s cubic-bezier(0.62, 0.28, 0.23, 0.99) 0s;
  z-index: 10;
}
.wgh-slider-item__inner::before,
.wgh-slider-item__inner::after {
  display: block;
  position: absolute;
  content: "";
}
.wgh-slider-item__inner::before {
  top: 24px;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 0;
  transition: transform 0.3s cubic-bezier(0.62, 0.28, 0.23, 0.99) 0.15s;
  transform: translate(-24px, 12px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.wgh-slider-item__inner::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #000 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background-repeat: repeat-x;
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.3s linear;
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(8)
  .wgh-slider-item__inner,
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(7)
  .wgh-slider-item__inner,
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(6)
  .wgh-slider-item__inner,
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(5)
  .wgh-slider-item__inner,
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(4)
  .wgh-slider-item__inner,
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(3)
  .wgh-slider-item__inner,
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(2)
  .wgh-slider-item__inner,
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1)
  .wgh-slider-item__inner {
  transform: scale(1);
  transition-delay: 0.6s;
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(8)
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(7)
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(6)
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(5)
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(4)
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(3)
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(2)
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1)
  .wgh-slider-item__inner::before {
  transform: translate(0, 24px);
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(8)
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(7)
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(6)
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(5)
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(4)
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(3)
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(2)
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1)
  .wgh-slider-item__inner::after {
  background-position: -50% 0%;
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(8)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(7)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(6)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(5)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(4)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(3)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(2)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::before,
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::before {
  transform: translate(24px, 12px);
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(8)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(7)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(6)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(5)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(4)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(3)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(2)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::after,
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1)
  ~ .wgh-slider-item
  .wgh-slider-item__inner::after {
  background-position: -100% 0%;
}
.wgh-slider-item-figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.wgh-slider-item-figure__image {
  position: absolute;
  display: block;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 1;
}
.wgh-slider-item-figure__caption {
  position: absolute;
  display: block;
  overflow: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 24px;
  background-image: linear-gradient(0deg, #000 0%, transparent 100%);
  z-index: 2;
}
.wgh-slider-item-figure__caption a {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
}
.wgh-slider-item-figure__caption span {
  display: block;
  font-size: 14px;
  line-height: 16px;
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(8),
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(7),
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(6),
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(5),
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(4),
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(3),
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(2),
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1) {
  transform: translate3d(0, 0, 0) rotateY(0deg);
  z-index: 9999;
}
.wgh-slider-target:nth-of-type(8):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(8)
  ~ .wgh-slider-item,
.wgh-slider-target:nth-of-type(7):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(7)
  ~ .wgh-slider-item,
.wgh-slider-target:nth-of-type(6):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(6)
  ~ .wgh-slider-item,
.wgh-slider-target:nth-of-type(5):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(5)
  ~ .wgh-slider-item,
.wgh-slider-target:nth-of-type(4):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(4)
  ~ .wgh-slider-item,
.wgh-slider-target:nth-of-type(3):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(3)
  ~ .wgh-slider-item,
.wgh-slider-target:nth-of-type(2):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(2)
  ~ .wgh-slider-item,
.wgh-slider-target:nth-of-type(1):checked
  ~ .wgh-slider__viewport
  .wgh-slider-item:nth-child(1)
  ~ .wgh-slider-item {
  transform: translate3d(0, 0, 0) rotateY(-45deg) !important;
}

/* product showcase scroll animation */

/* Initial hidden state */
.product-showcase {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When section is visible */
.product-showcase.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive media query product showcase */

/* 💻 Laptops and small desktops */
@media (max-width: 1280px) {
  .container {
    height: auto;
    padding: 80px 5% 100px;
  }

  .container .section-title {
    font-size: 3rem;
  }

  .wgh-slider {
    position: relative;
    top: 0;
    transform: none;
  }

  .wgh-slider__viewbox {
    width: 45%;
    max-width: 480px;
  }
}

/* 📱 Tablets */
@media (max-width: 992px) {
  .container {
    height: auto;
    padding: 70px 5% 90px;
  }

  .container .section-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .wgh-slider {
    position: relative;
    top: 0;
    transform: none;
  }

  .wgh-slider__viewbox {
    width: 70%;
    max-width: 420px;
    perspective: 150vw;
  }

  .wgh-slider-item-figure {
    aspect-ratio: 1 / 1;
  }

  .wgh-slider-item-figure__caption {
    padding: 16px;
  }

  .wgh-slider-item-figure__caption a {
    font-size: 1rem;
  }

  .wgh-slider-item-figure__caption span {
    font-size: 0.85rem;
  }
}

/* 📞 Phones */
@media (max-width: 600px) {
  .container {
    height: auto;
  }

  .container .section-title {
    font-size: 2rem;
    margin-bottom: 4.2rem;
  }

  .wgh-slider {
    position: relative;
    top: 0;
    transform: none;
  }

  .wgh-slider__viewbox {
    width: 90%;
    max-width: 320px;
    perspective: 180vw;
  }

  .wgh-slider-item-figure {
    aspect-ratio: 1 / 1;
  }

  .wgh-slider-item__inner::before {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .wgh-slider-item-figure__caption {
    padding: 14px;
  }

  .wgh-slider-item-figure__caption a {
    font-size: 0.95rem;
  }

  .wgh-slider-item-figure__caption span {
    font-size: 0.8rem;
  }
}

/* 📱 Small Phones (≤ 400px) */
@media (max-width: 400px) {
  .container {
    padding: 50px 4% 90px;
  }

  .container .section-title {
    font-size: 1.7rem;
  }

  .wgh-slider__viewbox {
    width: 100%;
    max-width: 280px;
  }

  .wgh-slider-item-figure {
    aspect-ratio: 1 / 1;
  }

  .wgh-slider-item-figure__caption a {
    font-size: 0.9rem;
  }

  .wgh-slider-item-figure__caption span {
    font-size: 0.75rem;
  }
}

/* Why Choose Us Section */

.why-choose-us {
  background: var(--second-bg-color);
  color: #fff;
  padding: 80px 8vw;
  text-align: center;
  height: 650px;
}

.why-choose-us .section-title {
  font-size: 32px;
  margin-bottom: 50px;
  color: var(--main-color);
  text-shadow: 0 0 8px var(--main-color);
}

.choose-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.choose-card {
  background: #1a1a1a;
  flex: 1 1 300px;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
  background: #222;
}

.choose-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.choose-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
}

.choose-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.choose-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #22e03b;
  color: #000000;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.choose-card .btn:hover {
  background: #22e03b;
  box-shadow: 0 0 8px var(--main-color);
  transform: translateY(-10%) scale(1.1);
}

/* Responsive media query why choose us section */

/* 💻 Laptops and small desktops */
@media (max-width: 1200px) {
  .why-choose-us {
    height: auto; /* Allow natural height */
    padding: 80px 6vw;
  }

  .choose-container {
    gap: 25px;
  }

  .choose-card {
    flex: 1 1 280px;
  }
}

/* 📱 Tablets */
@media (max-width: 992px) {
  .why-choose-us {
    height: auto;
    padding: 70px 5vw;
  }

  .why-choose-us .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .choose-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .choose-card {
    width: 90%;
    max-width: 420px;
    padding: 25px 18px;
  }

  .choose-card h3 {
    font-size: 20px;
  }

  .choose-card p {
    font-size: 14px;
  }

  .choose-card .icon {
    font-size: 35px;
  }

  .choose-card .btn {
    font-size: 0.95rem;
    padding: 8px 18px;
  }
}

/* 📞 Phones */
@media (max-width: 600px) {
  .why-choose-us {
    height: auto;
    padding: 60px 5vw;
  }

  .why-choose-us .section-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .choose-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .choose-card {
    width: 100%;
    max-width: 360px;
    padding: 22px 16px;
  }

  .choose-card h3 {
    font-size: 18px;
  }

  .choose-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .choose-card .icon {
    font-size: 32px;
  }

  .choose-card .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* 📱 Small Phones (≤ 400px) */
@media (max-width: 400px) {
  .why-choose-us {
    padding: 50px 4vw;
  }

  .why-choose-us .section-title {
    font-size: 22px;
  }

  .choose-card {
    padding: 20px 14px;
  }

  .choose-card h3 {
    font-size: 17px;
  }

  .choose-card p {
    font-size: 12.5px;
  }

  .choose-card .btn {
    font-size: 0.85rem;
    padding: 7px 14px;
  }
}


/* action popup */

.action-popup {
  position: fixed;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 99999;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
}
.action-popup[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.action-popup-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  background: #fff;
  min-width: 280px;
  max-width: 420px;
}

.action-popup-icon { 
  width: 36px; height: 36px; border-radius: 50%; flex: 0 0 36px;
  display:flex; align-items:center; justify-content:center; color: #fff; font-weight:700;
}


.action-popup-message { 
  color: #000000; 
  font-size: 14px; 
  line-height: 1.2; 
}

.action-popup-close {
  margin-left: auto;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

/* success / error themes */
.action-popup.success .action-popup-card { background: #f0fff4; }
.action-popup.success #action-popup-icon { background: #28a745; }
.action-popup.error .action-popup-card   { background: #fff5f6; }
.action-popup.error #action-popup-icon   { background: #dc3545; }



/* <<<<< Auth Modal / Sign In Modal >>>>> */

.auth-scrim{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1200;
}

.auth-modal{
  position: fixed; inset: 0;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  z-index: 1201;
  transition: opacity .25s ease;
}

.auth-modal.open,
.auth-scrim.open{ opacity: 1; pointer-events: auto; }

.auth-card{
  width: min(560px, 92vw);
  background: #0b0b0b;
  color: var(--text-color);
  border-radius: 20px;
  padding: 30px 26px 26px;
  box-shadow: 0 0 24px rgba(34,224,59,.35), 0 0 60px rgba(34,224,59,.25);
  border: 1px solid rgba(34,224,59,.25);
  transform: translateY(16px) scale(.98);
  animation: authIn .28s ease forwards;
  position: relative;
}

/* Two-up grid for first/last name (collapses on small screens) */
.auth-grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin: 0 22px;
}

/* Small helper text */
.auth-hint{
  display:block;
  color:#bdbdbd;
  margin-top:6px;
  font-size:12px;
}

/* Wrapper to hold input + icon */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px; /* Space for the eye icon */
}

.password-wrapper button {
  position: absolute;
  right: 10px;  /* Position the eye icon inside the input */
  background: none;
  border: none;
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
}

.password-wrapper button:hover {
  color: #fff;
}

/* Change eye icon when password is visible */
.password-wrapper input[type="text"] {
  color: #fff;
}

/* Tweak inputs inside grid to align with your labels spacing */
.auth-grid-2 .auth-input{ margin: 0; }

/* File input appearance already styled; add a nudge to match screenshot */
.auth-input-file{
  margin: 10px 22px 0 22px;   /* standard horizontal margin */
  transform: translateX(-8px);/* slight left shift “as shown” */
}

/* File name line */
.file-name{
  color:#ccc;
  display:block;
  margin-top:6px;
}

#login-error p {
  color: rgb(0, 0, 0);
  font-size: 14px;
  margin-top: 5px;
  font-weight: bold;
}



@keyframes authIn{ to{ transform: translateY(0) scale(1); } }

.auth-close{
  position: absolute; top: 10px; right: 16px;
  background: transparent; border: 0; color: #aaa; font-size: 22px; cursor: pointer;
}

.auth-close:hover{ color: #fff; }

.auth-view{ display: none; }
.auth-card[data-view="login"]   .auth-login{ display: block; }
.auth-card[data-view="register"] .auth-register{ display: block; }


.auth-view h2{
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: .5px;
  color: var(--text-color);
  text-shadow: 0 0 6px rgba(34,224,59,.25);
}

.auth-input{ 
  position: relative;
  display: block; 
  margin: 14px 22px; 
}


/* Inline login error under password field */

.auth-error{
  display:none;           
  color:#ff6b6b;          
  font-size:12.5px;
  margin:6px 22px 0 22px; 
  text-align:right;       
}

/* Facebook-like error under the password input */

.auth-input .auth-error{
  position: static;          
  display: none;             
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid #d93025; 
  background: #fde7e9;      
  color: #d93025;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.25;
  text-align: left;
}

/* ensure any earlier absolute rule loses — keep this after previous rules */

.auth-input > .auth-error { position: static; right: auto; bottom: auto; transform: none; margin: 8px 0 0 0; }


.auth-input span{
  display: block; font-size: 14px; color: #cfcfcf; margin-bottom: 6px;
}

.auth-input input,
.auth-input textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #3a3a3a;
  color: #fff;
  padding: 10px 4px 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
  font-size: 14px;
  resize: none;
}


.auth-input input[type="file"] {
  border: 1px solid #3a3a3a;
  padding: 8px;
  background-color: #121212;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}


.auth-input input:focus{
  border-bottom-color: var(--main-color);
  box-shadow: 0 6px 18px -12px var(--main-color);
}

.auth-input input,
.auth-input textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #3a3a3a;
  color: #fff;
  padding: 10px 4px 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
  font-size: 14px;
  resize: none;
}

.auth-input textarea:focus {
  border-bottom-color: var(--main-color);
  box-shadow: 0 6px 18px -12px var(--main-color);
}
/* Flex row so the link can sit on the right */
.auth-remember-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin:6px 22px 8px; /* top / sides / bottom – matches the reference image */
}

/* Remove extra margins inside the row (Para nakalined up sya sa left side) */
.auth-remember{ margin:0 !important; } 

.auth-remember{
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; margin: 6px 22px 8px;
  color: #d8d8d8;
}

/* Push the link to the right and keep style */
.auth-forgot{
  margin-left:auto;
  font-size:14px;
  color:var(--main-color);
  font-weight:700;
  text-decoration:none;
}
.auth-forgot:hover{ text-decoration:underline; }

.auth-remember input{ width: 16px; height: 16px; accent-color: #18c43a; }

.send-code-btn {
  background: rgba(34, 224, 59, 0.9);
  box-shadow: 0 0 25px var(--main-color);
  border-radius: 0.8rem;
  font-size: 12px;
  color: black;
  font-weight: 500;
  border: 2px solid transparent;
  padding: 4px 12px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.send-code-btn:hover:enabled {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--main-color);
}

.send-code-btn:disabled {
  background: #555;
  color: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

/* Log In */
.auth-primary{
  width: calc(100% - 44px);
  margin: 6px 22px 0;
  border: 0; border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  color: #000;
  background: var(--main-color);
  box-shadow: 0 0 22px rgba(34,224,59,.65);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.auth-primary:hover{ transform: translateY(-1px); box-shadow: 0 0 36px rgba(34,224,59,.9); }

.auth-switch{
  margin: 14px 0 4px; text-align: center; color: #cfcfcf;
}

.auth-switch a{ color: var(--main-color); font-weight: 700; }
.auth-switch a:hover{ text-decoration: underline; }



/* Small screen */
@media (max-width: 480px){
  .auth-card{ width: min(92vw, 560px); border-radius: 16px; padding: 20px 18px 18px; }
  .auth-grid-2{
    grid-template-columns: 1fr;
    margin: 0 12px;
    gap: 10px;
  }
  .auth-view h2{ font-size: 26px; margin-bottom: 24px; }
  .auth-input{ margin: 12px 12px; }
  .auth-primary{ width: calc(100% - 24px); margin: 6px 12px 0; }
}

/* Layout sa sign up modal */
/* 2-column grid like the sketch */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px; /* row x col gap */
}
.signup-grid .full { grid-column: 1 / -1; }
.email-password-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px; /* match signup-grid spacing */
  grid-column: 1 / -1; /* span full width of the grid */
}



/* inputs look like lines */
.auth-input input,
.auth-input textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0;
  color: #eaeaea;
  outline: none;
}
.auth-input span { display:block; margin-bottom:6px; color:#cfcfcf; font-size:0.95rem; }

/* password eye button */
.password-wrapper { position: relative; }
.password-wrapper input { padding-right: 44px; }
.password-wrapper button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: #bfbfbf; cursor: pointer;
}

/* file inputs long and full width */
.auth-input-file input[type="file"] {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px;
}
.file-name { display:block; margin-top:6px; opacity:0.7; font-size:0.85rem; }

/* full-width button */
.w-100 { width: 100%; margin-left: 2%;}

/* mobile: stack into single column */
@media (max-width: 640px) {
  .signup-grid { grid-template-columns: 1fr; }
}

/* center the modal, dim background */
.auth-modal-overlay{
  position: fixed; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,.55);
  padding: 16px; 
  z-index: 1000;
}

/* the card size: narrower and shorter */
.auth-card{
  width: clamp(560px, 62vw, 820px); 
  max-height: 86vh;
  border-radius: 18px;
  background: #0f1011;
  box-shadow: 0 12px 40px rgba(31, 167, 31, 0.5);
  overflow: hidden;
}

/* scroll only the inner content, not the whole page */
.auth-card__body{
  max-height: calc(86vh - 70px);
  overflow: auto;
  padding: 24px;
}

/* tighter layout like your sketch */
.signup-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 16px;
}
.signup-grid .full{ grid-column: 1 / -1; }

/* Dropdown Styling (Register Form) */

.auth-input select {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-border, #444);
  color: var(--color-text, #fff);
  font-size: 1rem;
  appearance: none;   /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

/* Hover + Focus state */
.auth-input select:hover,
.auth-input select:focus {
  border-color: var(--color-accent, #00ff88);
  color: var(--color-text-focus, #fff);
}

/* Option styling inside dropdown */
.auth-input select option {
  background: #111; /* dropdown background */
  color: #fff;      /* option text color */
  padding: 0.5rem;
}

.auth-input span{ margin-bottom: 4px; font-size: .92rem; }
.auth-input input, .auth-input textarea{ padding: 8px 0; }

/* full-width button */
.w-100{ width: 100%; }

/* mobile: stack to single column */
@media (max-width: 640px){
  .auth-card{ width: min(92vw, 560px); }
  .signup-grid{ grid-template-columns: 1fr; }
}

/* Only vertical scroll inside the modal body */
.auth-card__body{
  overflow-y: auto;
  overflow-x: hidden;
}

/* Prevent any child from forcing horizontal overflow */
.signup-grid{ min-width: 0; }
.signup-grid > *{ min-width: 0; }
.auth-input input,
.auth-input textarea,
.auth-input-file input[type="file"]{
  max-width: 100%;
  display: block;
}
.email-password-row .auth-input {
  margin: 0;
}

/* Make hint text smaller so it doesn’t push row height too much */
.email-password-row .auth-hint {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-top: 4px;
  opacity: 0.8;
}


.file-name{ overflow-wrap: anywhere; } /* long filenames wrap */

/* Make the Y-axis scrollbar green */
.auth-card__body{
  scrollbar-width: thin;                 /* Firefox */
  scrollbar-color: #22c55e transparent;  /* thumb / track */
}

/* Chrome/Edge/WebKit */
.auth-card__body::-webkit-scrollbar{
  width: 10px;
}
.auth-card__body::-webkit-scrollbar-track{
  background: transparent;
}
.auth-card__body::-webkit-scrollbar-thumb{
  background: linear-gradient(#22c55e,#16a34a);
  border-radius: 10px;
  border: 2px solid #0f1011; /* matches modal bg */
}
.auth-card__body::-webkit-scrollbar-corner{
  background: transparent;
}

/* New Arrivals Section */

.new-arrivals {
  padding: 100px 8vw;
  /* background: var(--second-bg-color); */
  text-align: center;
  min-height: 700px;
  position: relative; /* anchor for arrows */

  background: url("../Images/Vecteezy-blackgradientbg3.jpg") center/cover no-repeat fixed;
}

.new-arrivals__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.95));
}

.new-arrivals .section-title {
  font-size: 2.2rem;
  color: var(--main-color);
  margin-bottom: 40px;
  text-shadow: 0 0 15px var(--main-color);
}

/* Slider layout */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;

}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.arrival-card {
  background: #111;
  border-radius: 12px;
  margin: 20px 10px;   /* give vertical margin so shadow isn't cut */
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  flex: 0 0 calc(25% - 20px); /* 4 cards in viewport */

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Shared hidden state for arrivals title + cards */
.arrival-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.arrival-card.arrival-show {
  opacity: 1;
  transform: translateY(0);
}

/* Fade out when scrolling past */
.arrival-card.arrival-fadeout {
  opacity: 0;
  transform: translateY(-40px);
}

.arrival-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px var(--main-color);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.arrival-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.arrival-card h3 {
  color: var(--main-color);
  margin-bottom: 8px;
}

.arrival-card p {
  color: #ddd;
  font-size: 0.95rem;
}

/* ensure hidden state is applied to arrival cards/title */
.arrival-hidden,
.new-arrivals .arrival-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* visible state */
.arrival-card.arrival-show {
  opacity: 1;
  transform: translateY(0);
}

/* fadeout state */
.arrival-card.arrival-fadeout {
  opacity: 0;
  transform: translateY(-40px);
}

/* allow per-element delay (seconds) */
.arrival-card { --arrival-delay: 0s; transition-delay: var(--arrival-delay, 0s); }

/* optional nth-child stagger for grid: 0s, 0.12s, 0.24s, 0.36s ... */
.new-arrivals .arrival-card:nth-child(1) { --arrival-delay: 0.05s; }
.new-arrivals .arrival-card:nth-child(2) { --arrival-delay: 0.12s; }
.new-arrivals .arrival-card:nth-child(3) { --arrival-delay: 0.24s; }
.new-arrivals .arrival-card:nth-child(4) { --arrival-delay: 0.36s; }
/* extend more nth-child entries if you have more cards */

/* If you also use the earlier CSS class .arrival-hidden on other wrappers like headings, keep them */
.new-arrivals .section-title.arrival-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.05s;
}


/* Arrows fixed on both sides */

.prev, .next {
  background: var(--second-bg-color);
  border: none;
  padding: 14px;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px var(--second-bg-color);
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
  background-color: var(--main-color);
  box-shadow: 0 0 8px var(--main-color);
  transform: translateY(-10%) scale(1.1);
  color: #111111;
}

/* 📱 Mobile Devices (max-width: 640px) */
@media (max-width: 640px) {
  .new-arrivals {
    padding: 60px 4vw;
    min-height: auto;
  }

  .slider-track {
    gap: 10px;
  }

  .arrival-card {
    flex: 0 0 100%;          /* Show 1 card at a time */
    margin: 10px 5px;
    padding: 16px;
  }

  .arrival-card img {
    height: auto;
  }

  .prev, .next {
    top: 45%;
    padding: 10px;
    font-size: 16px;
  }

  .new-arrivals .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

/* 💻 Tablets (641px–1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
  .arrival-card {
    flex: 0 0 calc(50% - 20px); /* Show 2 cards in viewport */
    margin: 15px 10px;
    padding: 18px;
  }

  .new-arrivals .section-title {
    font-size: 2rem;
  }

  .prev, .next {
    top: 48%;
    padding: 12px;
    font-size: 18px;
  }
}

/* 🖥️ Desktop (1025px and up) */
@media (min-width: 1025px) {
  .arrival-card {
    flex: 0 0 calc(25% - 20px); /* Show 4 cards */
  }
}

/* Footer */

footer {
  width: 100%;
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 35px 0 30px;
  font-size: 13px;
  line-height: 20px;
}

ul li {
  list-style: none;
  margin-bottom: 12px;
}

ul li a {
  text-decoration: none;
  color: white;
}

.footer-content {
  transform: translateY(-20px);
}

.follow h3 {
  margin: 18px 0 10px;
  color: var(--text-color);
}

/* ---------- Footer layout (replace old footer rules) ---------- */
#site-footer {
  background: #000;
  color: #fff;
  padding: 40px 0 30px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.5;
}

/* main row wrapper: keep centered and use flex to place columns */
#site-footer .row {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start; /* ensure columns align from the top */
  justify-content: space-between;
  gap: 30px;
  box-sizing: border-box;
}

/* explicit column widths so columns sit like the screenshot */
#site-footer .col1 {
  /* newsletter + social — left */
  flex: 0 0 46%;
  min-width: 260px;
  padding: 8px 12px 0 0;
  text-align: left;
}
#site-footer .col2 {
  /* products — center */
  flex: 0 0 22%;
  min-width: 180px;
  padding: 8px 12px;
  text-align: left;
}
#site-footer .col3 {
  /* links — right */
  flex: 0 0 22%;
  min-width: 160px;
  padding: 8px 12px;
  text-align: left;
}

/* Social icon */
#site-footer .social .fab {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #22e03b;
  border: 2px solid #22e03b;
  transition: all 0.3s ease;
}

#site-footer .social .fab:hover {
  color: #fdfffe;
  background-color: var(--main-color);
  box-shadow: 0 0 8px var(--main-color);
  transform: translateY(-10%) scale(1.1);
}

/* Lists and headings (ensure h2 lines up with list items) */
#site-footer h2,
#site-footer h3 {
  margin: 0 0 12px 0;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.15;
}

/* Remove default list indentation so li items align flush under heading */
#site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#site-footer ul li {
  margin-bottom: 8px;
}
#site-footer ul li a {
  text-decoration: none;
  color: #a9a9a9;
}

/* subtle hover */
#site-footer ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* horizontal rule + copyright */
#site-footer hr {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin: 22px auto 12px;
  width: 92%;
}
#site-footer .copyright {
  width: 100%;
  text-align: center;
  color: #8f8f8f;
  font-size: 12px;
  margin-top: 8px;
}

/* Responsive media query footer */

/* Footer Small screen: stack columns and center */

@media (max-width: 880px) {
  #site-footer .row {
    flex-direction: column;
    align-items: center;
  }
  #site-footer .col1,
  #site-footer .col2,
  #site-footer .col3 {
    flex: 1 1 100%;
    min-width: 0;
    text-align: center;
    padding: 8px 0;
  }
  #site-footer ul {
    text-align: center;
  }
}

