/* =================================
   ELEGANT PRODUCT GRID
================================= */
.shop-products-skin-2 {
  padding: 14px;
  background: #fafafa;
}

/* =================================
   PRODUCT CARD – MINIMAL LUXURY
================================= */
.shop-products-skin-2 .product {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.shop-products-skin-2 .product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(32,36,73,0.18);
}

/* =================================
   IMAGE SHOWCASE – DESKTOP (PERFECT)
================================= */
.shop-products-skin-2 .img-as-background {
  height: 340px; /* DESKTOP unchanged */
  background: linear-gradient(180deg, #ffffff, #f6f4fb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.shop-products-skin-2 .img-as-background img {
  width: 100%;
  height: 80%;
  object-fit: contain;
  border-radius: 18px;
  transition: transform 0.45s ease;
}

.shop-products-skin-2 .product:hover img {
  transform: scale(1.01);
}

/* =================================
   CONTENT AREA
================================= */
.shop-products-skin-2 .content {
  padding: 18px 16px 20px !important;
  text-align: center;
}

/* =================================
   PRODUCT TITLE
================================= */
.shop-products-skin-2 h6 {
  font-size: 16px;
  font-weight: 500;
  color: #202449;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

/* =================================
   PRICE
================================= */
.shop-products-skin-2 .price-holder {
  margin-bottom: 8px;
}

.shop-products-skin-2 .price-old {
  color: #a3a3a3;
  font-size: 14px;
  margin-right: 6px;
}

.shop-products-skin-2 .price {
  color: #AF9FC8;
  font-size: 18px;
  font-weight: 600;
}

/* =================================
   ADD TO CART BUTTON
================================= */
.shop-products-skin-2-btn .btn {
  width: 78%;
  padding: 9px 0 !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px !important;
  background: transparent !important;
  color: #202449 !important;
  border: 1.8px solid #202449 !important;
  transition: all 0.4s ease;
}

.shop-products-skin-2-btn .btn:hover {
  background: linear-gradient(135deg, #202449, #AF9FC8) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 22px rgba(175,159,200,0.35);
}

/* =================================
   MOBILE – HEIGHT REDUCED & COMPACT
================================= */
@media (max-width: 768px) {

  .shop-products-skin-2 {
    padding: 10px;
  }

  /* IMAGE HEIGHT REDUCED */
  .shop-products-skin-2 .img-as-background {
    height: 190px; /* ⬅ mobile height reduced */
    padding: 12px;
  }

  .shop-products-skin-2 .img-as-background img {
    object-fit: contain;
    border-radius: 14px;
  }

  /* CONTENT COMPACT */
  .shop-products-skin-2 .content {
    padding: 12px 12px 10px !important;
  }

  /* TITLE COMPACT */
  .shop-products-skin-2 h6 {
    font-size: 14.9px;
    margin-bottom: 2px;
  }

  /* PRICE COMPACT */
  .shop-products-skin-2 .price-holder {
    margin-bottom: 4px;
  }

  /* BUTTON COMPACT */
  .shop-products-skin-2-btn .btn {
    width: 92%;
    font-size: 13px;
    padding: 4px 0 !important;
    margin-bottom: 4px;
  }
}