
.meatmaster-quickview-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.quickview-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.quickview-box {
  position: relative;
  background: #fff;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px 20px;
  z-index: 10002;
  border-radius: 6px;
  -webkit-overflow-scrolling: touch;
}

.quickview-close {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--accent);
    padding: 8px;
}

@media (min-width: 768px){
     .quickview-close {
        top: 10px;
        right: 10px;
    }   
}


.quickview-close:hover {
    fill: #ffffff;
}


.quickview-inner h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.quickview-inner .selected-price {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}
.quickview-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quickview-image-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.quickview-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

@media (min-width: 768px) {
  .quickview-layout {
    flex-direction: row;
    align-items: stretch; /* Force equal height columns */
    gap: 2rem;
  }

  .quickview-image {
    flex: 1 1 50%;
    display: flex;
  }

  .quickview-info {
    flex: 1 1 50%;
  }
  .quickview-inner h2 {
    font-size: 1.5rem;
    font-weight: 600;
    }
    .quickview-box {
      padding: 2rem;
    }

}
