/*---bedriftsportale---*/
.package-page {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  font-family: sans-serif;
}

.package-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ingress {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #444;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.product-tabs {
  font-family: sans-serif;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tab-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.product-card {
  flex: 1 1 calc(25% - 1rem);
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  min-width: 220px;
}

.product-card img.product-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-pricing .price,
.new-price {
  font-weight: bold;
  color: #d97706;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 0.5rem;
}

.cta-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}

.price-summary {
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: right;
  color: #111;
}
.price-summary strong {
  color: #000;
}

.cta-conversion-block {
  text-align: center;
  background: #ffffff;
  border:1px solid #eeeeee;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.cta-conversion-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.custom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-modal.hidden {
  display: none;
}

.custom-modal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.custom-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: left;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.product-summary-item span,
.product-summary-total span {
  font-size: 1rem;
}
.product-summary-total {
  font-size: 1.1rem;
  border-top: 2px solid #333;
}



.summary-wrapper {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.summary-wrapper span {
  font-size: 1rem;
}



#callback-modal .modal-content {
  text-align: center;
  padding-top: 2.5rem;
}
#callback-modal h2 {
  font-size: 1.4rem;
  margin-top: 0;
}

.btn-ring-me {
  width: 100%;
}

@media (min-width: 768px) {
  .btn-ring-me {
    width: auto;
    min-width: 180px;
  }
}