* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Bebas Neue", sans-serif;
  color: #333;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 3px;
  z-index: 101;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #666;
}

@media (max-width: 768px) {
  header {
    padding: 20px 30px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 80px 60px;
  min-height: 600px;
  overflow: hidden;
  background-color: #000;
}

.hero-content {
  max-width: 500px;
  z-index: 2;
  position: relative;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.hero .video-js .vjs-tech {
  object-fit: cover;
}

.hero .video-js .vjs-poster {
  background-size: cover;
  background-position: center;
}

.hero .video-js .vjs-poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .video-js .vjs-control-bar,
.hero .video-js .vjs-big-play-button {
  display: none;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
  text-transform: uppercase;
}

.btn-header {
  background: #ffffff;
  color: #2a2a2a;
  padding: 18px 45px;
  border: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-catalog {
  background: #2a2a2a;
  color: #ffffff;
  padding: 18px 45px;
  border: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-catalog:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.collection-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}

.collection-left {
  background: url("/assets/img/fotos_16.jpg") center/cover;
  padding: 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-list {
  list-style: none;
  margin-bottom: 40px;
}

.category-list li {
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  padding-left: 0;
}

.category-list li:hover {
  padding-left: 10px;
  color: #ccc;
}

.collection-right {
  background: url("/assets/img/willsesion_10.jpg") center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

.collection-title h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 100;
  font-size: 100px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.collection-title p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .collection-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .collection-left,
  .collection-right {
    min-height: 50vh;
  }

  .collection-left {
    padding: 40px 30px;
  }

  .category-list li {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .collection-title h2 {
    font-size: 50px;
    letter-spacing: 2px;
  }

  .collection-title p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .collection-left,
  .collection-right {
    min-height: 40vh;
  }

  .collection-left {
    padding: 30px 20px;
  }

  .category-list li {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }

  .collection-title h2 {
    font-size: 40px;
  }

  .collection-title p {
    font-size: 18px;
  }
}

.bestsellers {
  padding: 80px 60px;
  background: white;
}

.bestsellers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.bestsellers h2 {
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-card {
  background: white;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.product-image {
  width: 100%;
  height: 400px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-image .img-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.product-image .img-layer.visible {
  opacity: 1;
}

.product-info {
  padding: 0 10px 20px;
  text-align: left;
  background: white;
}

.product-name {
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
  font-weight: normal;
  line-height: 1.3;
}

.product-price {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  font-weight: normal;
}

.product-sizes {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.size {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0 12px;
  position: relative;
}

.size:first-child {
  padding-left: 0;
}

.size:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -4px;
  color: #ccc;
}

.size:hover {
  color: #000;
}

/* Carousel styles */
.carousel {
  position: relative;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel-track .product-card {
  min-width: calc(25% - 22.5px);
  margin-right: 30px;
}

.carousel-btn {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #333;
  z-index: 10;
  transition: background 0.3s;
  border-radius: 4px;
}

.carousel-prev {
  left: -20px;
}

.carousel-next {
  right: -20px;
}

@media (max-width: 900px) {
  .carousel-track .product-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .carousel-track .product-card {
    min-width: calc(100% - 10px);
  }
  .bestsellers {
    padding: 40px 20px;
  }
}

.order-banner {
  background: url("/assets/img/ORDER-BANNER-IMG.jpg") center/cover;
  color: white;
  text-align: center;
  padding: 80px 60px;
  margin-top: 40px;
}

.order-banner h3 {
  font-size: 72px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.order-banner p {
  font-family: Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #ddd;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.btn-order {
  background: white;
  color: #2a2a2a;
  padding: 18px 45px;
  border: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-order:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

footer {
  background: #2a2a2a;
  color: white;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 3px;
}

.footer-year {
  font-size: 14px;
  color: #999;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.social-icon i {
  color: white;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-icon:hover i {
  color: white;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
  }

  .collection-section {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
@media (max-width: 425px) {
  .order-banner h3 {
  font-size: 60px;
}
  .hero p {
    font-size: 12px;
    padding: 0px 40px;
  }
  .btn-header {
    background: #ffffff;
    color: #2a2a2a;
    padding: 18px 45px;
    border: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }
  .bestsellers h2 {
    font-size: 20px;
  }
  .btn-catalog {
    background: #2a2a2a;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }
  .order-banner p {
    font-family: Arial, sans-serif;
    font-size: 12px;
  }
}

.contact-section {
  background: #333;
  padding: 80px 60px;
  text-align: center;
}

.contact-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  color: #f0f0f0;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-subtitle {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.contact-item i {
  font-size: 28px;
  color: #f0f0f0;
  min-width: 40px;
}

.contact-text p {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #f0f0f0;
  margin: 3px 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }

  .contact-section {
    padding: 60px 30px;
  }

  .contact-section h2 {
    font-size: 40px;
  }
  .contact-item i {
    font-size: 20px;
  }
}
@media (max-width: 425px) {
  .contact-subtitle {
  font-size: 12px;
}
}
