/* .main {
  padding-top: 86px !important;
} */

/* --------------------------
   PRODUCT CARD WRAPPER
---------------------------*/
.product-style-porto {
  position: relative;
  border: none;
  background: #fff;
  padding-bottom: 20px;
  padding-top: 60px;
}

/* --------------------------
   IMAGE CONTAINER
---------------------------*/
.product-image-container {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 6px;
}

/* PRODUCT IMAGE */
.product-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
}

/* HOVER ZOOM */
.product-image-container:hover .product-img {
  transform: scale(1.05);
}

/* --------------------------
   BADGE (DISCOUNT / NEW)
---------------------------*/
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e63946;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  font-weight: 600;
  z-index: 3;
}

/* --------------------------
   CART ICON
---------------------------*/
.product-cart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
  box-shadow: 0 2px 7px rgba(0,0,0,.12);
  z-index: 3;
}

.product-cart-icon:hover {
  background: #000;
  color: #fff;
}

/* --------------------------
   QUICK VIEW BAR (BOTTOM)
---------------------------*/
.quickview-bar {
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  background: #0b7cbc;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: bottom .3s ease;
  z-index: 2;
}

/* SHOW ON HOVER */
.product-image-container:hover .quickview-bar {
  bottom: 0;
}

/* --------------------------
   CONTENT
---------------------------*/
.product-info {
  position: relative;
}

/* CATEGORY */
.product-category {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
}

/* TITLE */
.product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 3px 0;
}

.product-title a {
  text-decoration: none;
  color: #222;
}

.product-title a:hover {
  color: #0b7cbc;
}

/* --------------------------
   PRICE
---------------------------*/
.product-price {
  font-size: 16px;
  margin-top: 6px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 4px;
}

.new-price {
  font-weight: 700;
}

/* --------------------------
   WISHLIST BUTTON
---------------------------*/
.wishlist-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #bbb;
  transition: .2s;
}

.wishlist-btn:hover,
.wishlist-btn.active {
  color: red;
}

/* --------------------------
   QUICKVIEW MODAL (Minimal)
---------------------------*/
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.qv-modal {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 500px;
  max-width: 30%;
  position: relative;
}

.qv-close {
  background: transparent;
  border: none;
  font-size: 22px;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

.qv-img {
  width: 100%;
  margin-bottom: 15px;
}

.old {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
}

.new {
  font-weight: bold;
  font-size: 22px;
}

.qv-modal {
  transform: scale(0.95);
  opacity: 0;
  animation: pop .2s ease forwards;
}

@keyframes pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Disable theme JS resizing header */
#header.header-no-resize {
  height: auto !important;
  min-height: auto !important;
}

:root {
  --header-height: 172px; /* match your header height */
}

.main {
  padding-top: 86px !important;
}



@media (max-width: 768px) {
  .main {
    padding-top: 80px;
  }
}



