/* ============================================================
   SABREEZZ PRICING - SIMPLE & CLEAN
   ============================================================ */

#sabreezz-pricing-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2d3748;
}

.sabreezz-category {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0 8px 0;
  color: #000000;
  border-bottom: 2px solid #E00000;
  margin-bottom: 6px;
}

.sabreezz-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin: 6px 0;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid #edf2f7;
}

.sabreezz-item:hover {
  background: #f7fafc;
  border-color: #E00000;
  transform: translateX(4px);
}

.sabreezz-item.sabreezz-quote {
  background: #fff5f5;
  border-color: #fed7d7;
}

.sabreezz-item.sabreezz-quote:hover {
  background: #fff0f0;
}

.sabreezz-text {
  font-size: 15px;
  font-weight: 500;
  color: #2d3748;
  flex: 1;
  padding-right: 10px;
}

.sabreezz-cost {
  font-size: 15px;
  font-weight: 600;
  color: #E00000;
  background: #fff5f5;
  padding: 3px 14px;
  border-radius: 16px;
  margin-right: 12px;
  white-space: nowrap;
  min-width: 60px;
  text-align: center;
}

.sabreezz-btn {
  background: #E00000;
  color: #ffffff;
  border: none;
  padding: 8px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.sabreezz-btn:hover {
  background: #c40014;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(250, 0, 25, 0.25);
}

.sabreezz-item.sabreezz-selected {
  border-color: #E00000;
  background: #fff5f5;
}

#sabreezz-preview {
  position: fixed;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 999999;
  pointer-events: none;
  border: 2px solid #E00000;
}

#sabreezz-preview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.sabreezz-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #E00000;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  z-index: 1000000;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(250, 0, 25, 0.30);
  animation: sabreezzSlide 0.4s ease;
  display: none;
}

@keyframes sabreezzSlide {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
  #sabreezz-pricing-wrapper { padding: 10px 5px; }
  
  .sabreezz-item {
    flex-wrap: wrap;
    padding: 12px 14px;
    gap: 8px;
  }
  
  .sabreezz-text {
    font-size: 14px;
    width: 100%;
    order: 1;
    padding-right: 0;
  }
  
  .sabreezz-cost {
    order: 2;
    margin-right: 0;
  }
  
  .sabreezz-btn {
    order: 3;
    width: 100%;
    padding: 10px;
  }
  
  #sabreezz-preview img { width: 80px; height: 80px; }
  
  .sabreezz-notification {
    bottom: 15px;
    right: 15px;
    left: 15px;
    text-align: center;
  }
}