/* Full screen product grid */
.shop-fullscreen {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.shop-fullscreen .wrapper-shop {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  width: 100%;
}

.shop-fullscreen .card-product {
  width: 25%;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.shop-fullscreen .card-product-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.shop-fullscreen .product-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
}

.shop-fullscreen .img-product {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 55vh;
  object-fit: contain;
  margin-bottom: 10px;
}

.shop-fullscreen .card-product .card-product-wrapper:hover .product-img .img-product {
  opacity: 1 !important;
}

.shop-fullscreen .card-product .card-product-wrapper:hover .product-img .img-hover {
  display: none !important;
}

.shop-fullscreen .img-hover {
  display: none !important;
}

.shop-fullscreen .card-product-info {
  text-align: center;
  margin-top: 0;
}

.shop-fullscreen .card-product-info .title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 5px;
}

.shop-fullscreen .card-product-info .price {
  font-size: 18px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.shop-fullscreen .view-link {
  display: inline-block;
  padding: 14px 50px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.shop-fullscreen .view-link:hover {
  background: #000;
  color: #fff;
}

/* Responsive: 2 columns on tablet, 1 column on mobile */
@media (max-width: 1024px) {
  .shop-fullscreen .card-product {
    width: 50%;
    height: 60vh;
  }
}

@media (max-width: 767px) {
  .shop-fullscreen .card-product {
    width: 100%;
    height: 50vh;
  }
  .shop-fullscreen .card-product-wrapper {
    padding: 20px;
  }
  .shop-fullscreen .img-product {
    max-width: 80%;
    max-height: 40vh;
  }
  .shop-fullscreen .card-product-info {
    padding: 15px 20px 25px;
  }
  .shop-fullscreen .card-product-info .title {
    font-size: 22px;
  }
  .shop-fullscreen .card-product-info .price {
    font-size: 16px;
  }
  .shop-fullscreen .view-link {
    padding: 12px 40px;
    font-size: 12px;
  }
}