html, body {
  width: 100%;
  height: 100%;
  font-smoothing: antialiased !important;
  -webkit-font-smoothing: antialiased !important;
  margin: 0;
  padding: 0;
}

.creator-profile {
  width: 100%;
  padding-bottom: 2rem;
}

.creator-cover {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.creator-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-content {
  display: flex;
  width: 100%;
  gap: 2rem;
  position: relative;
  margin-top: -75px;
  z-index: 1;
}

.creator-left {
  width: 30%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.creator-left .creator-avatar {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.creator-left .creator-name {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.creator-left .creator-username {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.creator-left .creator-bio {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.creator-left .creator-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.creator-left .creator-social .social-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 0.375rem;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s;
}
.creator-left .creator-social .social-link.instagram {
  background-color: #E4405F;
  color: white;
  border: 1px solid #E4405F;
}
.creator-left .creator-social .social-link.instagram:hover {
  background-color: #C13584;
  border-color: #C13584;
  color: white;
}
.creator-left .creator-social .social-link.twitter {
  background-color: #1DA1F2;
  color: white;
  border: 1px solid #1DA1F2;
}
.creator-left .creator-social .social-link.twitter:hover {
  background-color: #0d8bd9;
  border-color: #0d8bd9;
  color: white;
}

.creator-right {
  width: 70%;
  flex-grow: 1;
}

.wishlist-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  margin-top: 100px;
  color: #212529;
}

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

.wishlist-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  background: white;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.wishlist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wishlist-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f8f9fa;
}
.wishlist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wishlist-card-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212529;
  line-height: 1.4;
}

.wishlist-card-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 1rem;
}

.wishlist-card-button {
  margin-top: auto;
  padding: 0.5rem 1rem;
  background-color: #6f42c1;
  color: white;
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.wishlist-card-button:hover:not(:disabled) {
  background-color: #5a32a3;
  color: white;
}
.wishlist-card-button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.wishlist-empty {
  color: #6c757d;
  font-style: italic;
  padding: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .creator-content {
    flex-direction: column;
    margin-top: -50px;
  }

  .creator-left,
  .creator-right {
    width: 100%;
  }

  .creator-left {
    align-items: center;
  }

  .creator-left .creator-avatar {
    max-width: 100px;
    align-self: center;
    margin-left: 0;
  }

  .creator-left .creator-name,
  .creator-left .creator-username,
  .creator-left .creator-bio,
  .creator-left .creator-social {
    text-align: center;
    width: 100%;
  }

  .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.checkout-page {
  padding: 2rem 0;
  min-height: 80vh;
}

.checkout-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #212529;
}

.checkout-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
}

.checkout-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212529;
}

.checkout-product-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  background: white;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
}

.checkout-product-image {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #f8f9fa;
}
.checkout-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.checkout-product-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #212529;
}

.checkout-product-description {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.checkout-product-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.checkout-product-price .price-label {
  color: #6c757d;
  font-size: 1rem;
}
.checkout-product-price .price-amount {
  font-size: 1.75rem;
  font-weight: bold;
  color: #28a745;
}

.checkout-form-fields {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

#payment-card-element {
  padding: 1rem 0;
  min-height: 200px;
}

#payment-messages {
  min-height: 30px;
}
#payment-messages .alert {
  margin-bottom: 0;
}

.checkout-summary {
  position: sticky;
  top: 2rem;
}

.checkout-summary-card {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: #495057;
}
.summary-row.summary-total {
  font-size: 1.25rem;
  font-weight: bold;
  color: #212529;
  margin-top: 0.5rem;
}

.summary-divider {
  height: 1px;
  background-color: #dee2e6;
  margin: 1rem 0;
}

.checkout-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #6f42c1;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 1.5rem;
}
.checkout-button:hover {
  background-color: #5a32a3;
}

.checkout-back-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #6c757d;
  text-decoration: none;
}
.checkout-back-link:hover {
  color: #495057;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .checkout-product-card {
    flex-direction: column;
  }

  .checkout-product-image {
    width: 100%;
    height: 250px;
  }

  .checkout-summary {
    position: static;
    margin-top: 2rem;
  }
}
.footer {
  border-top: 1px solid #dee2e6;
  margin-top: 3rem;
}
