/* Main Box 1 */
.main_box1 {
  width: 100%;
  height: 1000px;
}

.main_box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shop Categories Section (Box 2) */
.shop-categories-section {
  display: flex;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 900px;
}

.shop-category-item {
  position: relative;
  flex: 1;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.shop-category-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.shop-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.shop-category-item:hover .shop-category-image img {
  transform: scale(1.05);
}

/* Category Label */
.shop-category-label {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.shop-category-label a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
}

.shop-category-label a:hover {
  opacity: 0.7;
}

.arrow-icon {
  font-size: 20px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.shop-category-item:hover .arrow-icon {
  transform: translateY(5px);
}

.category-text {
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 400;
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 992px) {
  .shop-categories-section {
    min-height: 600px;
    max-height: 800px;
  }

  .shop-category-label {
    bottom: 30px;
    left: 30px;
  }

  .shop-category-label a {
    font-size: 13px;
    gap: 10px;
  }

  .arrow-icon {
    font-size: 18px;
  }

  .category-text {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 768px) {
  .shop-categories-section {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .shop-category-item {
    width: 100%;
    height: 70vh;
    min-height: 500px;
  }

  .shop-category-label {
    bottom: 25px;
    left: 25px;
  }

  .shop-category-label a {
    font-size: 12px;
    gap: 8px;
  }

  .arrow-icon {
    font-size: 16px;
  }

  .category-text {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .shop-category-item {
    height: 60vh;
    min-height: 400px;
  }

  .shop-category-label {
    bottom: 20px;
    left: 20px;
  }

  .shop-category-label a {
    font-size: 11px;
    gap: 6px;
  }

  .arrow-icon {
    font-size: 14px;
  }

  .category-text {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
}

/* Video Section (Box 3) */
.video-section {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  position: relative;
  overflow: hidden;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Section Responsive */
@media (max-width: 992px) {
  .video-section {
    min-height: 600px;
    max-height: 800px;
  }
}

@media (max-width: 768px) {
  .video-section {
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
  }
}

@media (max-width: 480px) {
  .video-section {
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
  }
}

/* Three Categories Section (Box 4) */
.three-categories-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.category-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: #f5f5f5;
}

.category-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  position: relative;
}

.category-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.category-item:hover .category-image-wrapper img {
  transform: scale(1.05);
}

.category-label-bottom {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.arrow-icon-left {
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.category-item:hover .arrow-icon-left {
  transform: translateX(5px);
}

.category-text-bottom {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  transition: opacity 0.3s ease;
}

.category-item:hover .category-text-bottom {
  opacity: 0.7;
}

/* Three Categories Responsive */
@media (max-width: 992px) {
  .category-label-bottom {
    bottom: 25px;
    left: 25px;
    gap: 8px;
  }

  .arrow-icon-left {
    font-size: 16px;
  }

  .category-text-bottom {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-item {
    aspect-ratio: 4 / 5;
  }

  .category-label-bottom {
    bottom: 20px;
    left: 20px;
  }

  .category-text-bottom {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .category-label-bottom {
    bottom: 15px;
    left: 15px;
    gap: 6px;
  }

  .arrow-icon-left {
    font-size: 14px;
  }

  .category-text-bottom {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
}
