html,
body {
  font-size: 15px;
  font-family: 'Poppins';
  overflow-x: hidden;
  margin: 0;
  zoom: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #e5ff00 #000000;
}

a {
  text-decoration-line: none;
  color: black;
}

#loading {
  background-color: black;
  align-items: center;
  justify-content: center;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  transform: translateX(-50%, -50%);
  z-index: 1000;
}

.load {
  height: 50px;
  background-color: white;
  animation: 2s UpDown infinite;
  border-radius: 80px 80px 0 0;
  margin: 0 7px;
  left: 35%
}

#loading .load:first-child {
  animation-delay: .15s;

}

#loading .load:nth-child(2) {
  animation-delay: .30s;
}

#loading .load:nth-child(3) {
  animation-delay: .50s;
}

#loading .load:last-child {
  animation-delay: .15s;
}

@keyframes UpDown {
  0% {
    width: 15px;
    background-color: red;
  }

  50% {
    width: 45px;
    background-color: #d33deb;
  }

  100% {
    width: 15px;
    background-color: #f00e43;
  }
}

#ack {
  display: block;
  color: white;
  z-index: 1000;
  position: relative;
  opacity: 0.3;
  text-align: center;
  margin-top: 150%;
}

#main {
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
}

.brand-name {
  font-size: 20px;
  font-weight: bold;
  background: radial-gradient(circle, thistle, black, rgb(176, 176, 119), blue);
  flex-shrink: 0;
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shift 5s ease infinite;
}

@keyframes shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

header {
  display: flex;
  justify-content: space-between;
  word-spacing: 40px;
  position: relative;
  top: 20px;
}

.dropdownmenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(40, 39, 39);
  color: white;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1000;
  overflow: hidden;
}

.dropdownmenu.show {
  display: block;
}

.menu {
  height: 3px;
  width: 30px;
  margin: 3px;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
  transition: transform 2s ease, opacity 0.3s ease;
}

.menus {
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.menus.active .menu:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  background-color: rgb(238, 255, 4);
}

.menus.active .menu:nth-child(2) {
  opacity: 0;
}

.menus.active .menu:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  background-color: rgb(238, 255, 4);
}

.droptxt {
  color: white;
}

.mail_link {
  color: blueviolet;
}

.dropdown a {
  color: white;
  font-weight: 900;
}

.droptext {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  height: 100px;
  text-align: center;
  color: white;
  font-weight: bold;
}

.fa-brands:hover,
.fab:hover,
.material-icons:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.fa-instagram:hover {
  background: linear-gradient(45deg, red, blue, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-twitter:hover {
  background-color: skyblue;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.material-icons:hover {
  background: linear-gradient(30deg, white, red, blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.droptxt {
  color: white;
}

#toggle {
  background: transparent;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 100%;
  margin-left: 10px;
}

#searchbutton {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

#searchbutton:hover,
#cart:hover,
#cartbutton:hover,
#lovee:hover,
.menus:hover {
  transform: scale(1.5);
}

.searchbox {
  display: none;
}

.searchbox.show {
  display: block;
  position: fixed;
  z-index: 1000;
  top: 25%;
  left: 10%;
  width: 80%;
  height: 50%;
  background-color: rgba(255, 255, 255);
  border-radius: 40px 40px 40px 40px;
}

.exit-search {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 999;
}

.exit-search.show {
  display: block;
}

#searchInput {
  position: relative;
  top: 20px;
  left: 20px;
  width: 60%;
  height: 40px;
  border: solid;
  border-radius: 20px;
  padding-left: 20px;
  outline: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

#searchInput:hover {
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  border-color: #3105f5;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

#searchInput:focus {
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  border-color: #007bff;
}

.searchContainer {
  border: #b9a6a6 solid 4px;
  margin-bottom: 50px;
}

#searchResults {
  position: relative;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  background-color: white;
  border: solid #000000 1px;
  display: none;
}

#searchResults #details-name {
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  border-bottom: solid #000000 1px;
}

#searchResults #description {
  font-size: 16px;
  color: gray;
  padding: 10px;
  border-bottom: solid #000000 1px;
}

#searchResults.show {
  display: block;
}

#searchResults::-webkit-scrollbar {
  display: none;
}

.details-image {
  text-align: center;
  padding: 20px;
}

#details-image {
  width: 180px;
  height: 220px;
  padding: 5px;
}

#details-image:hover {
  transform: scale(1.1);
  box-shadow: #c3e6cb 2px 2px 10px;
  border: #000000 solid 1px;
  transition: transform 0.5s ease;
}

#details-price {
  font-size: 18px;
  color: #00b300;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 5px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

#size-display {
  font-size: 16px;
  background-color: lightseagreen;
  width: 30%;
  text-align: center;
  border-radius: 8px;
  color: rgb(255, 255, 255);
  padding: 10px;
  margin-left: 5px;
  margin-bottom: 10px;
  transition: transform 0.5s ease;
}

#size-display:hover {
  transform: scale(1.05);
  background-color: darkcyan;
}

.items1 {
  display: inline;
  cursor: pointer;
}

#lovee {
  background: transparent;
}

nav {
  background-color: thistle;
  display: flex;
  justify-content: space-around;
  position: relative;
  top: 35px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border: #000000 solid 1px;
  border-radius: 5px;
  align-items: center;
  text-align: center;
}

nav a {
  color: black;
  text-decoration: none;
  text-transform: lowercase;
  font-weight: 250;
  padding: 10px;
}

nav a:hover {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 5px;
}

.updates {
  background-color: orange;
  width: 100%;
  position: relative;
  top: 50px;
  display: flex;
  justify-content: space-between;
}

.updates a {
  text-decoration: none;
  margin-left: 30px;
  color: black;
  font-size: 20px;
}

.updates a:hover {
  color: rgb(246, 245, 244);
}

.cart-button {
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: transform 0.5s ease;
}

.cart-button:hover {
  transform: scale(1.1);
}

.feather-shopping-cart:hover,
.feather-shopping-cart.selected {
  fill: #000000;
  stroke: white;
}

#products-list {
  display: grid;
  position: relative;
  top: 70px;
  gap: 20px;
  margin: 2px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.product {
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.product:hover {
  transform: scale(1.05);
}

#product-price {
  font-size: 18px;
  color: #00b300;
  font-weight: bold;
  margin-top: 10px;
  background-color: #d4edda;
  width: 45%;
  border: #28a745 solid 1px;
  border-radius: 5px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.5s ease;
}

.size-container {
  display: flex;
  gap: 20px;
}

.say-alert-message {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: none;
}

.say-alert-message.show {
  opacity: 1;
  display: block;
}

.info {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 10px 0;
  background-color: blue;
  color: rgb(255, 255, 255);
  padding: 5px;
  font-weight: bold;
}

.product img {
  border-bottom: #000000 solid 1px;
}

.product img:hover {
  transform: scale(1.1);
  box-shadow: #c3e6cb 2px 2px 10px;
  border: #000000 solid 1px;
  transition: transform 0.5s ease;
}

.product:hover #product-price:hover {
  transform: scale(1.1);
  background-color: #c3e6cb;
  transition: background-color 0.3s ease, transform 0.5s ease;
}

.info2 {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 10px;
  background-color: yellow;
  color: black;
  padding: 5px;
  font-weight: bold;
}

.heart-button {
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  border: none;
}

.heart-icon {
  width: 25px;
  height: 25px;
  fill: white;
  stroke: black;
  stroke-width: 2;
  transition: fill 0.3s ease;
  cursor: pointer;
}

.heart-icon:hover {
  fill: red;
  stroke: white;
  transform: scale(1.1);
}

.heart-icon.selected {
  fill: red;
  stroke: white;
}

.product-container {
  position: relative;
  width: 100%;
  top: 40px;
  padding: 10px 0px;
  margin: 2px;
}

#product-details-image {
  width: 150px;
  height: 250px;
  position: absolute;
  right: 0;
  top: 0;
}

#product-details-name {
  text-align: left;
}

#product-details-price {
  margin-left: 5px;
  height: 40px;
  font-size: 25px;
  color: #00b300;
  font-weight: bold;
  margin-top: 40px;
}

#product-details-description {
  margin-left: 5px;
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}

.plusMinusbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.minus,
.plus {
  width: 40px;
  height: 40px;
  background-color: blue;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.plus:hover,
.minus:hover {
  background-color: darkblue;
}

.button-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.buyNow,
.add-to-cart {
  width: 150px;
  height: 30px;
  background-color: blue;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.buyNow:hover,
.add-to-cart:hover {
  background-color: darkblue;
}

.featured-products {
  position: relative;
}

.featured-item {
  border: solid 1px #ccc;
  border-radius: 10px;
  margin: 10px auto 50px;
  width: 40%;
  padding: 20px;
  background: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  scroll-snap-align: start;
}

.featured-item:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.featured-list {
  display: flex;
  gap: 20px;
  margin: 20px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scrollbar-color: #000000 #f1f1f1;
  padding-bottom: 20px;
}

.featured-list::-webkit-scrollbar {
  display: none;
}

.featured-products h2 {
  text-align: center;
  margin-top: 100px;
  font-size: 30px;
}

.featured-item h3 {
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
}

.featured-products img {
  width: 200px;
  height: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.featured-item p {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  background-color: #333;
  font-weight: bold;
}

.back-to-home {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  color: blue;
  text-decoration: underline;
}

.back-to-home:hover {
  color: darkblue;
}

.footer {
  text-align: center;
  opacity: 0.5;
}

.slideshow {
  margin-top: 250px;
}

.image1 {
  object-fit: contain;
}

.prevNextbtn {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

#Previous,
#next {
  color: rgb(255, 255, 255);
  background: blue;
  border: solid blue;
  border-radius: 8px;
  cursor: pointer;
}

#Previous:hover,
#next:hover {
  background-color: rgb(3, 3, 116);
}

h4 {
  position: absolute;
  font-size: 150px;
  top: 0px;
  transform: translate(50%, -50%);
  opacity: 0.1;
}

.slideshow {
  overflow: hidden;
  position: relative;
}

.slideshow-container {
  display: flex;
  transition: transform 1s ease;
}

.slideshow img {
  flex-shrink: 0;
  z-index: 2;
}

.slideshow img:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.textus {
  background-color: lightgray;
  margin-top: 20%;
  margin-left: 0;
  width: 100%;
}

input[type="checkbox"] {
  display: none;
}

.custom {
  left: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid black;
  position: relative;
  cursor: pointer;
}

.label {
  margin-left: 20px;
  position: relative;
  bottom: 6px;
}

.custom1 {
  left: 20px;
  top: 15px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid black;
  position: relative;
  cursor: pointer;
}

.label1 {
  margin-left: 20px;
  position: relative;
  top: 10px;
}

#email {
  position: relative;
  width: 270px;
  height: 40px;
  border: solid;
  left: 10px;
  outline: none;
}

#country {
  position: relative;
  width: 100px;
  height: 40px;
  color: white;
  border: solid;
  background-color: black;
  top: 15px;
  left: 10px;
  cursor: pointer;
}

#number {
  position: relative;
  top: 14px;
  left: 20px;
  width: 150px;
  height: 30px;
  border: solid;
  background-color: white;
  border-radius: 10px;
  outline: none;
}

#sign-up {
  position: relative;
  width: 300px;
  height: 50px;
  top: 40px;
  left: 30px;
  background-color: black;
  transition: 0.5s ease-in-out;
  color: white;
  cursor: pointer;
}

#sign-up:hover {
  background-color: white;
  color: black;
  transition: 0.5s ease-in-out;
  transform: scale(1.1);
}

#number::placeholder {
  text-align: left;
}

.custom::after {
  content: '✓';
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease;
  color: black;
  top: 50%;
  left: 70%;
}

input[type="checkbox"]:checked+.custom::after {
  opacity: 1;
}

.custom1::after {
  content: '✓';
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease;
  color: black;
  top: 50%;
  left: 70%;
}

input[type="checkbox"]:checked+.custom1::after {
  opacity: 1;
}

.Des {
  position: relative;
  top: 50px;
}

.End h2 {
  text-align: center;
  margin-top: 80px;
  font-size: 50px;
}

code {
  margin-left: 20px;
  font-size: 18px;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  height: 100px;
  text-align: center;
}

.media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.media a:hover {
  transform: scale(1.5);
  transition: transform 0.5s ease;
}

.Get {
  text-align: center;
  margin-top: 30px;
}

.play {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  cursor: pointer;
}

.play img {
  cursor: pointer;
}

#shop {
  position: relative;
  background-color: black;
  width: 120px;
  height: 50px;
  color: white;
  margin: 0 auto;
  transition: 0.5s ease-in-out;
  display: block;
}

#shop:hover {
  background-color: white;
  color: black;
  transition: 0.5s ease-in-out;
  transform: scale(1.1);
}

footer {
  font-weight: 10;
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-header {
  width: 100%;
  position: relative;
}

.product-header-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.3);
  margin-left: 0;
  margin-right: 0;
  position: relative;
  display: block;
}

.size-table {
  width: 25%;
  border-collapse: collapse;
  margin-top: 10px;
}

.size-option {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.size-option:hover {
  background-color: #e0e0e0;
}

.size-option.selected {
  font-weight: bold;
  border-width: 2px;
}

.size-option.selected:hover {
  background-color: #c3e6cb;
}

.size-option.selected:nth-child(1) {
  background-color: #d4edda;
  border-color: #28a745;
}

.size-option.selected:nth-child(2) {
  background-color: #d1ecf1;
  border-color: #17a2b8;
}

.size-option.selected:nth-child(3) {
  background-color: #f08365;
  border-color: #473335;
}

.back-button {
  position: absolute;
  color: white;
  font-weight: bold;
  left: 5px;
  text-decoration: underline;
}

.back-button:hover {
  color: rgb(173, 216, 230);
}

h1 {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  text-align: center;
}

.Hot-header {
  position: relative;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.Hot-header a {
  color: white;
  position: absolute;
  top: 10px;
  font-size: 15px;
  font-weight: bold;
}

.Hot-header h1 {
  position: absolute;
  color: rgb(234, 255, 2);
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  animation: hotGlow 1.5s infinite alternate;
}

@keyframes hotGlow {
  0% {
    text-shadow: rgb(234, 255, 2) -2px 0px 1px, rgb(255, 0, 102) -1px 0px 5px, rgb(0, 255, 255) -5px 0px 20px;
  }

  50% {
    text-shadow: rgb(255, 0, 102) 0px 0px 1px, rgb(0, 255, 255) 0px 0px 5px, rgb(234, 255, 2) 0px 0px 20px;
  }

  100% {
    text-shadow: rgb(0, 255, 255) 2px 0px 1px, rgb(234, 255, 2) 1px 0px 5px, rgb(255, 0, 102) 5px 0px 20px;
  }
}

.Hot-header-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.3);
  margin-left: 0;
  margin-right: 0;
  position: relative;
  display: block;
  margin-bottom: 20px;
  animation: movement 5s infinite alternate;
  font-weight: bold;
}

.Hot-header-image:hover {
  animation-play-state: paused;
}

@keyframes movement {
  0% {
    transform: translateY(0);
    background-image: url("Folded.jpg");
  }

  33% {
    transform: translateY(-10px);
    background-image: url("cashmere-detail-lrg.jpg");
  }

  66% {
    transform: translateY(10px);
    background-image: url("OIP.webp");
  }

  100% {
    transform: translateY(0);
    background-image: url("Folded.jpg");
  }
}

.hot-products {
  position: relative;
  margin: 20px;
  width: 75%;
}

.hotProductName {
  display: flex;
  gap: 20px;
  margin: 20px;
}

#hot-product-name {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.5s ease;
}

#hot-product-name:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

#hot-product-price {
  font-size: 18px;
  color: #00b300;
  font-weight: bold;
  margin-top: 10px;
  background-color: #d4edda;
  width: 15%;
  border: #28a745 solid 1px;
  border-radius: 5px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 80px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.5s ease;
}

#hot-product-price:hover {
  transform: scale(1.1);
  background-color: #c3e6cb;
  transition: background-color 0.3s ease, transform 0.5s ease;
}

#hot-product-description {
  font-size: 15px;
  color: #333;
  margin-left: 10px;
  margin-top: 10px;
}

.hotProductName img {
  width: 150px;
  height: 250px;
  display: block;
  border: #000000 solid 1px;
  padding: 25px;
  box-shadow: #c3e6cb 2px 2px 10px;
  transition: transform 0.5s ease;
}

.hotProductName img:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

#hot-product-name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.white-header {
  position: relative;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.white-header a {
  color: white;
  position: absolute;
  top: 10px;
  font-size: 15px;
  font-weight: bold;
}

.white-header-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.3);
  margin-left: 0;
  margin-right: 0;
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.white-header-image img:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.white-products {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 50px;
  scrollbar-width: none;
  margin: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 15px;
  padding-left: 15px;
}

.whiteProductName img {
  width: 150px;
  height: 250px;
  display: block;
  border: #000000 solid 1px;
  padding: 25px;
  box-shadow: #c3e6cb 2px 2px 10px;
  transition: transform 0.5s ease;
}

.whiteProductName img:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.white-products::-webkit-scrollbar {
  display: none;
}

.whiteproduct {
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.whiteproduct:hover {
  transform: scale(1.05);
}

#white-product-name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

#white-product-price {
  font-size: 18px;
  color: #00b300;
  font-weight: bold;
  margin-top: 10px;
  background-color: #d4edda;
  width: 35%;
  border: #28a745 solid 1px;
  border-radius: 5px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 60px;
  transition: background-color 0.3s ease, transform 0.5s ease;
}

#white-product-price:hover {
  transform: scale(1.1);
  background-color: #c3e6cb;
  transition: background-color 0.3s ease, transform 0.5s ease;
}

.allBlack {
  background-color: black;
}

.header-container {
  position: relative;
}

.back-button {
  position: absolute;
  color: white;
  left: 5px;
  text-decoration: underline;
  z-index: 1;
}

.header-container h1 {
  position: absolute;
  color: white;
  font-size: 30px;
  text-align: center;
  z-index: 1;
  font-weight: bold;
}

.new-arrivals-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.3);
  margin-left: 0;
  margin-right: 0;
  position: relative;
  display: block;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  animation: newArrivalMovement 5s infinite alternate;
}

.new-arrivals-image:hover {
  animation-play-state: paused;
}

@keyframes newArrivalMovement {
  0% {

    background-image: url("new-arivals 1.jpg");
  }

  50% {

    background-image: url("new-arivals 2.jpg");
  }

  100% {

    background-image: url("new-arivals 4.jpg");
  }
}

.newArrivalproduct {
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 5px;
  text-align: center;
  transition: transform 0.3s ease;
  width: 30%;
  margin-bottom: 20px;
  margin-top: 65px;
}

.newArrivalproduct img {
  width: 50%;
  height: auto;
  border-radius: 10px;
}

.newArrivals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px;
  position: absolute;
  top: 155px;
  background-color: white;
  width: 100%;
  margin: 0%;
  border: #000000 solid 1px;
  border-radius: 20px 20px 0 0;
}

.newArrivalproduct:hover {
  transform: scale(1.05);
}

i {
  font-size: 15px;
  color: red;
  top: 10px;
  right: 10px;
  cursor: pointer;
  text-align: center;
}

#newArrival-product-price {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 10px;
  background-color: #4413e3;
  width: 50%;
  border: #28a745 solid 1px;
  border-radius: 5px;
  box-shadow: #c3e6cb 2px 2px 10px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: background-color 0.3s ease, transform 0.5s ease;
}

.alert-box {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.exit-alert {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 9998;
}

.exit-alert.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.alert-box button {
  margin-top: 10px;
  background: white;
  color: #ff4e50;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  text-align: center;
}

.alert-box button:hover {
  background: #ffe3e3;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


@media (min-width:350px) and (max-width:515px) {
  #products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 10px;
    margin: 2px;
  }

  .product:hover {
    transform: scale(1.05);
  }

  #product-details-description {
    font-size: 12px;
  }

  .plusMinusbtn {
    justify-content: left;
  }

  nav a {
    font-size: 14px;
  }
}
