/* Base Styles */
:root {
  --primary: #35c3d0;
  --primary-light: #eef2ff;
  --primary-dark: #00a7b7;
  --accent: #ec4899;
  --text: #1f2937;
  --text-light: #6b7280;
  --background: #ffffff;
  --muted: #f3f4f6;
  --border: #e5e7eb;
  --error: #ef4444;
  --success: #10b981;
  --card: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.5;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-light);
}

/* Header & Navigation */
/* Header */
.site-header {
  padding: 1rem 0;
  background-color: var(--background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: var(--text);
  font-weight: 700;
  font-size: 1.5rem;
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-left: 1.5rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}


/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(92, 198, 208, 0.9), rgba(30, 188, 203, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  text-decoration: none;
}

.btn-white {
  background-color: white;
  color: var(--primary);
}

.btn-white:hover {
  background-color: #f9fafb;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card.featured {
  border: 1px solid rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.service-card-tag {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 0.25rem 0;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.featured .service-card-icon {
  background-color: var(--primary-light);
  color: var(--primary);
}

.service-card-icon:not(.featured) {
  background-color: var(--muted);
  color: var(--text);
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card-description {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card-price {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  padding: 1.5rem;
  padding-top: 0;
}

/* How It Works */
.how-it-works {
  background-color: var(--muted);
  padding: 4rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.step-connector {
  position: absolute;
  top: 2rem;
  left: 100%;
  width: calc(100% - 4rem);
  height: 0.125rem;
  background-color: rgba(99, 102, 241, 0.3);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--text-light);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  height: 100%;
}

.review-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.star {
  color: #f59e0b;
}

.review-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  overflow: hidden;
}

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

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-weight: 600;
}

.review-author-service {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-light);
  padding: 4rem 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
footer {
  background-color: var(--text);
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Order Process */
.order-process {
  padding: 2rem 0;
}

.order-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.order-steps::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
}

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

.order-step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
}

.order-step.active .order-step-number {
  background-color: var(--primary);
  color: white;
}

.order-step.completed .order-step-number {
  background-color: var(--success);
  color: white;
}

.order-step.completed .order-step-number i,
.order-step.active .order-step-number i {
  color: white;
}

.order-step-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
}

.order-step-content {
  display: none;
}

.order-step-content.active {
  display: block;
}

.order-card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  font-size: 1rem;
  min-height: 100px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.form-control.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Order Item */
.order-item {
  background-color: var(--muted);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.order-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.order-item-title {
  font-weight: 600;
}

.order-item-remove {
  color: var(--error);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.order-item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Photo upload and preview styles */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.photo-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Square aspect ratio */
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  overflow: hidden;
}

.photo-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the image covers the area without distortion */
  object-position: center;
}

.photo-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 100%; /* Square aspect ratio */
  background-color: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
}

.photo-add-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #6b7280;
}

.photo-add p {
  position: absolute;
  top: calc(50% + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.photo-remove {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  z-index: 10;
}

.photo-remove:hover {
  background-color: rgba(220, 38, 38, 0.8);
}

/* Calendar */
.calendar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--primary-light);
}

.calendar-title {
  font-weight: 600;
  color: var(--primary);
}

.calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.calendar-nav-btn:hover {
  background-color: rgba(99, 102, 241, 0.1);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-day-header {
  text-align: center;
  padding: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  margin: 0.25rem;
  font-size: 0.875rem;
}

.calendar-day:hover:not(.disabled) {
  background-color: var(--muted);
}

.calendar-day.today {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.calendar-day.selected {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
}

.calendar-day.disabled {
  color: var(--border);
  cursor: not-allowed;
}

/* Time Slots */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.time-slot {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--muted);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.time-slot:hover {
  background-color: var(--primary-light);
}

.time-slot.selected {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
}

/* Order Summary */
.summary-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-item-title {
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Order Confirmation */
.confirmation {
  text-align: center;
  padding: 4rem 0;
}

.confirmation-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
}

.confirmation-card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin: 2rem 0;
}

.confirmation-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.confirmation-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.confirmation-section-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.confirmation-order-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.confirmation-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Order Tracking */
.tracking-card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.tracking-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tracking-status-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.tracking-progress {
  height: 0.5rem;
  background-color: var(--muted);
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.tracking-progress-bar {
  height: 100%;
  border-radius: 9999px;
}

.tracking-timeline {
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
}

.timeline-line {
  width: 2px;
  height: 2.5rem;
  background-color: var(--border);
  margin-top: 0.25rem;
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-weight: 600;
}

.timeline-date {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-info {
  background-color: var(--primary-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--primary);
}

.contact-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Responsive Styles */
@media (max-width: 768px) {

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }

  .main-nav.active ul {
    flex-direction: column;
  }

  .main-nav.active li {
    margin: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
  }

  .main-nav.active li:last-child {
    border-bottom: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .order-steps {
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .order-step {
    min-width: 80px;
  }

  .order-item-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--background);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 400px;
  }

  .confirmation-buttons {
    flex-direction: column;
  }
}


/* Payment Styles for The Mobile Tailor */

/* Payment Method Tabs */
.payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.payment-tab {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  background-color: var(--muted);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border: none;
}

.payment-tab:hover {
  background-color: var(--primary-light);
}

.payment-tab.active {
  background-color: var(--primary);
  color: white;
}

.payment-tab i {
  font-size: 1rem;
}

/* Payment Content */
.payment-content-container {
  margin-top: 1.5rem;
}

.payment-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.payment-content.active {
  display: block;
}

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

/* Payment Amount Display */
.payment-amount-display {
  background-color: var(--muted);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.payment-amount {
  color: var(--primary);
}

/* Payment Success Message */
.payment-success-message {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-success-message i {
  font-size: 1.25rem;
}

/* Payment Error Message */
.payment-error {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.payment-error-message {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-error-message i {
  font-size: 1.25rem;
}

/* Payment Processing Message */
.payment-processing-message {
  background-color: var(--primary-light);
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.payment-processing-message i {
  font-size: 1.25rem;
}

/* Card Payment Form */
#card-element {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  transition: border-color 0.2s ease;
}

#card-element.StripeElement--focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(53, 195, 208, 0.2);
}

#card-element.StripeElement--invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* PayPal Button Container */
#paypal-button-container {
  margin: 1.5rem 0;
}

/* Google Pay Button Container */
#google-pay-button-container {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

/* Payment Summary */
.payment-summary {
  background-color: var(--muted);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.payment-summary h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.payment-summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* Payment Method Icons */
.payment-method-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Disabled Button State */
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

/* Payment Notice */
.payment-notice {
  background-color: var(--muted);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Responsive Payment Styles */
@media (max-width: 768px) {
  .payment-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.75rem;
  }
  
  .payment-tab {
    flex: 0 0 auto;
  }
}

@media (max-width: 576px) {
  .payment-tab span {
    display: none;
  }
  
  .payment-tab i {
    margin-right: 0;
  }
  
  .payment-tab {
    padding: 0.75rem;
  }
}

/* Payment Details Styles */
.payment-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.payment-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.payment-detail-value {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-status {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.payment-completed {
  background-color: #e6f7e6;
  color: #2e7d32;
}

.payment-pending {
  background-color: #fff8e1;
  color: #f57c00;
}

.payment-failed {
  background-color: #ffebee;
  color: #c62828;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payment-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .payment-detail-value {
    margin-left: 0.5rem;
  }
}