/* Tour Details Page Styling - Antigravity Theme */

/* General Styles */
.tour-details-wrapper {
  padding: 40px 0 80px;
  background: #f8fafc;
}

[data-theme="dark"] .tour-details-wrapper {
  background: #0b1329;
}

/* Breadcrumbs */
.tour-breadcrumbs {
  margin-bottom: 24px;
}

.tour-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.tour-breadcrumbs a:hover {
  color: var(--brand-teal, #00afa9);
}

.tour-breadcrumbs span {
  color: #94a3b8;
  margin: 0 8px;
  font-size: 13px;
}

.tour-breadcrumbs .current {
  color: #475569;
  font-weight: 600;
}

[data-theme="dark"] .tour-breadcrumbs .current {
  color: #cbd5e1;
}

/* Hero Title Section */
.tour-title-area {
  margin-bottom: 30px;
}

.tour-title {
  font-size: 32px;
  font-weight: 800;
  color: #001b44;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

[data-theme="dark"] .tour-title {
  color: #ffffff;
}

.tour-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.tour-meta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tour-rating-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
}

[data-theme="dark"] .tour-rating-inline {
  color: #ffffff;
}

.tour-rating-inline i {
  color: #ff9f43;
}

.tour-rating-inline span {
  color: #64748b;
  font-weight: 500;
}

.tour-location-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.tour-location-inline i {
  color: var(--brand-teal, #00afa9);
}

.tour-creator-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
}

[data-theme="dark"] .tour-creator-inline {
  color: #cbd5e1;
}

.tour-creator-inline img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--brand-teal, #00afa9);
}

/* Gallery Grid */
.tour-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-main-col {
  height: 440px;
  position: relative;
  overflow: hidden;
}

.gallery-side-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 440px;
}

.gallery-side-item {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.tour-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-gallery-grid img:hover {
  transform: scale(1.03);
}

/* Quick Info Badges */
.tour-quick-info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 27, 68, 0.02);
  margin-bottom: 40px;
}

[data-theme="dark"] .tour-quick-info-bar {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.06);
}

.quick-info-pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 175, 169, 0.08);
  color: var(--brand-teal, #00afa9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.quick-info-text .label {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  display: block;
}

.quick-info-text .val {
  font-size: 14.5px;
  font-weight: 700;
  color: #001b44;
}

[data-theme="dark"] .quick-info-text .val {
  color: #ffffff;
}

/* Sidebar Sticky Card */
.sticky-sidebar-wrapper {
  position: sticky;
  top: 100px;
}

.booking-sidebar-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 32, 0.06);
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 27, 68, 0.06);
}

[data-theme="dark"] .booking-sidebar-card {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.booking-card-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.booking-card-price .price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.booking-card-price .amount {
  font-size: 28px;
  font-weight: 850;
  color: #001b44;
}

[data-theme="dark"] .booking-card-price .amount {
  color: #ffffff;
}

.booking-card-price .unit {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.booking-card-price .private-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-teal, #00afa9);
  background: rgba(0, 175, 169, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}

.booking-form-item {
  margin-bottom: 18px;
}

.booking-label {
  font-size: 12px;
  font-weight: 700;
  color: #001b44;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

[data-theme="dark"] .booking-label {
  color: #ffffff;
}

.booking-input {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  padding: 0 16px;
  font-size: 14px;
  color: #1e293b;
  background: #ffffff;
  transition: border-color 0.25s ease;
}

.booking-input:focus {
  border-color: var(--brand-teal, #00afa9);
  outline: none;
}

.booking-submit-btn {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: var(--brand-teal, #00afa9);
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 800;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(0, 175, 169, 0.25);
  transition: all 0.3s ease;
}

.booking-submit-btn:hover {
  background: #00938e;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 175, 169, 0.35);
}

.booking-inquire-btn {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: transparent;
  color: var(--brand-teal, #00afa9);
  border: 2px solid var(--brand-teal, #00afa9);
  font-size: 14.5px;
  font-weight: 750;
  margin-top: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.booking-inquire-btn:hover {
  background: rgba(0, 175, 169, 0.05);
  color: #00938e;
  border-color: #00938e;
}

.booking-textarea {
  height: auto !important;
  min-height: 110px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.6;
}

.guarantee-icon-teal {
  color: var(--brand-teal, #00afa9) !important;
}

.booking-guarantees {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-theme="dark"] .booking-guarantees {
  border-color: rgba(255, 255, 255, 0.08);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

.guarantee-item i {
  font-size: 16px;
  color: #22c55e;
}

/* Sections General */
.tour-details-section {
  margin-bottom: 48px;
}

.tour-section-title {
  font-size: 20px;
  font-weight: 800;
  color: #001b44;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .tour-section-title {
  color: #ffffff;
}

.tour-section-title::after {
  content: "";
  height: 2px;
  background: var(--brand-teal, #00afa9);
  flex-grow: 1;
  opacity: 0.3;
}

.tour-section-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}

[data-theme="dark"] .tour-section-body {
  color: #94a3b8;
}

/* Itinerary Timeline */
.itinerary-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 24px;
}

.itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 4px,
    var(--brand-teal, #00afa9) 4px,
    var(--brand-teal, #00afa9) 8px
  );
  opacity: 0.5;
}

.itinerary-stop {
  position: relative;
  margin-bottom: 32px;
}

.itinerary-stop:last-child {
  margin-bottom: 0;
}

.stop-marker {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--brand-teal, #00afa9);
  box-shadow: 0 0 0 4px rgba(0, 175, 169, 0.15);
  z-index: 2;
  transition: all 0.3s ease;
}

[data-theme="dark"] .stop-marker {
  background: #0b1329;
}

.itinerary-stop:hover .stop-marker {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(0, 175, 169, 0.25);
}

.stop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 10px;
}

.stop-title-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stop-title-box .number {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-teal, #00afa9);
  background: rgba(0, 175, 169, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}

.stop-title-box .name {
  font-size: 16px;
  font-weight: 800;
  color: #001b44;
}

[data-theme="dark"] .stop-title-box .name {
  color: #ffffff;
}

.stop-duration {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
}

[data-theme="dark"] .stop-duration {
  background: #1e293b;
  color: #94a3b8;
}

.stop-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
}

[data-theme="dark"] .stop-desc {
  color: #94a3b8;
}

/* Inclusions & Exclusions Card */
.inc-exc-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 27, 68, 0.02);
  padding: 30px;
}

[data-theme="dark"] .inc-exc-card {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.06);
}

.checklist-title {
  font-size: 15px;
  font-weight: 800;
  color: #001b44;
  margin-bottom: 18px;
  text-transform: uppercase;
}

[data-theme="dark"] .checklist-title {
  color: #ffffff;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #475569;
}

[data-theme="dark"] .checklist li {
  color: #94a3b8;
}

.checklist.inc li i {
  color: #22c55e;
  font-size: 16px;
  margin-top: 2px;
}

.checklist.exc li i {
  color: #ef4444;
  font-size: 16px;
  margin-top: 2px;
}

/* Meet your Guide */
.guide-profile-card-horizontal {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 25px rgba(0, 27, 68, 0.02);
  padding: 30px;
}

[data-theme="dark"] .guide-profile-card-horizontal {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.06);
}

.guide-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.guide-card-header img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-teal, #00afa9);
}

.guide-card-meta .name {
  font-size: 18px;
  font-weight: 850;
  color: #001b44;
  display: block;
}

[data-theme="dark"] .guide-card-meta .name {
  color: #ffffff;
}

.guide-card-meta .role {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
  display: block;
}

.guide-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.guide-tag {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
}

[data-theme="dark"] .guide-tag {
  background: #1e293b;
  color: #94a3b8;
}

.guide-actions-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.guide-contact-btn {
  background: transparent;
  color: var(--brand-teal, #00afa9);
  border: 1.5px solid var(--brand-teal, #00afa9);
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.guide-contact-btn:hover {
  background: rgba(0, 175, 169, 0.05);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .tour-title {
    font-size: 26px;
  }
  .tour-gallery-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gallery-main-col {
    height: 280px;
  }
  .gallery-side-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 160px;
    gap: 16px;
  }
  .gallery-side-item {
    height: 100%;
  }
  .tour-quick-info-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .sticky-sidebar-wrapper {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  .tour-title {
    font-size: 22px;
  }
  .gallery-side-col {
    display: none; /* Hide side photos on tiny mobile screens to save space */
  }
  .gallery-main-col {
    height: 200px;
  }
  .tour-quick-info-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stop-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .stop-duration {
    margin-left: 36px;
  }
  .inc-exc-card {
    padding: 20px;
  }
  .inc-exc-card .col-md-6 {
    margin-bottom: 24px;
  }
  .inc-exc-card .col-md-6:last-child {
    margin-bottom: 0;
  }
}

/* Reviews and Rating Section Styles - Premium Overhaul */
.reviews-summary-card {
  background: linear-gradient(135deg, #001b44 0%, #0b2545 100%);
  border-radius: 24px;
  padding: 35px;
  margin-bottom: 40px;
  color: #ffffff;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 27, 68, 0.15);
  position: relative;
  overflow: hidden;
}

/* Accent glow inside the summary card */
.reviews-summary-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 175, 169, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.rating-summary-number {
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  display: block;
  letter-spacing: -2px;
}

.rating-summary-stars {
  font-size: 22px;
  color: #ffb400;
  margin: 12px 0 8px;
}

.rating-summary-count {
  font-size: 13.5px;
  color: #94a3b8;
  font-weight: 500;
  display: block;
}

/* Progress bar breakdown styles */
.breakdown-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.breakdown-row:last-child {
  margin-bottom: 0;
}

.breakdown-label {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  width: 50px;
  flex-shrink: 0;
}

.breakdown-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  flex-grow: 1;
  overflow: hidden;
}

.breakdown-bar {
  height: 100%;
  background: linear-gradient(90deg, #00afa9 0%, #00e5db 100%);
  border-radius: 99px;
}

.breakdown-percentage {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  width: 35px;
  text-align: right;
  flex-shrink: 0;
}

/* Premium Review Cards */
.reviews-list-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-item-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 27, 68, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.review-item-card::after {
  content: "“";
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 72px;
  color: rgba(0, 0, 0, 0.03);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

[data-theme="dark"] .review-item-card::after {
  color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .review-item-card {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 27, 68, 0.05);
  border-color: rgba(0, 175, 169, 0.15);
}

[data-theme="dark"] .review-item-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 175, 169, 0.15) 0%, rgba(0, 175, 169, 0.05) 100%);
  color: var(--brand-teal, #00afa9);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: 2px solid rgba(0, 175, 169, 0.2);
}

.review-user-name {
  font-size: 15px;
  font-weight: 800;
  color: #001b44;
  display: block;
  letter-spacing: -0.2px;
}

[data-theme="dark"] .review-user-name {
  color: #ffffff;
}

.review-user-country {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
  display: block;
}

.review-meta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.review-stars {
  font-size: 13px;
  color: #ff9f43;
  letter-spacing: 1px;
}

.review-date {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.review-item-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  margin-bottom: 18px;
  padding-left: 8px;
  border-left: 2px solid rgba(0, 175, 169, 0.2);
}

[data-theme="dark"] .review-item-body {
  color: #cbd5e1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

[data-theme="dark"] .review-footer {
  border-color: rgba(255, 255, 255, 0.06);
}

.review-verified-badge {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Creator reply under a review */
.creator-reply-box {
  margin-top: 18px;
  padding: 16px 18px;
  background: #f8fafc;
  border-left: 3px solid var(--brand-teal, #00afa9);
  border-radius: 0 12px 12px 0;
}

[data-theme="dark"] .creator-reply-box {
  background: rgba(255, 255, 255, 0.04);
}

.creator-reply-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.creator-reply-from {
  font-size: 13px;
  font-weight: 750;
  color: #001b44;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

[data-theme="dark"] .creator-reply-from {
  color: #ffffff;
}

.creator-reply-from i {
  color: var(--brand-teal, #00afa9);
  font-size: 15px;
}

.creator-reply-role {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 5px;
  margin-left: 4px;
}

[data-theme="dark"] .creator-reply-role {
  background: #1e293b;
  color: #94a3b8;
}

.creator-reply-date {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 500;
}

.creator-reply-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

[data-theme="dark"] .creator-reply-text {
  color: #cbd5e1;
}

/* Empty reviews state */
.reviews-empty-state {
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  color: #64748b;
}

[data-theme="dark"] .reviews-empty-state {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.reviews-empty-state i {
  font-size: 36px;
  color: var(--brand-teal, #00afa9);
  display: block;
  margin-bottom: 10px;
}

.reviews-empty-state p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
}

/* Success alert */
.tour-alert-success {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
}

.tour-alert-success i {
  font-size: 18px;
}

/* Leave a Review form — matches booking card / page theme */
.leave-review-card {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 27, 68, 0.02);
}

[data-theme="dark"] .leave-review-card {
  background: #15202b;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.leave-review-title {
  font-size: 18px;
  font-weight: 800;
  color: #001b44;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .leave-review-title {
  color: #ffffff;
}

.leave-review-title i {
  color: var(--brand-teal, #00afa9);
  font-size: 20px;
}

.leave-review-actions {
  display: flex;
  justify-content: flex-end;
}

.leave-review-submit {
  width: auto;
  min-width: 220px;
  height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

@media (max-width: 575.98px) {
  .leave-review-actions {
    justify-content: stretch;
  }

  .leave-review-submit {
    width: 100%;
  }

  .leave-review-card {
    padding: 22px 18px;
  }
}
