/**
 * Metro Life RP - Estilos de Bienes Raíces
 * Copyright (c) 2025 Metro Life Studios. Desarrollado por Mercurio & Melman.
 * Todos los derechos reservados.
 * 
 * Este código fuente es propiedad exclusiva de Metro Life Studios.
 * Queda estrictamente prohibida su reproducción, distribución, modificación
 * o uso no autorizado, total o parcial, sin consentimiento expreso por escrito.
 * 
 * El uso indebido de este material está sujeto a acciones legales conforme
 * a la legislación vigente sobre propiedad intelectual y derechos de autor.
 */

:root {
  --bg-dark: #050b14;
  --bg-panel: #0f172a;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;

  /* Real Estate Colors */
  --color-primary: #8b5cf6;
  /* Purple */
  --color-secondary: #06b6d4;
  /* Cyan */
  --color-accent: #f59e0b;
  /* Gold */
  --color-success: #10b981;
  /* Emerald */

  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-shine: rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  top: -20%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 60%);
  animation: pulseGlow 10s infinite ease-in-out;
  pointer-events: none;
  z-index: -2;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}

.logo,
.hamburger {
  pointer-events: auto;
}

.logo {
  text-decoration: none;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 4px;
  display: flex;
  gap: 5px;
}

.logo-text {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.logo-accent {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary);
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.hamburger:hover span {
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

/* =========================================
   MAIN CONTAINER
   ========================================= */
.properties-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 120px 30px 60px;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.page-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 1px;
}

/* Stats */
.header-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.stat-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

.stat-number {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   FILTERS
   ========================================= */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filters-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(0, 0, 0, 0.4);
}

.price-filter,
.sort-filter {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.price-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  white-space: nowrap;
}

.price-select {
  padding: 0.8rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.price-select option {
  background: #0f1115;
  /* Dark background for dropdown options */
  color: var(--text-primary);
}

.main-filters {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-title {
  font-size: 12px;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 700;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.location-btn,
.type-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.location-btn:hover,
.type-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.location-btn.active {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.type-btn.active {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* =========================================
   PROPERTIES GRID
   ========================================= */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.no-results-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
  opacity: 0.5;
}

/* =========================================
   PROPERTY CARD
   ========================================= */
.property-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Image */
.property-image-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
  filter: brightness(0.8);
}

.property-card:hover .property-image {
  transform: scale(1.1);
  filter: brightness(1);
}

.property-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.location-badge,
.type-badge {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.location-badge {
  background: rgba(6, 182, 212, 0.8);
  color: #fff;
}

.type-badge {
  background: rgba(139, 92, 246, 0.8);
  color: #fff;
}

.premium-badge {
  background: rgba(245, 158, 11, 0.9) !important;
  color: #000 !important;
}

/* Card Content */
.property-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.property-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.property-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.4;
}

.property-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.property-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.detail-icon {
  font-size: 14px;
  opacity: 0.7;
}

.detail-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.detail-label {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.property-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.property-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.property-btn:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* =========================================
   SIDE MENU (Identical to Jobs)
   ========================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 190;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: var(--bg-panel);
  border-left: 1px solid var(--glass-border);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  right: 0;
}

.side-menu-header {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.side-menu-logo {
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 18px;
}

.close-menu {
  background: transparent;
  border: 1px solid var(--glass-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.close-menu:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: rotate(90deg);
}

.close-icon::before,
.close-icon::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.close-icon::before {
  transform: rotate(45deg);
}

.close-icon::after {
  transform: rotate(-45deg);
}

.side-menu-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.side-title {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-left: 2px solid var(--color-secondary);
  padding-left: 10px;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.side-link:hover,
.side-link.active {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--color-secondary);
  transform: translateX(5px);
}

.side-link.active {
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.link-icon {
  font-size: 20px;
}

.link-text {
  font-weight: 600;
  font-size: 14px;
}

.link-arrow {
  margin-left: auto;
  opacity: 0;
  transition: 0.3s;
  color: var(--color-secondary);
}

.side-link:hover .link-arrow,
.side-link.active .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.side-menu-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer-text {
  color: var(--text-muted);
  font-size: 11px;
}

/* =========================================
   MODAL
   ========================================= */
.property-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.6);
}

.property-modal.active {
  display: flex;
  animation: fadeIn 0.3s;
}

.modal-content {
  background: #0f172a;
  border: 1px solid var(--glass-border);
  width: 90%;
  max-width: 1100px;
  height: 90vh;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  display: flex;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.9);
  animation: modalZoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: 0.3s;
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-body {
  display: flex;
  width: 100%;
  height: 100%;
}

.modal-left {
  flex: 0 0 60%;
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
}

.modal-image-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Gallery Navigation */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 5;
  transition: 0.3s;
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Gallery Thumbnails */
.modal-gallery {
  height: 100px;
  background: #000;
  display: flex;
  padding: 10px;
  gap: 10px;
  overflow-x: auto;
  border-top: 1px solid var(--glass-border);
}

.gallery-thumb {
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
  border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-primary);
}

.modal-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.modal-price-box {
  position: absolute;
  bottom: 110px;
  /* Adjusted property-gallery height + padding */
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 5;
}

.price-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.price-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.modal-right {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.modal-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  margin-bottom: 30px;
}

.modal-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-icon {
  font-size: 20px;
  color: var(--color-primary);
  background: rgba(139, 92, 246, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.detail-value {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: 0.3s;
}

.features-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateX(5px);
}

.features-list li i {
  color: var(--color-success);
}

.btn-purchase {
  margin-top: auto;
  width: 100%;
  padding: 20px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-purchase:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.5);
}

/* Scrollbar styles for modal */
.modal-gallery::-webkit-scrollbar {
  height: 6px;
}

.modal-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.modal-right::-webkit-scrollbar {
  width: 6px;
}

.modal-right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* Animations */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modal-right>* {
  animation: fadeInRight 0.5s ease backwards;
}

.modal-right>*:nth-child(1) {
  animation-delay: 0.1s;
}

.modal-right>*:nth-child(2) {
  animation-delay: 0.2s;
}

.modal-right>*:nth-child(3) {
  animation-delay: 0.3s;
}

.modal-right>*:nth-child(4) {
  animation-delay: 0.4s;
}

.modal-right>*:nth-child(5) {
  animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 900px) {
  .modal-content {
    flex-direction: column;
    height: 100%;
    width: 100%;
    border-radius: 0;
  }

  .modal-left {
    flex: 0 0 40%;
  }

  .modal-right {
    flex: 1;
  }

  .modal-price-box {
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
  }

  .price-value {
    font-size: 20px;
  }
}