@charset "UTF-8";
.inv360Favorites {
  padding: 60px 0;
}
.inv360Favorites__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}
@media (max-width: 768px) {
  .inv360Favorites__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.inv360Favorites__headerContent {
  flex: 1;
}
.inv360Favorites__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .inv360Favorites__title {
    font-size: 24px;
  }
}
.inv360Favorites__subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}
@media (max-width: 768px) {
  .inv360Favorites__clearAll {
    width: 100%;
  }
}
.inv360Favorites__content {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 640px) {
  .inv360Favorites__content {
    grid-template-columns: repeat(2, calc(50% - 8px));
  }
}
@media screen and (min-width: 1024px) {
  .inv360Favorites__content {
    grid-template-columns: repeat(4, calc(25% - 12px));
  }
}
.inv360Favorites__skeleton .grid-vehicles {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 640px) {
  .inv360Favorites__skeleton .grid-vehicles {
    grid-template-columns: repeat(2, calc(50% - 8px));
  }
}
@media screen and (min-width: 1024px) {
  .inv360Favorites__skeleton .grid-vehicles {
    grid-template-columns: repeat(4, calc(25% - 12px));
  }
}
.inv360Favorites__card {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.inv360Favorites__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.inv360Favorites__cardRemove {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.inv360Favorites__cardRemove svg {
  width: 16px;
  height: 16px;
  color: #ff4444;
}
.inv360Favorites__cardRemove:hover {
  background: #ff4444;
  transform: scale(1.1);
}
.inv360Favorites__cardRemove:hover svg {
  color: white;
}
.inv360Favorites__cardLink {
  display: block;
  text-decoration: none;
  color: inherit;
}
.inv360Favorites__cardImage {
  margin: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f5f5f5;
}
.inv360Favorites__cardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.inv360Favorites__card:hover .inv360Favorites__cardImage img {
  transform: scale(1.05);
}
.inv360Favorites__cardContent {
  padding: 16px;
}
.inv360Favorites__cardTitle {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.inv360Favorites__cardInfo {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}
.inv360Favorites__cardInfo span:not(:last-child):after {
  content: "•";
  margin-left: 12px;
}
.inv360Favorites__cardPrice {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
  margin: 0;
}
.inv360Favorites__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 40px 20px;
}
.inv360Favorites__emptyContent {
  text-align: center;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inv360Favorites__emptyIcon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #ddd;
}
.inv360Favorites__emptyTitle {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 32px 0 12px 0;
}
.inv360Favorites__emptySubtitle {
  font-size: 16px;
  color: #666;
  margin: 0 0 24px 0;
  line-height: 1.5;
}
.inv360Favorites__skeleton {
  padding: 0;
}
.inv360Favorites__skeleton .inv360VehicleCard--skeleton {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  animation: pulse 1.5s ease-in-out infinite;
}
.inv360Favorites__skeleton .inv360VehicleCard__content {
  padding: 16px;
}
.inv360Favorites__skeleton .inv360VehicleCard__skeletonImage {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}
.inv360Favorites__skeleton .inv360VehicleCard__skeletonTitle,
.inv360Favorites__skeleton .inv360VehicleCard__skeletonInfo,
.inv360Favorites__skeleton .inv360VehicleCard__skeletonPrice {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
  margin-bottom: 12px;
}
.inv360Favorites__skeleton .inv360VehicleCard__skeletonTitle {
  width: 80%;
  height: 20px;
}
.inv360Favorites__skeleton .inv360VehicleCard__skeletonInfo {
  width: 60%;
  height: 14px;
}
.inv360Favorites__skeleton .inv360VehicleCard__skeletonPrice {
  width: 40%;
  height: 18px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
#inv360EmailSubscriptionForm .btn-inv360,
#inv360EmailSubscriptionCardForm .btn-inv360 {
  width: 100%;
  height: 36px;
  border-radius: 4px;
  font-size: 14px;
}

.inv360EmailSubscriptionModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.inv360EmailSubscriptionModal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.inv360EmailSubscriptionModal__content {
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  overflow: hidden;
  background-color: var(--inv360-bg-color);
  transition: all 0.3s ease;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.inv360EmailSubscriptionModal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--inv360-text-color);
  transition: opacity 0.2s;
}

.inv360EmailSubscriptionModal__close:hover {
  opacity: 0.6;
}

.inv360EmailSubscriptionModal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
}

.inv360EmailSubscriptionModal__icon svg {
  width: 72px;
  height: 72px;
}

.inv360EmailSubscriptionModal__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
  color: var(--inv360-text-color);
}

.inv360EmailSubscriptionModal__description {
  font-size: 16px;
  color: var(--inv360-text-color);
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.inv360EmailSubscriptionModal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inv360EmailSubscriptionModal__input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.inv360EmailSubscriptionModal__input:focus {
  outline: none;
  border-color: #2563eb;
}

.inv360EmailSubscriptionModal__input::placeholder {
  color: #9ca3af;
}

.inv360EmailSubscriptionModal__error {
  color: #dc2626;
  font-size: 14px;
  text-align: left;
  margin-top: -8px;
}

.inv360EmailSubscriptionModal__button {
  width: 100%;
  padding: 14px 24px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.inv360EmailSubscriptionModal__button:hover {
  background: #1d4ed8;
}

.inv360EmailSubscriptionModal__button:active {
  transform: scale(0.98);
}

.inv360EmailSubscriptionModal__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .inv360EmailSubscriptionModal__title {
    font-size: 20px;
  }
}
.modalFavorite .inv360EmailSubscriptionModal__content {
  position: relative;
  border: none;
  max-width: 320px;
  height: auto;
  padding: 64px 32px;
}

/*# sourceMappingURL=styles.css.map */
