:root {
    --bhagwa: #ff9500;
    --bhagwa-dark: #ff7700;
    --bhagwa-light: #fff5f2;
    --success: #10b981;
    --danger: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --header-height: 70px;
    --footer-height: 80px;
    --drawer-width: 480px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-rating i {
    color: #ffc107;  /* Bootstrap warning yellow */
    font-size: 16px;
}

.star-rating i.far.fa-star {
    color: #d1d5db;  /* Gray for empty stars */
}
.text-bhagwa {
  color: var(--bhagwa) !important;
}

.bg-bhagwa {
  background-color: var(--bhagwa) !important;
}

.mahakalpayment-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mahakalpayment-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  background: linear-gradient(135deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
  color: white;
  padding: 16px;
  position: relative;
}

.drawer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.checkout-steps {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  background: white;
  border-bottom: 1px solid var(--gray-100);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step-item.completed:not(:last-child)::after {
  background: var(--success);
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.step-item.active .step-circle {
  background: var(--bhagwa);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.step-item.completed .step-circle {
  background: var(--success);
  color: white;
}

.step-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
}

.step-item.active .step-label {
  color: var(--bhagwa);
  font-weight: 600;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  background: var(--gray-50);
  display: flex;          
  flex-direction: column; 
}

.step-content {
  display: none;
  padding: 10px;
  animation: slideInRight 0.4s ease;
}

.step-content.active {
  display: block !important;;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-icon {
    width: 64px;
    height: 64px;
    /* Bhagwa theme ke hisab se soft gradient */
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, rgba(255, 119, 0, 0.2) 100%);
    color: var(--bhagwa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    /* Optional: Thoda animation professional look ke liye */
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-send-otp {
  background: linear-gradient(135deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-cancel {
  background: linear-gradient(135deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-send-otp:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-send-otp:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.otp-section {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--gray-200);
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.otp-box {
  width: 48px;
  height: 56px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.otp-box:focus {
  border-color: var(--bhagwa);
  outline: none;
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.timer-text {
  color: var(--gray-600);
  font-size: 14px;
  margin-top: 12px;
}

.resend-btn {
  color: var(--bhagwa);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.resend-btn:disabled {
  color: var(--gray-400);
  cursor: not-allowed;
}

.user-profile-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.user-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.user-details h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.user-details p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

.change-user-btn {
  margin-left: auto;
  color: var(--bhagwa);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}

.change-user-btn:hover {
  background: #fff5f2;
}

.address-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.address-section-title h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
}

.add-address-btn {
  color: var(--bhagwa);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.address-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.address-card:hover {
  border-color: var(--bhagwa);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.address-card.selected {
  border-color: var(--bhagwa);
  background: #fff5f2;
}

.address-card.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: var(--bhagwa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.address-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 1px 6px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.badge-home {
  background: #dbeafe;
  color: #1e40af;
}

.badge-permanent {
  background: #fce7f3;
  color: #9d174d;
}

.badge-other {
  background: #d1fae5;
  color: #065f46;
}

.address-text {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}

.address-name {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1px;
}

.address-actions {
  display: flex;
  gap: 1px;
  margin-top: 1px;
  padding-top: 1px;
  border-top: 1px solid var(--gray-100);
}

.address-btn {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-edit {
  background: var(--gray-100);
  color: var(--gray-600);
}

.btn-edit:hover {
  background: var(--gray-200);
}

.btn-delete {
  background: #fee2e2;
  color: #dc2626;
}

.btn-delete:hover {
  background: #fecaca;
}

.address-type-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.type-option {
  position: relative;
  flex: 1;
  min-width: 100px;
}

.type-option input {
  position: absolute;
  opacity: 0;
}

.type-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.type-option input:checked + .type-label {
  border-color: var(--bhagwa);
  background: #fff5f2;
}

.type-icon {
  width: 20px;
  height: 20px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

.type-option input:checked + .type-label .type-icon {
  background: var(--bhagwa);
  color: white;
}

.type-label span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}

.type-option input:checked + .type-label span {
  color: var(--bhagwa);
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.order-summary {
  background: white;
  border-radius: 16px;
  padding: 15px;
  margin-top: 20px;
  padding-bottom: 15px;
  border: 1px solid #ff7700;
  position: relative;
}

.summary-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}


.summary-row.total {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--gray-100);
  margin-top: -8rem;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  z-index: 1060;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 480px;
  margin-left: auto;
}
/* ===== MOBILE FIX FOR SUMMARY BUTTON ===== */
@media (max-width: 576px) {
  .summary-row.total {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    max-width: 100% !important;
    padding: 16px !important;
    z-index: 9999 !important;
    background: white !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15) !important;
  }
  
  /* Drawer body mein bottom padding do taaki button content na cover kare */
  .drawer-body {
    padding-bottom: 80px !important;
  }
}
/* Payment Gateway Buttons Styling */
.payment-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
}

.payment-btn-text {
    font-size: 14px;
}

.payment-btn-amount {
    font-size: 16px;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 6px;
}

.summary-row .price {
  font-weight: 600;
  color: var(--gray-800);
}

.summary-row.total .price {
  color: var(--bhagwa);
  font-size: 22px;
  font-weight: 800;
}

/* ===== Payment Trust Footer ===== */
.mahakalpayment-trust-footer {
  margin-top: 10px;
  padding: 20px 6px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ff7700;
  text-align: center;
}


.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.fallback-svg {
  width: 24px;
  height: 24px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  min-width: 70px;
}

.badge-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.badge-icon svg {
  width: 55px;
  height: 55px;
}

.badge-secured {
  position: relative;
}

.secured-tag {
  position: absolute;
  top: -16px;
  right: -40px;
  background: #6366f1;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 4px;
  line-height: 1;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.badge-title {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
}

.badge-sub {
  font-size: 9px;
  color: #9ca3af;
  font-weight: 500;
}

.terms-text {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
}

.terms-link {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
}

.terms-link:hover {
  text-decoration: underline;
  color: #4338ca;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .mahakalpayment-trust-footer {
    padding: 16px 12px 12px;
    margin-bottom: 4rem;
  }

  .trust-badges {
    gap: 16px;
  }

  .badge-item {
    min-width: 60px;
  }
}

.drawer-footer {
  background: white;
  padding: 4px;
  border-top: 1px solid var(--gray-100);
}
.btn-place-order {
  width: 100%;
  background: linear-gradient(135deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;          /* ✅ Shimmer ko andar rakhne ke liye */
}
/* ✨ Shimmer Wave Effect */
.btn-place-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;               /* Start from left outside */
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.15) 100%
        );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;   
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

.btn-place-order:disabled::before {
  animation: none;
}
.btn-content {
  position: relative;
  z-index: 1;
}

.secure-text {
  text-align: center;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-in {
  animation: fadeIn 0.4s ease;
}

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

.name-input-section {
  margin-top: 16px;
  text-align: left;
}

.btn-continue {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: none;
}

.btn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

@media (max-width: 576px) {
  .mahakalpayment-drawer {
    max-width: 100%;
  }

  .checkout-steps {
    padding: 16px 12px;
  }

  .step-label {
    font-size: 11px;
  }



  .btn-send-otp {
    width: 100%;
  }

  .address-type-selection {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .mahakalpayment-drawer {
    max-width: 420px;
  }
}

.drawer-body::-webkit-scrollbar {
  width: 6px;
}

.drawer-body::-webkit-scrollbar-track {
  background: transparent;
}

.drawer-body::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

/* ============================================
        FIXED HEADER
        ============================================ */

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #ff9500, #ff7700);
  padding: 8px 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

/* ============================================
        POWERED BY WITH ANIMATION
        ============================================ */
.powered-by {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.pulse-icon {
  color: #fff3e0;
  font-size: 11px;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 25px rgba(255, 200, 100, 0.6);
  }
}

.typewriter-text {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 2s steps(10) 1s 1 normal both;
  width: 0;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.cursor {
  display: inline-block;
  color: #fff3e0;
  font-weight: 100;
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.typewriter-text.loop .typing {
  animation: typing-loop 3s steps(10) infinite;
  width: 0;
}

@keyframes typing-loop {
  0% {
    width: 0;
  }
  40% {
    width: 100%;
  }
  60% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

/* ====================== LOGO===================== */
.logo-link {
  display: block;
  text-decoration: none;
  line-height: 1;
  animation: fade-in-up 0.8s ease 2s both;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================  RIGHT SIDE: ACTIONS  =============== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fade-in-up 0.6s ease 2.2s both;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  animation: slide-in-right 0.5s ease 2.4s both;
}

.user-info i {
  font-size: 18px;
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: #ff7700;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slide-in-right 0.5s ease 2.4s both;
}

.btn-login:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-login i {
  font-size: 16px;
  transition: transform 0.3s;
}

.btn-login:hover i {
  transform: rotate(360deg);
}

/* ============================================ MOBILE RESPONSIVE============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .logo-img {
    height: 42px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .fixed-header {
    padding: 6px 15px;
  }

  .header-content {
    min-height: 55px;
  }

  .logo-section {
    gap: 2px;
  }

  .powered-by {
    font-size: 9px;
    gap: 4px;
  }

  .pulse-icon {
    font-size: 10px;
  }

  .typing {
    animation-duration: 1.5s;
  }

  .logo-link {
    animation-delay: 1.5s;
  }

  .logo-img {
    height: 38px;
    max-width: 160px;
  }

  .header-actions {
    animation-delay: 1.7s;
  }

  .user-info {
    font-size: 12px;
    padding: 6px 12px;
  }

  .user-info i {
    font-size: 16px;
  }

  .btn-login {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .powered-by {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .pulse-icon {
    font-size: 9px;
  }

  .cursor {
    font-size: 10px;
  }

  .logo-img {
    height: 34px;
    max-width: 140px;
  }

  .btn-login span {
    display: none;
  }

  .btn-login {
    padding: 10px;
    border-radius: 25px;
    animation: fade-in-up 0.5s ease 1.7s both;
  }
}

/* Mobile Small (up to 360px) */
@media (max-width: 360px) {
  .logo-img {
    height: 30px;
    max-width: 120px;
  }
  .delivery-card,
  .order-summary-card,
  .trust-footer {
    padding: 12px;
  }
  .trust-badges {
      gap: 10px;
  }

  .trust-badge {
      min-width: 60px;
  }
}
.product-slider {
  margin-top: 3rem !important;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff; 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

}

.slider-image {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: contain; 
  object-position: center;
  display: block;
  border-radius: 12px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.slider-nav:hover {
  background: #fff;
}

/* Thumbnails */
.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumb-img:hover {
  transform: scale(1.05);
}

.thumb-img.active-thumb {
  border-color: #f97316;
  opacity: 1 !important;
  transform: scale(1.05);
}

.thumb-img.opacity-70 {
  opacity: 0.7;
}

/* Color Buttons - MERGED  */
.color-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.color-btn:hover {
  transform: scale(1.15);
}

.color-btn.active {
  border-color: var(--bhagwa);
  transform: scale(1.1);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--bhagwa);
}

.color-btn.active::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.attribute-btn {
  padding: 10px 20px;
  border: 2px solid var(--gray-200);
  background: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.attribute-btn.active {
  border-color: var(--bhagwa);
  background: #fff5f2;
  color: var(--bhagwa);
  font-weight: 600;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gray-50);
  cursor: pointer;
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-weight: 600;
}

/* ===== Fixed Footer Base ===== */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 10rem;
}

/* ===== Price Section ===== */
.footer-price-section {
  flex-shrink: 0;
}

.footer-label {
  margin: 0;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.4;
}

.footer-amount {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--bhagwa, #ea580c);
  line-height: 1.2;
}

.price-mobile .footer-amount {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ea580c !important;
}

/* ===== PLACE ORDER BUTTON (Fixed) ===== */
.fixed-footer .btn-place-order {
  background: linear-gradient(135deg, #ff9500 0%, #ff7700 50%, #eb7c15 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fixed-footer .btn-place-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 102, 6, 0.4);
  background: linear-gradient(135deg, #ff9500 0%, #ff7700 50%, #eb7c15 100%); 
}

.fixed-footer .btn-place-order:active {
  transform: translateY(0);
}

/* Button Inner Content */
.btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
}

.btn-main-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-sub-text {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  white-space: nowrap;
}

/* Payment Icons */
.btn-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 8px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.payment-icon.paytm {
  background: #00baf2;
  color: white;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.payment-icon.upi {
  background: #ff6600;
  color: white;
  font-size: 16px;
}

.payment-icon.gpay {
  background:white;
  color:  rgb(21, 7, 219);
  padding: 16px;
}

/* Arrow Icon */
.btn-arrow {
  font-size: 14px;
  opacity: 0.8;
  flex-shrink: 0;
}
.footer-price-section .font-regular {
    font-size: 12px;
    color: #6b7280;
}



/* ===== RESPONSIVE (Same Design, Scale Adjustments Only) ===== */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 10px;
    gap: 10px;
  }

  .fixed-footer .btn-place-order {
    padding: 8px 12px;
    min-width: auto;
    flex: 1;
  }

  .btn-main-text {
    font-size: 20px;
  }

  .btn-sub-text {
    font-size: 12px;
  }

  .payment-icon {
    width: 50px;
    height: 60px;
    font-size: 18px;
  }

  .footer-amount {
    font-size: 16px;
  }
}

/* ===== MOBILE FOOTER FIX - Updated ===== */
@media (max-width: 480px) {
  .footer-container {
    padding: 8px 10px !important;
    gap: 8px !important;
  }

  .price-mobile .footer-amount {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ea580c !important;
  }

  .price-mobile .footer-label {
    font-size: 11px !important;
    color: #6b7280 !important;
    margin-bottom: 2px !important;
  }

  .fixed-footer .btn-place-order {
    padding: 10px 12px !important;
    border-radius: 10px !important;
    min-width: auto !important;
    flex: 1 !important;
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 50%, #eb7c15 100%) !important;
  }

  .btn-main-text {
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
  }

  .btn-sub-text {
    font-size: 10px !important;
    font-weight: 500 !important;
    opacity: 0.95 !important;
  }

  .btn-icons {
    gap: 4px !important;
    margin-left: 4px !important;
  }

  .payment-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .payment-icon.paytm {
    background: #00baf2 !important;
    color: white !important;
    font-size: 8px !important;
    letter-spacing: -0.5px !important;
  }

  .payment-icon.upi {
    background: #ff6600 !important;
    color: white !important;
    font-size: 9px !important;
  }

  .payment-icon.gpay {
    background: white !important;
    padding: 2px !important;
    color:  rgb(21, 7, 219);
    border-radius: 50% !important;
  }

  .btn-arrow {
    font-size: 14px !important;
    margin-left: 2px !important;
  }

  .btn-content {
    gap: 6px !important;
  }

  .btn-text-group {
    gap: 1px !important;
  }
}

/* ===== Extra Small Mobile (below 360px) ===== */
@media (max-width: 360px) {
  .price-mobile .footer-amount {
    font-size: 20px !important;
  }

  .btn-main-text {
    font-size: 14px !important;
  }

  .btn-sub-text {
    font-size: 9px !important;
  }

  .payment-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 8px !important;
  }
}

/* Tablet specific - same design, slightly more padding */
@media (min-width: 769px) and (max-width: 1024px) {
  .fixed-footer .btn-place-order {
    padding: 12px 20px;
    min-width: 260px;
  }

  .btn-main-text {
    font-size: 15px;
  }

  .btn-sub-text {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .slider-image {
    height: 300px;
  }
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.user-found-badge {
  background: #d1fae5;
  color: #065f46;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.user-found-badge.show {
  display: flex;
}

#same-day-delivery-error {
  display: inline-block;
  background-color: #ffdddd;
  color: #b30000;
  border: 1px solid #ffaaaa;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  animation: blink 1.5s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* ========================== TABS SECTION CSS - ADD THESE STYLES =============== */

.tabs-wrapper {
  position: relative;
}

.custom-nav-tabs {
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  gap: 8px;
  background: transparent;
}

.custom-nav-tabs .nav-link {
  border: none;
  color: #64748b;
  font-weight: 600;
  padding: 14px 28px;
  position: relative;
  background: transparent;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
}

.custom-nav-tabs .nav-link:hover {
  color: #FF6600;
  background: #fff7ed;
}

.custom-nav-tabs .nav-link.active {
  color: #FF6600;
  background: white;
}

.custom-nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #FF6600;
  border-radius: 3px 3px 0 0;
}

/* Tab Content */
.custom-tab-content {
  background: white;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 300px;
}

@media (max-width: 768px) {
  .tabs-wrapper {
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    background: #f8fafc;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .custom-nav-tabs {
    position: relative;
    background: white;
    border-radius: 12px 12px 0 0;
    border-bottom: 2px solid #e2e8f0;
    padding: 5px 5px 0 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .custom-nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .custom-nav-tabs .nav-link {
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px 8px 0 0;
  }

  .custom-nav-tabs .nav-link.active::after {
    height: 3px;
    bottom: 0;
  }

  .custom-tab-content {
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  }

  .review-card {
    min-width: 300px;
    padding: 16px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .custom-nav-tabs .nav-link {
    padding: 10px 16px;
    font-size: 13px;
  }

  .custom-nav-tabs .nav-link i {
    display: none;
  }
  .trust-badges {
      gap: 14px;
  }

  .trust-badge-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
  }

  .trust-badge-title {
      font-size: 11px;
  }

  .trust-badge-sub {
      font-size: 9px;
  }
}

/* =====================  REVIEWS SLIDER CSS  ===================== */
.reviews-container {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 16px;
}
.star-rating .fas.fa-star {
    color: #ffc107 !important;  /* Yellow/Gold */
}

.star-rating .far.fa-star {
    color: #d1d5db !important;  /* Gray empty */
}
.review-card {
    min-width: 350px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .review-card {
    min-width: 280px;
  }
}

/* Rating Bars */
.rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.rating-label {
  width: 100px;
  font-size: 13px;
  color: #64748b;
  text-transform: capitalize;
}

.rating-progress {
  flex: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 12px;
}

.rating-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-count {
  width: 30px;
  text-align: right;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state img {
  max-width: 150px;
  opacity: 0.5;
  margin-bottom: 20px;
}

/* Specifications Table */
.specs-table {
  width: 100%;
}

.specs-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 16px;
  vertical-align: middle;
}

.specs-table td:first-child {
  width: 35%;
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
}

.specs-table td:last-child {
  color: #6b7280;
}

@media (max-width: 768px) {
  .specs-table td:first-child {
    width: 45%;
    font-size: 14px;
  }

  .specs-table td:last-child {
    font-size: 14px;
  }
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
/* Fixed bottom button */
.btn-continue {
    width: 100%;
    background: linear-gradient(135deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;          
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-continue:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.address-footer-fixed {
    position: sticky; 
    bottom: 0;
    left: 0;
    right: 0;
    /* background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1); */
    padding: 12px 16px;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-top: auto; 
    border-top: 1px solid var(--gray-100);
}

/* Desktop drawer ke andar hi rahe */
@media (min-width: 577px) {
    .address-footer-fixed {
        position: sticky;
        bottom: 0;
        max-width: 100%;
        left: auto;
        transform: none;
    }
}
/* Loading state */
.loading-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23ff9500' stroke-width='3' fill='none' stroke-dasharray='31.4 31.4' transform='rotate(-90 12 12)'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='1s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px !important;
    color: #9ca3af !important;
    font-style: italic;
}

/* OR simple text loader */
.loading-input::placeholder {
    color: #ff9500;
}
/* Sirf address form ke buttons ke liye */
.address-form-actions-wrapper {
    display: flex; 
    gap: 10px;
}

/* Jab screen 576px se choti ho (Mobile) */
@media (max-width: 576px) {
    .address-form-actions-wrapper {
        flex-direction: column !important; /* Buttons ek ke niche ek aayenge */
        gap: 0;
    }
    
    .address-form-actions-wrapper .btn-send-otp, 
    .address-form-actions-wrapper .btn-cancel {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
}

/* Spinner ka gap thik karne ke liye */
.ms-2 {
    margin-left: 0.5rem;
}
/* Shimmer Animation */
.shimmer-effect {
    position: relative;
    overflow: hidden;
    border: none !important; 
}

.shimmer-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    /* Chamakdar safed patti (Shimmer) */
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    animation: move-shimmer 1.5s infinite;
}

/* Shimmer Animation Logic */
@keyframes move-shimmer {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}
/* Delivery Address Card */
.delivery-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    transition: var(--transition);
}

.delivery-card:hover {
    border-color: var(--bhagwa);
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.08);
}

.delivery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px dashed var(--gray-200);
}

.delivery-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-title i {
    color: var(--bhagwa);
    font-size: 16px;
}

.change-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--bhagwa);
    background: var(--bhagwa-light);
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.change-btn:hover {
    background: var(--bhagwa);
    color: white;
    transform: translateY(-1px);
}

.delivery-content {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray-600);
}

.delivery-content strong {
    color: var(--gray-800);
    font-weight: 600;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dbeafe;
    color: #1e40af;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

 /* ============================================
           TRUST BADGES FOOTER
           ============================================ */
.trust-footer {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-top: 4px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 4px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.trust-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}

.trust-badge-icon.secure {
    background: #e0e7ff;
    color: #4f46e5;
}

.trust-badge-icon.verified {
    background: #d1fae5;
    color: #059669;
}

.trust-badge-icon.pci {
    background: #fef3c7;
    color: #d97706;
}

.trust-badge-tag {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #4f46e5;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 1;
}

.trust-badge-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
}

.trust-badge-sub {
    font-size: 10px;
    color: var(--gray-500);
    text-align: center;
    font-weight: 500;
}

.trust-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0 0 12px 0;
}

.terms-text {
    font-size: 11px;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.6;
}

.terms-text a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    text-decoration: underline;
}
/* ============================================
           ORDER SUMMARY
           ============================================ */
        .order-summary-card {
            background: var(--white);
            border: 2px solid var(--bhagwa);
            border-radius: var(--radius-lg);
            padding: 20px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .order-summary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--bhagwa) 0%, var(--bhagwa-dark) 100%);
        }

        .summary-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-800);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .summary-title i {
            color: var(--bhagwa);
            font-size: 18px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            font-size: 14px;
            border-bottom: 1px solid var(--gray-100);
        }

        .summary-row:last-child {
            border-bottom: none;
        }

        .summary-label {
            color: var(--gray-600);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .summary-label i {
            font-size: 12px;
            color: var(--gray-400);
        }

        .summary-value {
            font-weight: 600;
            color: var(--gray-800);
        }

        .summary-value.discount {
            color: var(--success);
        }

        .summary-value.tax {
            color: var(--gray-600);
        }

        .summary-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--gray-300) 50%, transparent 100%);
            margin: 12px 0;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0 0 0;
            margin-top: 4px;
            border-top: 2px solid var(--gray-200);
        }

        .total-label {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-800);
        }

        .total-amount {
            font-size: 22px;
            font-weight: 800;
            color: var(--bhagwa);
            letter-spacing: -0.5px;
        }

        .total-amount small {
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-500);
            display: block;
            text-align: right;
            margin-top: 2px;
        }
