/* =========================
   QUICK VIEW MODAL - CLEAN & SIMPLE
========================= */

/* Apply Montserrat font */
.quick-view-modal,
.quick-view-modal * {
  font-family: 'Montserrat', sans-serif;
}

.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
}

.quick-view-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-view-container {
  background: #ffffff;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  position: relative;
  margin: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.quick-view-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  z-index: 10;
  transition: all 0.3s;
}

.quick-view-close:hover {
  background: #e11b22;
  color: #ffffff;
  transform: rotate(90deg);
}

.quick-view-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.quick-view-image {
  position: relative;
}

.quick-view-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.quick-view-info {
  display: flex;
  flex-direction: column;
}

.quick-view-title {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.quick-view-price {
  font-size: 22px;
  font-weight: 700;
  color: #e11b22;
  margin: 0 0 20px 0;
}

.quick-view-price del {
  color: #999999;
  font-size: 18px;
  margin-right: 10px;
}

.quick-view-price ins {
  text-decoration: none;
  color: #e11b22;
}

.quick-view-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 20px 0;
}

.quick-view-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.quick-view-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.quick-view-btn-primary {
  background: #e11b22;
  color: #ffffff;
}

.quick-view-btn-primary:hover {
  background: #c5001d;
}

.quick-view-btn-secondary {
  background: #ffffff;
  color: #333333;
  border: 2px solid #e5e5e5;
}

.quick-view-btn-secondary:hover {
  border-color: #333333;
  background: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
  .quick-view-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .quick-view-title {
    font-size: 20px;
  }
  
  .quick-view-actions {
    flex-direction: column;
  }
  
  .quick-view-btn {
    width: 100%;
  }
}
