/*
    DEMO STYLE
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

body {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
}

/* ===== NAVBAR HEADER REDESIGN ===== */

/* Enhanced navbar bar */
.navbar {
  padding: 10px 20px !important;
  background: #fff !important;
  border-bottom: 1px solid #eff0f6 !important;
  box-shadow: 0 2px 14px rgba(15, 52, 96, 0.07) !important;
}

/* Brand mark */
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.header-brand-logo {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.35);
}

.header-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.header-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f3460;
  letter-spacing: -0.3px;
}

/* ── Base header nav button ── */
.header-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.845rem;
  font-weight: 600;
  letter-spacing: 0.15px;
  transition: all 0.22s ease;
  cursor: pointer;
  text-decoration: none !important;
  line-height: 1;
  white-space: nowrap;
}

/* Contact — ghost / outline */
.header-btn-contact {
  background: transparent;
  border: 1.5px solid #a0aef5;
  color: #667eea !important;
}

.header-btn-contact svg {
  stroke: #667eea;
}

.header-btn-contact:hover {
  background: rgba(102, 126, 234, 0.08);
  border-color: #667eea;
  color: #667eea !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.18);
}

/* Favorites — soft red pill */
.header-btn-favorites {
  background: #fff5f5;
  border: 1.5px solid #ffd6d6;
  color: #e74c3c !important;
}

.header-btn-favorites:hover {
  background: #ffe4e4;
  border-color: #e74c3c;
  color: #e74c3c !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.18);
}

#favorites-count {
  background: #e74c3c;
  color: #fff;
  border-radius: 20px;
  padding: 2px 7px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 1px;
  line-height: 1.4;
}

/* Log Out — primary gradient */
.header-btn-logout {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.38);
}

.header-btn-logout:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(102, 126, 234, 0.48);
}

.header-btn-logout:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 18px 20px;
  background: #fff;
  border-top: 1px solid #eff0f6;
  font-size: 0.8rem;
  color: #aab0c4;
  font-weight: 400;
  letter-spacing: 0.1px;
}

.site-footer a {
  color: #667eea !important;
  font-weight: 600;
  text-decoration: none !important;
}

.site-footer a:hover {
  color: #764ba2 !important;
}

.navbar {
  padding: 15px 10px;
  background: #fff;
  border: none;
  border-radius: 0;
  margin-bottom: 40px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
  perspective: 1500px;
}

#sidebar {
  min-width: 250px;
  max-width: 250px;
  background: #7386d5;
  color: #fff;
  transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  transform-origin: bottom left;
}

#sidebar.active {
  margin-left: -250px;
  transform: rotateY(100deg);
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #6d7fcc;
}

#sidebar ul.components {
  padding: 20px 0;
  border-bottom: 1px solid #47748b;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
}
#sidebar ul li a:hover {
  color: #7386d5;
  background: #fff;
}

#sidebar ul li.active > a,
a[aria-expanded="true"] {
  color: #fff;
  background: #6d7fcc;
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #6d7fcc;
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: #fff;
  color: #7386d5;
}

a.article,
a.article:hover {
  background: #6d7fcc !important;
  color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  width: 100%;
  padding: 20px;
  min-height: 100vh;
  transition: all 0.3s;
}

#sidebarCollapse {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  cursor: pointer;
}

#sidebarCollapse span {
  width: 80%;
  height: 2px;
  margin: 0 auto;
  display: block;
  background: #555;
  transition: all 0.8s cubic-bezier(0.81, -0.33, 0.345, 1.375);
  transition-delay: 0.2s;
}

#sidebarCollapse span:first-of-type {
  transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
  opacity: 0;
}
#sidebarCollapse span:last-of-type {
  transform: rotate(-45deg) translate(1px, -1px);
}

#sidebarCollapse.active span {
  transform: none;
  opacity: 1;
  margin: 5px auto;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
    transform: rotateY(90deg);
  }
  #sidebar.active {
    margin-left: 0;
    transform: none;
  }
  #sidebarCollapse span:first-of-type,
  #sidebarCollapse span:nth-of-type(2),
  #sidebarCollapse span:last-of-type {
    transform: none;
    opacity: 1;
    margin: 5px auto;
  }
  #sidebarCollapse.active span {
    margin: 0 auto;
  }
  #sidebarCollapse.active span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
  }
  #sidebarCollapse.active span:nth-of-type(2) {
    opacity: 0;
  }
  #sidebarCollapse.active span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
  }
}

/* ===================================================
    MODERN SHIPPING FORM REDESIGN
=================================================== */

/* Main Container */
.shipping-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Progress Steps */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.progress-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.progress-step.active .progress-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.progress-step span {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-step.active span {
  color: #333;
}

.progress-line {
  flex: 1;
  height: 3px;
  background: #e0e0e0;
  margin: 0 20px;
  position: relative;
  top: -25px;
}

/* Form Wrapper */
.shipping-form-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.form-header {
  margin-bottom: 40px;
  text-align: center;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.form-subtitle {
  font-size: 15px;
  color: #999;
  margin: 0;
}

/* Modern Form */
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Form Sections */
.form-section {
  padding: 30px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.form-section:hover {
  background: #fafbfc;
  border-color: #d1d5db;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

/* Form Rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  margin: 0;
}

.form-group-half {
  grid-column: span 1;
}

.form-group-full {
  grid-column: 1 / -1;
}

/* Labels */
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.label-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.required-badge {
  color: #ef4444;
  font-weight: 700;
  font-size: 16px;
}

/* Input Wrappers */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #999;
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Modern Inputs */
.modern-input {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
}

.modern-input::placeholder {
  color: #b0b0b0;
}

.modern-input:focus {
  outline: none;
  border-color: #667eea;
  background: #f9fafb;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modern-input:hover {
  border-color: #d1d5db;
}

.select-wrapper .modern-input {
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: transparent;
  color: transparent;
  font-weight: 400;
  background-size: 12px 12px;
}

.select-wrapper .modern-input::placeholder {
  color: #b0b0b0;
}

.select-wrapper .modern-input option {
  color: #333;
  background-color: #fff;
  padding: 8px 10px;
  margin: 5px 0;
}

.select-wrapper .modern-input option:hover {
  background: #e3e7ff;
  color: #333;
}

.select-wrapper .modern-input option:checked {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-color: #667eea;
  color: white;
}

.select-wrapper .modern-input option:first-child {
  color: #b0b0b0;
}

/* Input Help Text */
.input-help-text {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

/* Order Summary */
.order-summary {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 1px solid #e5e7eb;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
}

.summary-label {
  color: #666;
  font-weight: 500;
}

.summary-value {
  color: #1a1a1a;
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: #d1d5db;
  margin: 15px 0;
}

.summary-item.total {
  padding: 15px 0;
  border-top: 2px solid #d1d5db;
}

.summary-item.total .summary-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.summary-item.total .summary-value {
  font-size: 18px;
  color: #667eea;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit {
  flex: 1;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-back-to-products {
  flex: 1;
  background: #fff;
  color: #667eea;
  border: 2px solid #667eea;
  box-shadow: none;
}

.btn-back-to-products:hover {
  background: #f0f2ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.18);
}

.btn-back-to-products:active {
  transform: translateY(0);
}

.btn-secondary {
  flex: 1;
  background: #f0f0f0;
  color: #333;
  border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
  background: #e8e8e8;
  border-color: #d0d0d0;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
  gap: 20px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 13px;
  font-weight: 500;
}

.trust-badge i {
  font-size: 20px;
  color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
  .shipping-container {
    margin: 20px auto;
  }

  .checkout-progress {
    margin-bottom: 30px;
  }

  .progress-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .progress-line {
    margin: 0 10px;
    top: -20px;
  }

  .progress-step span {
    font-size: 11px;
  }

  .shipping-form-wrapper {
    padding: 25px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-section {
    padding: 20px;
  }

  .section-title {
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }

  .trust-badge {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .shipping-container {
    padding: 0 15px;
  }

  .shipping-form-wrapper {
    padding: 20px;
    border-radius: 12px;
  }

  .form-title {
    font-size: 20px;
  }

  .form-section {
    padding: 15px;
  }

  .modern-input {
    padding: 12px 14px 12px 40px;
    font-size: 16px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}
/* ===== ORDER CONFIRMATION PAGE ===== */
.confirmation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
  animation: fadeInBg 0.6s ease;
}

@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.confirmation-content {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  text-align: center;
  animation: slideUpIn 0.5s ease;
}

@keyframes slideUpIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  margin-bottom: 30px;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: block;
}

.success-circle {
  stroke: #4CAF50;
  stroke-width: 2;
  stroke-linecap: round;
  animation: drawCircle 0.6s ease-in-out forwards;
}

.success-check {
  stroke: #4CAF50;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: drawCheck 0.6s ease-in-out 0.3s forwards;
}

@keyframes drawCircle {
  from {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
  }
  to {
    stroke-dasharray: 166;
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  from {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
  }
  to {
    stroke-dasharray: 48;
    stroke-dashoffset: 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.confirmation-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.confirmation-subtitle {
  font-size: 16px;
  color: #999;
  margin: 0 0 40px 0;
  font-weight: 400;
}

.order-details-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
}

.detail-label {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
  text-align: right;
  flex: 1;
  padding-left: 20px;
}

.detail-value.address {
  font-weight: 500;
  word-break: break-word;
}

.detail-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0;
}

.status-message {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.status-message i {
  font-size: 24px;
  flex-shrink: 0;
}

.status-message p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.confirmation-actions {
  margin-bottom: 25px;
}

.confirmation-actions .btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.confirmation-actions .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.confirmation-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.support-info {
  font-size: 13px;
  color: #999;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.support-info p {
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 600px) {
  .confirmation-content {
    padding: 40px 25px;
  }
  
  .confirmation-title {
    font-size: 24px;
  }
  
  .success-icon i {
    font-size: 60px;
  }
  
  .order-details-card {
    padding: 20px;
  }
  
  .detail-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .detail-value {
    margin-top: 5px;
    text-align: left;
    padding-left: 0;
  }
}

/* ===== PAYMENT OPTIONS STYLES ===== */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option-label {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.payment-option-label:hover {
  border-color: #667eea;
  background: #f8f9ff;
}

.payment-radio {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: #667eea;
  flex-shrink: 0;
}

.payment-option-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d3748;
}

.payment-option-text i {
  font-size: 1.1rem;
  color: #667eea;
}

.payment-option-label input[type="radio"]:checked + .payment-option-text {
  color: #667eea;
  font-weight: 600;
}

.payment-option-label input[type="radio"]:checked ~ * {
  color: #667eea;
}

.payment-option-label input[type="radio"]:checked {
  accent-color: #667eea;
}

.payment-option-label:has(input[type="radio"]:checked) {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.04) 100%);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

/* ===== VOUCHER SECTION STYLES ===== */
.voucher-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.voucher-input-group .form-control {
  flex: 1;
  margin: 0 !important;
}

.btn-voucher {
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-voucher:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
}

.btn-voucher:active {
  transform: translateY(0);
}

.btn-voucher:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.voucher-message {
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
  align-items: center;
  gap: 6px;
}

.voucher-message.success {
  color: #38a169;
  display: flex;
}

.voucher-message.error {
  color: #e74c3c;
  display: flex;
}

.voucher-message i {
  flex-shrink: 0;
}

.helper-text {
  display: block;
  font-size: 0.8rem;
  color: #667eea;
  font-weight: 500;
  margin-top: 4px;
}