/* Favorites */
.movie-card-wrapper {
  position: relative;
  display: inline-block;
}

.movie-card-favorite {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 15;
}

.favorite-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.favorite-toggle:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.15);
}

.favorite-toggle:focus-visible {
  outline: 2px solid #f6c700;
  outline-offset: 2px;
}

.favorite-toggle--active:hover {
  background: rgba(0, 0, 0, 0.85);
}

.favorite-toggle svg {
  display: block;
}

.movie-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.movie-show-favorite .favorite-toggle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.movie-show-favorite .favorite-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.movie-show-favorite .favorite-toggle svg {
  width: 24px;
  height: 24px;
}

.favorites-row-title {
  color: #f6c700 !important;
}

.favorites-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 199, 0, 0.06);
  border: 1px dashed rgba(246, 199, 0, 0.3);
}

.favorites-cta-card:hover {
  background: rgba(246, 199, 0, 0.12);
  border-color: rgba(246, 199, 0, 0.5);
}

.favorites-cta-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.favorites-cta-card-text {
  font-size: 0.85rem;
  color: #b3b3b3;
  line-height: 1.3;
}

.recaptcha-notice {
  font-size: 0.72rem;
  color: #888;
  text-align: center;
  margin-top: 0.75rem;
}
.recaptcha-notice a { color: #aaa; }

/* Store pages — clear fixed header */
.store-page {
  padding: 56px 1rem 2rem;
}

.cart-item__image {
  background: #f3f4f6;
}

@media (max-width: 480px) {
  .store-page {
    padding: 50px 1rem 2rem;
  }

  .cart-item {
    align-items: flex-start !important;
    flex-wrap: wrap;
  }

  .cart-item__image {
    width: 84px !important;
    height: 84px !important;
  }

  .cart-item__details {
    flex: 1 1 calc(100% - 100px) !important;
  }

  .cart-item__controls {
    margin-left: 100px;
  }

  .cart-item__subtotal {
    margin-left: auto;
  }
}

