* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  background-color: #f5f5f5;
}

.logo img {
  width: 100px;
  display: block;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 400;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn i {
  font-size: 24px;
  padding: 0px 25px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.btn i:hover {
  color: #000;
}

.language {
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  cursor: pointer;
  background-color: #f5f5f5;
  width: 115px;
}
.cart {
  position: absolute;
  top: -45px;
  right: -40px;
  width: 350px;
  height: 100vh;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.cart.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  border-bottom: 1px solid black;
}
.cart-header h2 {
  font-size: 25px;
  font-weight: 600;
}
.cart-header i {
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}
.cart-header i:hover {
  color: #000;
}
.cart-body {
  overflow-y: auto;
  max-height: calc(100vh - 90px);
}
.cart-body > p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #aaa;
  text-align: center;
  margin: 200px auto;
}
.search {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 15px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.search.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search .search-input {
  display: flex;
  align-items: center;
  width: 60%;
  padding: 12px 20px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  gap: 10px;
  transition: border-color 0.3s ease;
}
.search .search-input:focus-within {
  border-color: #333;
}
.search .search-input i {
  font-size: 18px;
  color: #999;
}
.search .search-input input {
  width: 100%;
  font-size: 18px;
  border: none;
  outline: none;
  background: transparent;
  color: #333;
}
.search .search-input input::placeholder {
  color: #aaa;
}
.search #close-search {
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}
.search #close-search:hover {
  color: #000;
}
/* men list */
.men-list {
  position: absolute;
  top: 100px;
  left: 810px;
  width: 300px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}
.men-list ul {
  padding: 0 40px;
  flex-direction: column;
  align-items: flex-start;
}
.men-list ul li {
  margin: 15px 0px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}
.men-list.active ul li {
  opacity: 1;
  transform: translateY(0);
}
.men-list.active ul li:nth-child(1) {
  transition-delay: 0.05s;
}
.men-list.active ul li:nth-child(2) {
  transition-delay: 0.1s;
}
.men-list.active ul li:nth-child(3) {
  transition-delay: 0.15s;
}
.men-list.active ul li:nth-child(4) {
  transition-delay: 0.2s;
}
.men-list ul li a {
  text-decoration: none;
  color: #333;
}
.men-list ul li a:hover {
  color: #000;
}
.men-list.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.men-list ul li i {
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
  margin-left: 10px;
  opacity: 80%;
}
.men-list ul li i:hover {
  color: #000;
}
/* kids list */
.kids-list {
  position: absolute;
  top: 100px;
  left: 880px;
  width: 300px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}
.kids-list ul {
  padding: 0 40px;
  flex-direction: column;
  align-items: flex-start;
}
.kids-list ul li {
  margin: 15px 0px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}
.kids-list.active ul li {
  opacity: 1;
  transform: translateY(0);
}
.kids-list.active ul li:nth-child(1) {
  transition-delay: 0.05s;
}
.kids-list.active ul li:nth-child(2) {
  transition-delay: 0.1s;
}
.kids-list ul li a {
  text-decoration: none;
  color: #333;
}
.kids-list ul li a:hover {
  color: #000;
}
.kids-list.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.kids-list ul li i {
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
  margin-left: 10px;
  opacity: 80%;
}
.kids-list ul li i:hover {
  color: #000;
}
/* sale list */
.sale-list {
  position: absolute;
  top: 100px;
  left: 940px;
  width: 350px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}
.sale-list ul {
  padding: 0 40px;
  flex-direction: column;
  align-items: flex-start;
}
.sale-list ul li {
  margin: 15px 0px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}
.sale-list.active ul li {
  opacity: 1;
  transform: translateY(0);
}
.sale-list.active ul li:nth-child(1) {
  transition-delay: 0.05s;
}
.sale-list.active ul li:nth-child(2) {
  transition-delay: 0.1s;
}
.sale-list ul li a {
  text-decoration: none;
  color: #333;
}
.sale-list ul li a:hover {
  color: #000;
}
.sale-list.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.sale-list ul li i {
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
  margin-left: 10px;
  opacity: 80%;
}
.sale-list ul li i:hover {
  color: #000;
}

.cover {
  width: 100%;
  height: 88vh;
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-now {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  background-color: #fff;
  color: #272020;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.shop-now:hover {
  background-color: #272020;
  color: #fff;
}

.best-seller-section {
  width: 100%;
  padding: 40px 20px;
}
.best-seller-section h2 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.best-seller {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.best-seller a {
  width: 50%;
  height: 50%;
  transition: all 0.9s ease-in-out;
  overflow: hidden;
}
.best-seller a:hover img {
  transform: scale(1.5);
}
.best-seller img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease-in-out;
}

/* ===== Featured Collection Section ===== */
.featured-collection-section {
  width: 100%;
  padding: 10px 0px;
}
.card-header {
  text-align: center;
  margin-bottom: 40px;
}
.card-header h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.cards {
  width: 100%;
  position: relative;
  padding: 0 20px;
}
.cards-list {
  display: flex;
  align-items: center;
  position: relative;
}
.cards-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}
.cards-scroll::-webkit-scrollbar {
  display: none;
}

/* Arrow Buttons */
.arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  background-color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
}
.cards:hover .arrow {
  opacity: 1;
}
.arrow-left {
  left: 10px;
}
.arrow-right {
  right: 10px;
}
.arrow i {
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}
.arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.arrow:hover i {
  color: #000;
}

/* Product Card */
.card-item {
  position: relative;
  min-width: calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  flex-shrink: 0;
}
.discount {
  position: absolute;
  top: 30px;
  left: 20px;
  background-color: red;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 10px 15px;
  border-radius: 5px;
  z-index: 5;
}
.card-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
}
.card-img-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}
.card-img-wrapper .product-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.card-img-wrapper:hover .product-img-hover {
  opacity: 1;
}
.card-img-wrapper:hover img:first-child {
  opacity: 0;
}

/* Add to Cart Button */
.add-to-cart {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
  font-size: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}
.card-img-wrapper:hover .add-to-cart {
  opacity: 1;
  transform: translateY(0);
}
.add-to-cart:hover {
  background-color: #333;
  color: #fff;
}

/* Product Info */
.product-info {
  padding: 15px 0;
  text-align: center;
}
.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.new-price {
  font-size: 17px;
  font-weight: 400;
  color: #555;
  letter-spacing: 1px;
}
.old-price {
  font-size: 15px;
  font-weight: 400;
  color: red;
  letter-spacing: 1px;
  text-decoration: line-through;
}

/* View All Button */
.view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}
.view-all-btn {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.view-all-btn:hover {
  background-color: #333;
  color: #fff;
}

/* ===== Bltlon (Denim) Section ===== */
.bltlon-section {
  width: 100%;
  padding: 40px 0px;
}
.bltlon-header {
  text-align: center;
  margin-bottom: 40px;
}
.bltlon-header p {
  font-size: 16px;
  font-weight: 400;
  color: #777;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bltlon-header h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #333;
}
.bltlon-list {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0 20px;
}
.bltlon-list .cards-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}
.bltlon-list .cards-scroll::-webkit-scrollbar {
  display: none;
}
.bltlon-list:hover .arrow {
  opacity: 1;
}
.bltlon-list .arrow-left {
  left: 30px;
}
.bltlon-list .arrow-right {
  right: 30px;
}
/* ===== Footer Section ===== */
footer {
  background-color: #222;
  color: #fff;
}
.footer-container {
  width: 100%;
  padding: 60px 60px 30px;
}

/* Footer Top - 3 columns */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}

/* Newsletter */
.newsletter {
  max-width: 280px;
}
.newsletter h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.newsletter p {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter input {
  width: 100%;
  padding: 12px 15px;
  background-color: transparent;
  border: 1px solid #555;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}
.newsletter input::placeholder {
  color: #888;
}
.newsletter input:focus {
  border-color: #fff;
}
.newsletter button {
  padding: 12px 30px;
  background-color: transparent;
  border: 1px solid #555;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.newsletter button:hover {
  background-color: #fff;
  color: #222;
}

/* Privacy Policy */
.privacy-policy {
  text-align: right;
}
.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.privacy-list li a {
  color: #ccc;
  text-decoration: none;
  font-size: 17px;
  font-weight: 300;
  transition: color 0.3s ease;
}
.privacy-list li a:hover {
  color: #fff;
}

/* Find Us */
.find-us {
  text-align: right;
}
.find-us h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.find-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.find-us-list li a {
  color: #ccc;
  text-decoration: none;
  font-size: 17px;
  font-weight: 300;
  transition: color 0.3s ease;
}
.find-us-list li a:hover {
  color: #fff;
}

/* Footer Middle - Social Media */
.footer-middle {
  display: flex;
  justify-content: flex-end;
  padding: 30px 0;
}
.social-media-list {
  list-style: none;
  display: flex;
  gap: 20px;
}
.social-media-list li a {
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease;
}
.social-media-list li a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid #444;
}
.copyright {
  font-size: 13px;
  font-weight: 300;
  color: #999;
  letter-spacing: 1px;
}
.footer-selectors {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-currency,
.footer-language {
  background-color: transparent;
  border: none;
  color: #ccc;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding-left: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
}
.footer-currency option,
.footer-language option {
  background-color: #222;
  color: #ccc;
}
