.gift-card-selection {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.gift-card-item {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.gift-card-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gift-card-image {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.gift-card-image img {
  max-height: 150px;
  max-width: 100%;
  object-fit: contain;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

/* Order Progress Styles */
.order-progress {
  margin-bottom: 2rem;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
}

.progress-steps::before {
  content: '';
  position: absolute;
  height: 2px;
  background-color: #dee2e6;
  top: 15px;
  left: 5%;
  right: 5%;
  z-index: 1;
}

.progress-step {
  position: relative;
  text-align: center;
  z-index: 2;
  flex: 1;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
  color: #6c757d;
  margin-bottom: 8px;
  font-weight: bold;
}

.step-text {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}

.progress-step.active .step-icon {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  color: white;
}

.progress-step.active .step-text {
  color: var(--theme-primary);
  font-weight: bold;
}

.quantity-control .btn {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-control input {
  width: 60px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 8px;
}

.summary-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: bold;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 10px;
}

.bank-account-section {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.customer-info-section {
  border: 1px solid #e9f5ff;
  border-radius: 10px;
  padding: 20px;
  background-color: #f8fdff;
}

.customer-info-section .alert {
  border-left: 3px solid #0dcaf0;
  background-color: #f0f8ff;
}

.bank-account-info {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

/* 주문 완료 페이지 스타일 */
.recipient-info {
  background-color: #f0f7ff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.recipient-info .alert {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* 브랜드 탭 스타일 */
.nav-tabs {
  border-bottom: 2px solid var(--theme-primary-light);
  margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: #495057;
  font-weight: 500;
  margin-bottom: -2px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: transparent;
  color: var(--theme-primary);
}

.nav-tabs .nav-link.active {
  background-color: transparent;
  border-bottom: 3px solid var(--theme-primary);
  color: var(--theme-primary);
  font-weight: 600;
}

.brand-logo {
  height: 20px;
  width: auto;
  margin-right: 5px;
  vertical-align: text-bottom;
}

/* 브랜드별 스타일 */
.tab-pane[id^='brand-'] .gift-card-item {
  position: relative;
}

/* 신세계 상품권 스타일 */
.tab-pane[id='brand-2'] .gift-card-item {
  border-color: #2d8c3c;
}

/* 롯데 상품권 스타일 */
.tab-pane[id='brand-3'] .gift-card-item {
  border-color: #d12121;
}

/* 컬쳐랜드 상품권 스타일 */
.tab-pane[id='brand-4'] .gift-card-item {
  border-color: #1d31b4;
}
