
.menu {
  background: #181A1E;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 6px 40px;
  position: sticky;
  top: 0;
  z-index: 1000; 

}
.menu a {
  color: #B1B0B0;
  text-decoration: none;
  font-size: 28px;
  font-family: 'Archivo', 'Courier', 'monospace', 'Courier New';
}


.menu img {
  width: 50px; 
  vertical-align: middle;
}

.menu a:hover {
  color: #D6E70A;
}


.menu a:not(:last-child) {
  margin-right: 20px; 
}


.hero-section {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  gap: 20px;
}


.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3em;
  font-weight: bold;
  line-height: 1.2;
  font-family: 'Nunito';
}

.hero-text p {
  font-size: 1.2em;
  color: #7D7D7D;
}

.hero-text .sub-heading {
  font-weight: bold;
  color: #000;
  margin-top: 20px;
}

.hero-buttons {
  margin-top: 20px;
}

.primary-button, .secondary-button {
  padding: 10px 20px;
  font-size: 1em;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.primary-button {
  background-color: #000;
  color: #fff;
}

.secondary-button {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.promo-text {
  font-size: 2em;
  font-weight: bold;
  margin-top: 30px;
}

.hero-images {
  display: flex;
  gap: 20px;
}

.hero-image {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}


@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-images {
    justify-content: center;
  }
}

#top-cards {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.card {
  width: 22%;
  height: 100px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.card img {
  height: 250px;
}

#elevate {
  text-align: center;
  padding: 20px;
}

#elevate h2 {
  margin: 0;
  font-size: 2em;
}

#elevate p {
  margin-top: 10px;
  color: #555;
}

#men-section, #women-section {
  margin: 40px 0;
  text-align: center;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
}

.carousel-inner {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-item {
  min-width: 100%;
  text-align: center;
}

.carousel-item img {
  max-width: 100%;
  border-radius: 10px;
}

.carousel-item span {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.5em;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.fabric img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 80%;
  object-fit: cover;
}

.heading img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 80%;
}

footer {
  background: #222;
  color: #ddd;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

footer a {
  color: #ff6f61;
  text-decoration: none;
}

footer .social-links img {
  margin: 0 10px;
  width: 30px;
}


/* Cart styles */

.big-cart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* margin: 0 auto; */
}

.foot-cart {
  background: #222;
  color: #ddd;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
}

/* Bookmark/Saved styles */

.bookmark img{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 80%;
  object-fit: cover;
}

.bookmark p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B1B0B0;
  font-size: 28px;
  font-family: 'Archivo', 'Courier', 'monospace', 'Courier New';
}

/* Men styles */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.cloth img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #2c2c2c, #444);
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}
nav {
  background: #333;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;


}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-bar {
  display: flex;
  align-items: center;
  background: #444;
  padding: 10px 20px;
  border-radius: 30px;
  width: 300px;
}
.search-bar img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(1);
}
.search-bar input {
  border: none;
  background: none;
  color: #fff;
  outline: none;
  padding: 8px 12px;
  font-size: 16px;
  width: 100%;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
  }
  .nav-links.active {
      display: flex;
  }
  .hamburger{
    display: block;
  }
  nav{
    align-items: flex-start;
    gap:10px;
  }
}
#mobileMenu {
  position: absolute; /* or fixed */
  z-index: 1000;      /* must be higher than Spline */
  background-color: white; /* or dark if your theme is dark */
}

/* Spline embed */
.spline-container canvas {
  z-index: -1;
  position: relative; /* or absolute if needed */
}
body{
  background-color: #0A192F;
}
.search-form{
  display: flex;
  width: 100%;
  align-content: center;
}
.search-form button{
  background-color: black;
  align-self: flex-end;
  height: 100%;
  border-radius: 20%;
  margin-bottom: 5px;
}
.search-form button img{
  margin-left: 8px;
}