@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap";

/* src/client/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #E43A3A;
  --primary-foreground: #FFFFFF;
  --background: #000000;
  --foreground: #FFFFFF;
  --card: #111111;
  --muted: #1a1a1a;
  --muted-foreground: #888888;
  --border: #333333;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}
.font-mono {
  font-family: "JetBrains Mono", monospace;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(51, 51, 51, 0.4);
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}
.header-content {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
.logo-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo a {
  text-decoration: none;
  color: inherit;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.025em;
}
.logo-text-muted {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  letter-spacing: -0.025em;
}
.btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.global-vx {
  padding: 0.5rem 1rem;
  background: transparent;
  transition: all 0.2s;
  font-size: small;
  color: var(--muted-foreground);
}
.global-vx b {
  padding: 0.0rem 0.3rem;
  background: transparent;
  color: var(--foreground);
  transition: all 0.2s;
  font-size: small;
  font-weight: bold;
}
.btn:hover {
  background: var(--muted);
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}
.btn-secondary {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--muted);
  border-color: var(--primary);
}
.hero {
  padding: 5rem 0 8rem;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: var(--muted);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 0.5rem;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.gradient-text {
  background:
    linear-gradient(
      to right,
      var(--primary),
      rgba(228, 58, 58, 0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.7;
}
.card {
  background: var(--card);
  border: 2px solid rgba(228, 58, 58, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
  max-width: 24rem;
  margin: 0 auto 3rem;
}
.card:hover {
  transform: scale(1.05);
}
.card-content {
  padding: 2rem;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.card-dots {
  display: flex;
  gap: 0.25rem;
}
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}
.dot:nth-child(2) {
  opacity: 0.6;
  animation-delay: 75ms;
}
.dot:nth-child(3) {
  opacity: 0.3;
  animation-delay: 150ms;
}
.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.balance-section {
  text-align: left;
}
.balance-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.balance-amount {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.card-icon {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.wishlist-form-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
}
.input-hero {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  border-radius: 0.375rem;
  font-size: 1rem;
  width: 100%;
}
.input-hero:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(228, 58, 58, 0.1);
}
.input-hero:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.features {
  padding: 5rem 0 8rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
.feature-card {
  background: var(--card);
  border: 2px solid transparent;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(228, 58, 58, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(228, 58, 58, 0.1);
  color: var(--primary);
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.feature-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-weight: 300;
}
.smart-borrowing {
  margin-top: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.smart-card {
  background:
    linear-gradient(
      to right,
      rgba(228, 58, 58, 0.05),
      transparent);
  border: 2px solid rgba(228, 58, 58, 0.2);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: box-shadow 0.3s;
}
.smart-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.smart-icon {
  width: 5rem;
  height: 5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.ambassador {
  padding: 5rem 0 8rem;
}
.ambassador-card {
  background:
    linear-gradient(
      135deg,
      rgba(228, 58, 58, 0.05),
      transparent,
      rgba(228, 58, 58, 0.05));
  border: 2px solid rgba(228, 58, 58, 0.2);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  transition: box-shadow 0.3s;
}
.ambassador-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.globe-section {
  padding: 5rem 0 8rem;
  text-align: center;
  background: rgba(26, 26, 26, 0.3);
}
.globe-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.globe-counter {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}
.globe-counter b {
  color: var(--foreground);
  font-weight: bold;
}
.globe-canvas {
  width: 400px;
  height: 400px;
  max-width: 100%;
  aspect-ratio: 1;
}
.footer {
  border-top: 1px solid var(--border);
  background: rgba(26, 26, 26, 0.3);
  padding: 3rem 0;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 300;
}
@media (max-width: 639px) {
  .header-content {
    height: 3.5rem;
  }
  .logo-text,
  .logo-text-muted {
    font-size: 1.25rem;
  }
  .header-nav {
    gap: 1rem;
  }
  .nav-link {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
  .global-vx {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
  .global-vx b {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .header-nav {
    gap: 0.5rem;
  }
  .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
  }
  .global-vx {
    display: none;
  }
}
.floating-visitor-count {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 1000;
  display: none;
  animation: slideInUp 0.5s ease-out;
}
.floating-count-content {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(228, 58, 58, 0.3);
  border-radius: 2rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.floating-count-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(228, 58, 58, 0.5);
}
.floating-count-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.floating-count-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--foreground);
  white-space: nowrap;
}
.floating-count-text b {
  color: var(--primary);
  font-weight: 600;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .floating-visitor-count {
    display: block;
  }
  .global-vx {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .floating-visitor-count {
    bottom: 1.5rem;
    right: 0.75rem;
  }
  .floating-count-content {
    padding: 0.625rem 0.875rem;
  }
  .floating-count-text {
    font-size: 0.8rem;
  }
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .wishlist-form-hero {
    flex-direction: row;
    max-width: 500px;
  }
  .input-hero {
    min-width: 280px;
    flex: 1;
  }
  .notification {
    top: 4rem;
  }
  .modal-actions .btn {
    min-width: 120px;
  }
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 4.5rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .smart-card {
    padding: 3rem;
  }
  .ambassador-card {
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.icon {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}
.hidden {
  display: none;
}
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 24rem;
  animation: slideIn 0.3s ease-out;
}
.notification-success {
  border-color: #10b981;
}
.notification-error {
  border-color: #ef4444;
}
.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notification-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.notification-success .notification-icon {
  color: #10b981;
}
.notification-error .notification-icon {
  color: #ef4444;
}
.notification-close {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  transition: color 0.2s;
}
.notification-close:hover {
  color: var(--foreground);
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1rem;
}
.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--muted);
  color: var(--foreground);
}
.ambassador-form {
  padding: 1.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(228, 58, 58, 0.1);
}
.form-input:disabled,
.form-textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-textarea {
  resize: vertical;
  min-height: 4rem;
}
.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.modal-actions .btn {
  margin: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}
.nav-link:hover {
  background: var(--muted);
  color: var(--primary);
}
.gallery {
  padding: 5rem 0 8rem;
  background: rgba(26, 26, 26, 0.2);
}
.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.carousel-main {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.carousel-image-container {
  flex: 1;
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}
.carousel-action-btn {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.carousel-action-btn:hover {
  background: var(--primary);
  transform: scale(1.1);
}
.carousel-action-icon {
  width: 1rem;
  height: 1rem;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-btn {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  z-index: 10;
}
.carousel-btn:hover {
  background: var(--primary);
  transform: scale(1.1);
}
.carousel-btn-prev {
  margin-right: 1rem;
}
.carousel-btn-next {
  margin-left: 1rem;
}
.carousel-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-thumbnails {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.carousel-thumbnail {
  width: 60px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  padding: 0;
}
.carousel-thumbnail.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(228, 58, 58, 0.2);
}
.carousel-thumbnail:hover {
  border-color: var(--primary);
  transform: scale(1.1);
}
.carousel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}
.carousel-indicator:hover {
  background: rgba(228, 58, 58, 0.7);
}
.share-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.share-modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  width: 100%;
  max-width: 28rem;
  padding: 1.5rem;
}
.share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.share-modal-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.share-modal-header button {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.2s;
}
.share-modal-header button:hover {
  background: var(--muted);
  color: var(--foreground);
}
.share-url-container {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.share-url-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  border-radius: 0.375rem;
  font-size: 0.875rem;
}
.share-copy-btn {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.share-copy-btn:hover {
  background: rgba(228, 58, 58, 0.8);
}
.wishlist {
  padding: 5rem 0 8rem;
  background: rgba(26, 26, 26, 0.3);
}
.wishlist-card {
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(228, 58, 58, 0.2);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
  transition: box-shadow 0.3s;
}
.wishlist-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.wishlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  border-radius: 0.375rem;
  font-size: 1rem;
}
.input:focus {
  outline: none;
  border-color: var(--primary);
}
.success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .carousel-thumbnails {
    display: none;
  }
  .carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .carousel-btn-prev {
    margin-right: 0.5rem;
  }
  .carousel-btn-next {
    margin-left: 0.5rem;
  }
  .carousel-actions {
    top: 0.5rem;
    right: 0.5rem;
  }
  .carousel-action-btn {
    width: 2rem;
    height: 2rem;
  }
  .carousel-action-icon {
    width: 0.875rem;
    height: 0.875rem;
  }
  .gallery {
    padding: 3rem 0 5rem;
  }
}
@media (min-width: 640px) {
  .wishlist-form {
    flex-direction: row;
  }
  .input {
    flex: 1;
  }
}
/*# sourceMappingURL=index.css.map */
