﻿.progress-steps {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-family: sans-serif;
}

.step {
  flex: 1;
  text-align: center;
  padding: 10px;
  position: relative;
  color: #888;
  border-bottom: 3px solid #ddd;
}

  .step.completed {
    color: #2d862d;
    border-color: #2d862d;
  }

  .step.active {
    color: #007acc;
    font-weight: bold;
    border-color: #007acc;
  }

.giftcard-scroll {
  display: flex;
  flex-wrap: nowrap; /* 🔒 Prevent wrapping to new line */
  overflow-x: auto; /* Enable horizontal scrolling */
  gap: 1rem; /* Space between cards */
  padding-bottom: 10px;
  scrollbar-width: thin; /* Firefox scrollbar */
}

  .giftcard-scroll::-webkit-scrollbar {
    height: 8px;
  }

  .giftcard-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
  }

.giftcard-image {
  flex: 0 0 auto;
  width: 300px; /* Adjust card width */
}

.giftcard-option {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

  .giftcard-option:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

.giftcard-image.selected .giftcard-option {
  border: 2px solid #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.5);
}

#presetAmounts .quick-amount.disabled {
  opacity: 0.5;
  pointer-events: none;
}


/*.giftcard-image {
  border: 3px solid #ccc;
  border-radius: 8px;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

  .giftcard-image.selected {
    border-color: #00aaff;*/ /* blue when selected */
  /*}

  .giftcard-image:hover {
    border-color: #007bff;
  }

.giftcard-option {
  display: block;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

  .giftcard-option input:checked + img,
  .giftcard-option input:checked ~ .card-body {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,.5);
  }*/

  /*      .giftcard-option:hover {
        border-color: #007bff;
      }*/

  /*.giftcard-option img {
    width: 100%;
    height: auto;
  }*/

.giftcard_minibasket {
  position: fixed;
  top: 60px; /* below your main header */
  right: 10px;
  width: 380px; /* slightly wider */
  max-height: 400px; /* total basket height */
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 9999;
}

.giftcard_minibasket-header {
  font-size: 1.25rem;
  color: #333;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and label */
  flex-shrink: 0; /* never shrink */
  border-bottom: 1px solid #ccc;
}

.basket-icon {
  position: relative;
}

.basket-count-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #dc3545; /* red badge */
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.basket-label {
  font-size: 1.2rem;
  font-weight: bold;
}

.basket-items {
  flex-grow: 1;
  overflow-y: auto; /* scroll items if too many */
  padding: 10px;
}

.giftcard_minibasket ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.giftcard_minibasket li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.basket-footer {
  flex-shrink: 0; /* never shrink */
  padding: 10px;
  border-top: 1px solid #ccc;
  background-color: #f8f9fa;
  font-weight: bold;
  text-align: right;
}

#pdfPreviewModal .modal-dialog {
  max-width: 70%;
  height: 90%;
}

#pdfPreviewModal .modal-body {
  overflow: auto;
  height: 80vh;
}

#presetAmounts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/*.quick-amount.active {
  background-color: #0d6efd;
  color: white;
}*/


