/* ===== AUTH MODAL STYLES ===== */
.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.auth-modal.active {
  display: flex;
}

.auth-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 43, 86, 0.85);
  backdrop-filter: blur(12px);
}

.auth-modal-content {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  width: 90%;
  max-width: 440px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(26, 43, 86, 0.2), 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 2;
  animation: slideUp 0.3s ease;
}

.address-modal-content {
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
}

.address-modal-content::-webkit-scrollbar {
  width: 6px;
}

.address-modal-content::-webkit-scrollbar-track {
  background: #F8F9FA;
  border-radius: 10px;
}

.address-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #E94E77 0%, #F9A03F 100%);
  border-radius: 10px;
}

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

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F8F9FA;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: 300;
  line-height: 1;
  padding: 0;
}

.auth-modal-close:hover {
  background: #E94E77;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-modal-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.auth-modal-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #7C8BA1;
  margin: 0;
  font-weight: 400;
}

/* Floating Label Input */
.floating-input {
  position: relative;
  margin-bottom: 24px;
}

.floating-input input,
.floating-input textarea,
.floating-input select {
  width: 100%;
  padding: 16px 16px 8px 16px;
  background: #F8F9FA;
  border: 1.5px solid #E8EAED;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #1A2B56;
  transition: all 0.3s ease;
  outline: none;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.floating-input select {
  padding: 0 40px 0 16px;
  height: 48px;
  line-height: 48px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23E94E77" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.floating-input textarea {
  resize: vertical;
  min-height: 80px;
}

.floating-input input:focus,
.floating-input textarea:focus,
.floating-input select:focus {
  border-color: #E94E77;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(233, 78, 119, 0.08);
}

.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-input textarea:focus + label,
.floating-input textarea:not(:placeholder-shown) + label,
.floating-input select:focus + label,
.floating-input select:valid + label {
  top: 8px;
  font-size: 11px;
  color: #E94E77;
  font-weight: 600;
}

.floating-input label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #7C8BA1;
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

/* Auth Button */
.auth-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #E94E77 0%, #F9A03F 100%);
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(233, 78, 119, 0.25);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(233, 78, 119, 0.35);
}

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

.auth-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #999;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E0E0E0;
}

.auth-divider::before {
  margin-right: 12px;
}

.auth-divider::after {
  margin-left: 12px;
}

/* Social Login Buttons */
.social-login {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-btn {
  flex: 1;
  padding: 12px;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-btn:hover {
  border-color: #E94E77;
  background: #FFF5F7;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.auth-switch {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
}

.auth-switch a {
  color: #E94E77;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.auth-switch a:hover {
  color: #F9A03F;
}

/* Address Type Selection */
.address-type-section {
  margin: 24px 0;
}

.section-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A2B56;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.address-type-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.address-type-options input[type="radio"] {
  display: none;
}

.address-type-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
  background: #F8F9FA;
  border: 1.5px solid #E8EAED;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #5F6C7B;
}

.address-type-box svg {
  width: 28px;
  height: 28px;
  color: #7C8BA1;
  transition: all 0.3s ease;
}

.address-type-box:hover {
  background: #FFFFFF;
  border-color: #E94E77;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 78, 119, 0.12);
}

.address-type-box:hover svg {
  color: #E94E77;
}

.address-type-options input[type="radio"]:checked + .address-type-box {
  background: linear-gradient(135deg, #E94E77 0%, #F9A03F 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(233, 78, 119, 0.3);
}

.address-type-options input[type="radio"]:checked + .address-type-box svg {
  color: #FFFFFF;
}

/* Custom Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 1.5px solid #E8EAED;
  border-radius: 6px;
  background: #F8F9FA;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') center/contain no-repeat;
  transition: transform 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #E94E77 0%, #F9A03F 100%);
  border-color: #E94E77;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #5F6C7B;
  font-weight: 500;
}

.checkbox-label:hover .checkbox-custom {
  border-color: #E94E77;
}

/* ===== PROFILE PAGE STYLES ===== */
.profile-page {
  background: #FAFAFA;
  min-height: 80vh;
  padding: 40px 20px;
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

/* Profile Sidebar */
.profile-sidebar {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.profile-user-info {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid #E94E77;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 4px 0;
}

.profile-email {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #999;
  margin: 0;
}

.profile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s;
}

.profile-nav-link svg {
  width: 20px;
  height: 20px;
  color: #999;
  transition: color 0.3s;
}

.profile-nav-link:hover,
.profile-nav-link.active {
  background: #FFF5F7;
  color: #E94E77;
}

.profile-nav-link:hover svg,
.profile-nav-link.active svg {
  color: #E94E77;
}

.profile-nav-link.logout {
  margin-top: 12px;
  border-top: 1px solid #F0F0F0;
  padding-top: 16px;
}

.profile-nav-link.logout:hover {
  background: #FFEBEE;
  color: #C62828;
}

.profile-nav-link.logout:hover svg {
  color: #C62828;
}

/* Profile Content */
.profile-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  min-height: 500px;
}

.profile-tab {
  display: none;
}

.profile-tab.active {
  display: block;
}

.profile-section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0 0 24px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-add-address {
  padding: 10px 20px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-add-address:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 78, 119, 0.3);
}

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

.empty-state svg {
  width: 80px;
  height: 80px;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 8px 0;
}

.empty-state p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #999;
  margin: 0 0 24px 0;
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 78, 119, 0.3);
}

/* Booking Card */
.booking-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.booking-card:hover {
  border-color: #E94E77;
  box-shadow: 0 4px 12px rgba(233, 78, 119, 0.1);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.booking-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0;
}

.booking-status {
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-status.upcoming {
  background: #E3F2FD;
  color: #1565C0;
}

.booking-status.completed {
  background: #E8F5E9;
  color: #2E7D32;
}

.booking-status.cancelled {
  background: #FFEBEE;
  color: #C62828;
}

/* Progress Bar */
.progress-bar {
  margin: 20px 0;
}

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

.progress-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E0E0E0;
  z-index: 0;
}

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

.progress-step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #E0E0E0;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  transition: all 0.3s;
}

.progress-step.active .progress-step-circle {
  background: #E94E77;
  color: #FFFFFF;
}

.progress-step.completed .progress-step-circle {
  background: #2E7D32;
  color: #FFFFFF;
}

.progress-step-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #999;
}

/* Address Grid */
.addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.address-card {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.address-card:hover {
  border-color: #E94E77;
  box-shadow: 0 4px 16px rgba(233, 78, 119, 0.15);
  transform: translateY(-2px);
}

.address-card.default {
  border-color: #E94E77;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
}

.address-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #F8F9FA;
  border-bottom: 1px solid #E0E0E0;
}

.address-card.default .address-header {
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
}

.address-type-badge {
  padding: 4px 12px;
  background: #E94E77;
  color: #FFFFFF;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.address-card.default .address-type-badge {
  background: #FFFFFF;
  color: #E94E77;
}

.default-badge {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.address-body {
  padding: 16px;
  flex: 1;
}

.address-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 8px 0;
}

.address-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 6px 0;
}

.address-location {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0 0 8px 0;
}

.address-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #E94E77;
  font-weight: 500;
  margin: 0;
}

.address-footer {
  display: flex;
  gap: 0;
  border-top: 1px solid #E0E0E0;
}

.btn-edit,
.btn-delete {
  flex: 1;
  padding: 12px;
  background: #FFFFFF;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-edit {
  color: #1A2B56;
  border-right: 1px solid #E0E0E0;
}

.btn-edit:hover {
  background: #E3F2FD;
  color: #1565C0;
}

.btn-delete {
  color: #666;
}

.btn-delete:hover {
  background: #FFEBEE;
  color: #C62828;
}

.btn-edit svg,
.btn-delete svg {
  width: 16px;
  height: 16px;
}

.btn-edit:hover svg {
  color: #1565C0;
}

.btn-delete:hover svg {
  color: #C62828;
}

/* Rewards Card */
.rewards-card {
  background: linear-gradient(135deg, #E94E77 0%, #F9A03F 100%);
  border-radius: 20px;
  padding: 40px;
  color: #FFFFFF;
  text-align: center;
}

.rewards-points h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  opacity: 0.9;
}

.points-value {
  font-family: 'Quicksand', sans-serif;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rewards-points p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Settings Section */
.settings-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #F0F0F0;
}

.settings-section:last-child {
  border-bottom: none;
}

.settings-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 20px 0;
}

.profile-pic-upload {
  display: flex;
  align-items: center;
  gap: 24px;
}

.current-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E94E77;
}

.current-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-secondary {
  padding: 10px 24px;
  background: #FFFFFF;
  border: 2px solid #E94E77;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #E94E77;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #E94E77;
  color: #FFFFFF;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #F8F9FA;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #F9A03F;
  background: #FFFFFF;
}

.form-group input:disabled {
  background: #E0E0E0;
  cursor: not-allowed;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: #F8F9FA;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
  transition: all 0.3s;
  margin-bottom: 16px;
}

.form-input:focus {
  outline: none;
  border-color: #F9A03F;
  background: #FFFFFF;
}

/* Track Order */
.track-order-form {
  max-width: 500px;
  margin-bottom: 30px;
}

.tracking-result {
  margin-top: 30px;
}

/* Address Actions */
.address-card {
  position: relative;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .profile-sidebar {
    position: static;
  }
  
  .profile-content {
    padding: 24px;
  }
  
  .auth-modal {
    align-items: center;
    padding: 20px;
  }
  
  .auth-modal-content {
    width: 100%;
    max-width: 100%;
    padding: 32px 20px;
    border-radius: 20px;
    position: relative;
    animation: slideUpMobile 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
  }
  
  .address-modal-content {
    width: 100%;
    max-width: 100%;
    padding: 32px 20px;
    max-height: 80vh;
    border-radius: 20px;
    position: relative;
  }
  
  @keyframes slideUpMobile {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .auth-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  
  .auth-modal-title {
    font-size: 22px;
  }
  
  .auth-modal-subtitle {
    font-size: 13px;
  }
  
  .floating-input {
    margin-bottom: 16px;
  }
  
  .floating-input input,
  .floating-input textarea {
    font-size: 16px;
  }
  
  .auth-btn {
    padding: 14px;
    font-size: 15px;
  }
  
  .checkbox-label {
    font-size: 13px;
  }
  
  .checkbox-text {
    font-size: 13px;
  }
  
  .auth-switch {
    font-size: 13px;
  }
  
  .addresses-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-add-address {
    width: 100%;
  }
  
  .address-type-options {
    grid-template-columns: 1fr;
  }
  
  .address-type-box {
    padding: 16px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }
  
  .address-type-box svg {
    width: 24px;
    height: 24px;
  }
  
  .profile-pic-upload {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== OTP INPUT ===== */
.otp-input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 8px 0;
}

.otp-box {
  width: 52px;
  height: 56px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #1A2B56;
  background: #F8F9FA;
  border: 2px solid #E8EAED;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.otp-box:focus {
  border-color: #E94E77;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(233, 78, 119, 0.1);
}

@media (max-width: 400px) {
  .otp-box {
    width: 42px;
    height: 48px;
    font-size: 18px;
  }
}
