/*
 * Custom style goes here.
 * A template should always ship with an empty custom.css
 */
/* ================================
   BELVG – DISABLE PRODUCT LIST HOVER
   ================================ */

/* Disable card hover animation */
.product-list .product-container:hover {
  box-shadow: none !important;
  transform: none !important;
}

/* Disable image dark overlay */
.product-list .product-thumbnail .product-cover-link:before {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Disable grid hover buttons completely */
.product-list .grid-hover,
.product-list .grid-hover-btn {
  display: none !important;
}

/* Prevent hover-triggered transitions */
.product-list .product-miniature *,
.product-list .product-miniature *:hover {
  transition: none !important;
}
/* ======================================
   BELVG – PRODUCT LIST CLICK FIX (FINAL)
   ====================================== */

/* Remove hover overlays visually */
.product-list .product-thumbnail .product-cover-link:before {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Disable hover containers capturing clicks */
.product-list .grid-hover {
  pointer-events: none !important;
}

/* Restore clickability of product image link */
.product-list .product-thumbnail a.product-cover-link {
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}

/* Ensure Frameit button is clickable */
.frameit-btn,
.frameit-btn * {
  pointer-events: auto !important;
  position: relative;
  z-index: 20;
}
/* ================================
   BELVG – IMAGE BORDER FIX (5px)
   ================================ */

/* Reduce visual border around product images */
.product-list .product-miniature .product-thumbnail {
  padding: 5px !important;
  background: #ffffff;
  box-sizing: border-box;
}

/* Remove extra spacing from container */
.product-list .product-miniature .product-container {
  padding: 0 !important;
}

/* Prevent image from overflowing */
.product-list .product-miniature .product-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
/* ======================================
   BELVG – FRAME IT BUTTON SPACING
   ====================================== */

/* Space between product image and Frame it button */
.product-list .product-miniature .product-actions {
  margin-top: 10px;
}

/* Ensure the button itself does not add extra spacing */
.product-list .product-miniature .frameit-btn {
  margin-top: 25px;
}


/* ======================================
   BELVG – CLICKABLE EYE ICON BEFORE PRODUCT NAME
   ====================================== */

/* ======================================
   BELVG – EYE ICON BEFORE PRODUCT NAME
   ====================================== */

.product-list .product-miniature .product-name a {
  display: inline-flex;
  align-items: center;
}

/* Add eye icon BEFORE product name */
.product-list .product-miniature .product-name a::before {
  content: "\f06e";          /* FontAwesome eye */
  font-family: "FontAwesome";
  font-size: 1.5em;          /* 1.5x size */
  margin-right: 10px;        /* space before name */
  color: #25365d;
  line-height: 1;
  vertical-align: middle;
}

/* ======================================
   BELVG – FRAME AROUND PRODUCT BOX (FIX)
   ====================================== */

.product-list .product-miniature {
  border: 1.5px solid #e5e5e5;   /* fine frame */
  border-radius: 25px;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: none;
}

/* ======================================
   BELVG – PRODUCT NAME 2-LINE LIMIT
   ====================================== */

.product-list .product-miniature .product-name,
.product-list .product-miniature .product-name a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;   /* limit to 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3em;
  max-height: 2.6em;       /* 2 × line-height */
}
/* ======================================
   BELVG – VENT BANNER TOP OF PAGE HEADER  - Info delivery, free delivery  hide on mobile
   ====================================== */
@media (max-width: 767px) {
  .header-event-banner {
    display: none !important;
  }
}





