/* 📝 PRODUCT DETAILS & QUICK RESERVATION DRAWER */
.sheet-overlay {
  display: none; /* Rejtve alapértelmezetten */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10003;
}

.sheet-overlay.open {
  display: block;
}

.bottom-sheet {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 10004;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  color: #1f2937;
  visibility: hidden;
  box-sizing: border-box;
}

.bottom-sheet.open {
  right: 0;
  visibility: visible;
}

.sheet-subtitle {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

.technical-specs {
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 16px;
}

.technical-specs h4 {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 12px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  color: #9ca3af;
  font-weight: 500;
}

.spec-value {
  color: #1f2937;
  font-weight: 600;
  word-break: break-all;
}

/* Teljes sor lefedettség a leírásnak */
.specs-grid .spec-item-full {
  grid-column: span 2;
}

/* Árkiemelés */
.spec-value.spec-price {
  font-size: 16px;
  font-weight: 700;
  color: #10b981;
}

/* 🔢 QUANTITY STEPPER - DESKTOP CHECKOUT STYLE (STATIC LIGHT THEME ONLY) */
.table-qty-group {
  display: flex !important;
  align-items: center !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  background: #fff !important;
  width: 110px !important;
  height: 34px !important;
  box-sizing: border-box;
}

.table-qty-group .input-group-btn {
  width: 35px !important;
  height: 32px !important;
  flex-shrink: 0;
}

.table-qty-group .input-group-btn button {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border: none !important;
  background: #eee !important;
  color: #333 !important;
  font-size: 14px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s !important;
  outline: none;
}

.table-qty-group .input-group-btn button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.table-qty-group .input-group-btn button:hover {
  background: #ddd !important;
}

.table-qty-group .js-qty-value {
  width: 40px !important;
  height: 32px !important;
  flex-shrink: 0;
  border: none !important;
  border-left: 1px solid #ccc !important;
  border-right: 1px solid #ccc !important;
  padding: 0 !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: bold !important;
  background: transparent !important;
  color: #333 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
}
