.cv-hero {
  min-height: 540px;

  display: flex;
  align-items: center;

  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;

  position: relative;
}

.cv-hero:before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    #050912 0%,
    #050912 40%,
    rgba(5, 9, 18, 0.4) 65%,
    transparent 80%
  );
}

.cv-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 768px) {
  .cv-hero {
    padding: 60px 0;
  }

  .cv-hero:before {
    background: rgba(0, 0, 0, 0.5);
  }

  .cv-hero-text h1 {
    font-size: 36px;
  }
}

.cv-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-hero-text h1 {
  font-family: Montserrat;
  font-size: 48px;
  margin: 0;
}

.cv-hero-text p {
  opacity: 0.7;
  margin: 15px 0 30px;
}

.cv-hero-buttons {
  display: flex;
  gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.cv-btn {
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  min-width: 220px;
  text-align: center;
}

.cv-btn-ygo {
  background: #b11f2c;
}
.cv-btn-pokemon {
  background: #2c6dd2;
}
.cv-btn-op {
  background: #d28b2c;
}

.cv-hero-art img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.cv-products {
  padding: 60px 0;
}
.cv-products-grid {
  display: flex !important;
}
.slick-slide {
  padding: 0 10px;
}

@media only screen and (min-width: 991px) {
  .cv-hero-inner {
    justify-content: flex-start;
  }
  .cv-hero-buttons {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .cv-hero-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .cv-hero-art img {
    margin-top: 40px;
    max-width: 350px;
  }

  .cv-browse-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cv-footer-inner {
    flex-direction: column;
    gap: 30px;
  }
}

/* Product card */

.cv-product-card {
  background: #1b1e24;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cv-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.cv-product-image {
  aspect-ratio: 3/4;
  background: #2a2f37;
}

.cv-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv-product-info {
  padding: 15px;
}

.cv-product-title {
  font-size: 14px;
  margin: 0 0 10px;
}

.cv-product-meta {
  font-size: 12px;
  opacity: 0.6;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.cv-product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cv-product-price {
  font-weight: 600;
  color: #ff5e5e;
}

.cv-add-cart {
  background: #2c6dd2;
  border: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}
