/**
 * Vehicle Details Page - Modern E-Commerce Product Design
 * Premium product showcase layout inspired by top e-commerce platforms
 */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

.vehicle-details-page {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.vehicle-details-page * {
  box-sizing: border-box;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ============================================
   PRODUCT SHOWCASE SECTION - E-COMMERCE STYLE
   ============================================ */

.product-showcase-section {
  background: #ffffff;
  padding: 3rem 0 4rem;
  border-bottom: 1px solid #e5e7eb;
}

.product-showcase-section .product-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Product Image Column */
.product-image-column {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
}

.product-image-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 500px;
  max-height: 700px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.product-main-image {
  width: 85%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  opacity: 0;
  filter: brightness(1.02) contrast(1.05) drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
  animation: productImageEntry 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes productImageEntry {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.product-image-main:hover .product-main-image {
  transform: scale(1.02);
  filter: brightness(1.03) contrast(1.08) drop-shadow(0 25px 60px rgba(0, 0, 0, 0.18));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 20;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
}

.offer-badge {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.image-fullscreen {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
  font-size: 1rem;
}

.image-fullscreen:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.product-gallery-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 15;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.gallery-nav-btn:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
}

.product-thumbnail {
  flex: 0 0 auto;
  width: 100px;
  height: 75px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  background: #f3f4f6;
}

.product-thumbnail.active {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.product-thumbnail:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Column */
.product-info-column {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-header {
  margin-bottom: 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #dc2626;
}

.breadcrumb span {
  color: #9ca3af;
}

.product-brand {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  word-wrap: break-word;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0.875rem 1.25rem;
  background: #fef3c7;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  width: fit-content;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 0.125rem;
  align-items: center;
}

.rating-stars .fa-star.filled,
.rating-stars .fa-star-half-alt.filled {
  color: #f59e0b;
}

.rating-stars .far.fa-star {
  color: #d1d5db;
}

.rating-value {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.125rem;
}

.review-count {
  color: #64748b;
  font-size: 0.9375rem;
}

/* Product Price Card */
.product-price-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-display {
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-current {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-original {
  font-size: 1.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}

.price-label {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-top: 0.5rem;
}

.availability-status {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.status-badge.available {
  background: rgba(220, 252, 231, 0.2);
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, 0.3);
}

.status-badge.unavailable {
  background: rgba(254, 226, 226, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(252, 165, 165, 0.3);
}

.status-badge i {
  font-size: 0.625rem;
}

/* Product Specs Grid */
.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.spec-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
  background: #ffffff;
}

.spec-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.spec-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.spec-label {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

.spec-value {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 700;
}

/* ============================================
   PRODUCT DETAILS SECTION
   ============================================ */

.product-details-section {
  padding: 3rem 0;
  background: #f8fafc;
  min-height: 200px;
}

.product-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-description-card,
.product-features-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: #dc2626;
  border-radius: 2px;
}

.description-text {
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  min-height: 60px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  padding: 0.875rem;
  border-radius: 8px;
  background: #f8fafc;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.features-list li:hover {
  background: #f1f5f9;
  transform: translateX(4px);
  color: #0f172a;
}

.features-list li i {
  color: #dc2626;
  font-size: 0.875rem;
}

/* ============================================
   BOOKING FORM SECTION - NEW SEPARATE SECTION
   ============================================ */

.booking-form-section {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.booking-form-wrapper-new {
  max-width: 800px;
  margin: 0 auto;
}

.booking-card-new-frame {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 2px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.booking-card-new-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
}

.booking-card-new-frame::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   OLD BOOKING CARD - INTEGRATED IN PRODUCT INFO
   ============================================ */

.product-booking-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 120px;
  margin-top: 1rem;
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 3px solid #e5e7eb;
  position: relative;
  z-index: 1;
}

.booking-card-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.availability-badge-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.availability-badge-small:not(.unavailable) {
  background: #dcfce7;
  color: #166534;
}

.availability-badge-small.unavailable {
  background: #fee2e2;
  color: #991b1b;
}

.availability-badge-small i {
  font-size: 0.75rem;
}

.booking-card-sticky {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #1f2937;
  font-size: 0.875rem;
}

.booking-form label i {
  color: #dc2626;
  font-size: 0.9375rem;
  width: 16px;
}

.booking-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1f2937;
}

.booking-form input:hover {
  border-color: #9ca3af;
}

.booking-form input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.date-input-wrapper {
  position: relative;
  background: #fafbfc;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.date-input-wrapper:hover {
  background: #ffffff;
  border-color: #9ca3af;
}

.date-input-wrapper:focus-within {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.booking-form input[type="datetime-local"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  color: #2d3748;
}

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

.booking-summary {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  margin-top: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: #475569;
}

.summary-row:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid #dc2626;
  border-bottom: none;
}

.summary-row.total span:last-child {
  color: #dc2626;
  font-size: 1.5rem;
}

.btn-book-now {
  width: 100%;
  padding: 1.125rem 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn-book-now:hover:not(:disabled) {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.btn-book-now:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.booking-note {
  text-align: center;
  color: #64748b;
  font-size: 0.8125rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.booking-note i {
  color: #dc2626;
}

/* ============================================
   SIMILAR VEHICLES
   ============================================ */

.similar-vehicles {
  padding: 4rem 0;
  background: #f8fafc;
}

.similar-vehicles h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.vehicle-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vehicle-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.vehicle-card__body {
  padding: 1.5rem;
}

.vehicle-card__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.vehicle-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.vehicle-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
}

.vehicle-card__price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

.btn-outline {
  padding: 0.625rem 1.25rem;
  border: 2px solid #000000;
  border-radius: 8px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #000000;
  color: white;
}

/* ============================================
   IMAGE MODAL
   ============================================ */

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

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

.image-modal img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 10000;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .product-showcase-section {
    gap: 3rem;
  }

  .booking-layout {
    grid-template-columns: 1fr 450px;
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .product-container {
    padding: 0 1.5rem;
  }

  .product-showcase-section .product-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-showcase-section {
    padding: 2rem 0 3rem;
  }

  .product-booking-card {
    position: static;
  }

  .product-image-column {
    position: static;
  }

  .product-image-main {
    min-height: 400px;
    max-height: 550px;
  }

  .product-main-image {
    width: 80%;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-form-wrapper {
    position: static;
  }

  .product-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-showcase-section {
    padding: 1.5rem 0 2.5rem;
  }

  .product-image-main {
    min-height: 350px;
    max-height: 450px;
    border-radius: 16px;
  }

  .product-main-image {
    width: 85%;
  }

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

  .product-price-card {
    padding: 1.5rem;
  }

  .price-current {
    font-size: 2.5rem;
  }

  .product-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .spec-card {
    padding: 1rem;
  }

  .spec-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .product-details-section {
    padding: 2rem 0;
  }

  .product-description-card,
  .product-features-card {
    padding: 1.5rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

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

  .booking-form-section {
    padding: 2.5rem 0;
  }

  .booking-card-new-frame {
    padding: 1.75rem;
    border-radius: 16px;
  }

  .booking-card-header h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-container {
    padding: 0 1rem;
  }

  .product-image-main {
    min-height: 280px;
    max-height: 380px;
    border-radius: 12px;
    margin-bottom: 0.75rem;
  }

  .product-main-image {
    width: 90%;
  }

  .product-title {
    font-size: 1.75rem;
  }

  .product-price-card {
    padding: 1.25rem;
  }

  .price-current {
    font-size: 2rem;
  }

  .product-specs-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-section {
    padding: 2rem 0;
  }

  .booking-card-new-frame {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .booking-card-header h3 {
    font-size: 1.25rem;
  }
}

.badge-text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.gallery-indicator {
  display: none;
}
