/* Base Styles */
:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;

  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --black: #000000;

  --primary-gradient: linear-gradient(to right, var(--emerald-600), var(--teal-500));
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: var(--gray-800);
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom right, var(--emerald-50), var(--teal-50));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  animation: fadeOut 1.5s ease-in-out forwards;
  animation-delay: 2.5s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-spinner {
  position: relative;
  width: 7rem;
  height: 7rem;
}

.spinner-outer {
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  border-top-color: var(--emerald-600);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-inner {
  position: absolute;
  inset: 0.75rem;
  border: 4px solid transparent;
  border-top-color: var(--teal-500);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.book-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 3.5rem;
  width: 3.5rem;
  color: var(--emerald-600);
}

.loading-title {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.loading-subtitle {
  margin-top: 0.5rem;
  color: var(--gray-500);
  font-weight: 300;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1.25rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  background: var(--primary-gradient);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  color: var(--white);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 2rem;
  }
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--emerald-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
}

.btn-outline:hover {
  border-color: var(--emerald-200);
  background-color: var(--emerald-50);
}

.btn-white {
  background: var(--white);
  color: var(--emerald-600);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-white:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hero Section */
.hero {
  padding: 5rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--emerald-50), transparent);
  opacity: 0.7;
}

.hero-blob-1 {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  background-color: var(--teal-100);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-blob-2 {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background-color: var(--emerald-100);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-image {
    width: 50%;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--emerald-50), var(--teal-50));
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--emerald-100);
  margin-bottom: 2rem;
}

.badge span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

.badge-white {
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
  height: 600px;
}

.phone {
  position: absolute;
  width: 280px;
  height: 580px;
  background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800));
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-left {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}

.phone-right {
  top: 40px;
  right: 0;
  transform: rotate(6deg);
  background: var(--primary-gradient);
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background-color: var(--gray-100);
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-notch::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: var(--gray-300);
  border-radius: var(--radius-full);
}

.phone-screen {
  position: absolute;
  inset: 8px;
  background-color: var(--white);
  border-radius: 36px;
  overflow: hidden;
  padding-top: 24px;
}

.app-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.app-icon svg {
  color: var(--white);
}

/* Features Section */
.features {
  padding: 5rem 0;
  position: relative;
}

.features-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--white), var(--emerald-50));
  opacity: 0.7;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 32rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--emerald-200);
}

.feature-icon {
  background: var(--primary-gradient);
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: rotate(6deg);
}

.feature-icon svg {
  color: var(--white);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Wish Wall Section */
.wishwall {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.wishwall-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--emerald-50), var(--teal-50));
}

.wishwall-blob-1 {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background-color: var(--emerald-200);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.wishwall-blob-2 {
  position: absolute;
  bottom: -10rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background-color: var(--teal-200);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.wishwall-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .wishwall-content {
    flex-direction: row;
    align-items: center;
  }

  .wishwall-demo,
  .wishwall-info {
    width: 50%;
  }
}

.wishwall-demo {
  position: relative;
}

.wishwall-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--gray-100);
  max-width: 26rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.wishwall-card::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--emerald-100);
  border-radius: 50%;
  z-index: -1;
}

.wishwall-card::after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--teal-100);
  border-radius: 50%;
  z-index: -1;
}

.wishwall-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.wishwall-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wishwall-card-title svg {
  color: var(--emerald-600);
}

.book-card {
  background: linear-gradient(to right, var(--emerald-50), var(--teal-50));
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
  border: 1px solid var(--emerald-100);
  display: flex;
  gap: 1.5rem;
}

.book-cover {
  width: 6rem;
  height: 9rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: rotate(-3deg);
  transition: transform 0.3s;
}

.book-cover:hover {
  transform: rotate(0);
}

.book-cover-small {
  width: 5rem;
  height: 7.5rem;
  transform: rotate(3deg);
}

.book-cover-small:hover {
  transform: rotate(0);
}

.book-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.book-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.book-author {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.book-date {
  background-color: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--gray-500);
  display: inline-block;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-top: auto;
  width: fit-content;
}

.wishwall-divider {
  height: 1px;
  background-color: var(--gray-100);
  margin: 1.5rem 0;
}

.match-section {
  margin-top: 1.5rem;
}

.match-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.match-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--emerald-500);
  border-radius: 50%;
}

.match-title {
  font-weight: 600;
  color: var(--gray-800);
}

.match-card {
  background: linear-gradient(to right, var(--emerald-100), var(--teal-100));
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--emerald-200);
  display: flex;
  gap: 1.5rem;
}

.match-info {
  flex: 1;
}

.owner-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.owner-avatar {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--gray-200);
  border-radius: 50%;
  overflow: hidden;
}

.owner-name {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.wishwall-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wishwall-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

@media (min-width: 768px) {
  .wishwall-title {
    font-size: 3rem;
  }
}

.wishwall-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  display: flex;
  gap: 1.5rem;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-number {
  background: var(--primary-gradient);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--gray-600);
}

/* Download Section */
.download {
  padding: 6rem 0;
  position: relative;
  background: var(--primary-gradient);
  color: var(--white);
  overflow: hidden;
}

.download-curve {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background-color: var(--white);
  border-radius: 0 0 50% 50% / 100px;
}

.download-blob-1 {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  background-color: var(--emerald-400);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.download-blob-2 {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  background-color: var(--teal-400);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.download-content {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.download-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .download-title {
    font-size: 3rem;
  }
}

.download-description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .download-buttons {
    flex-direction: row;
  }
}

.download-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.download-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--white);
  border-radius: 50%;
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  background: var(--primary-gradient);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  color: var(--white);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--emerald-400), var(--teal-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--gray-400);
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--white);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-list a:hover {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-input {
  background-color: var(--gray-800);
  color: var(--white);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  flex: 1;
  outline: none;
}

.newsletter-input:focus {
  box-shadow: 0 0 0 2px var(--emerald-500);
}

.newsletter-button {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  color: var(--gray-400);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title,
  .wishwall-title,
  .download-title {
    font-size: 2rem;
  }

  .hero-description,
  .wishwall-description,
  .download-description,
  .section-description {
    font-size: 1rem;
  }

  .feature-card,
  .step-card {
    padding: 1.5rem;
  }

  .wishwall-card {
    padding: 1.5rem;
  }

  .book-card,
  .match-card {
    padding: 1rem;
    gap: 1rem;
  }

  .book-cover {
    width: 5rem;
    height: 7.5rem;
  }

  .book-cover-small {
    width: 4rem;
    height: 6rem;
  }
}
