/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #544a42;
  background-color: #ffffff;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
}

.nav-logo h2 {
  color: #7c746a;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #544a42;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #7c746a;
}

.cta-button {
  background: #7c746a;
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #685f56;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f7e8d3 0%, #fff9f3 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #544a42;
}

.accent {
  color: #7c746a;
}

.rotating-text {
  display: inline-block;
  width: 300px;
  text-align: left;
  transition: opacity 0.3s ease-in-out;
  position: relative;
}

.rotating-text.fade-out {
  opacity: 0;
}

.rotating-text.fade-in {
  opacity: 1;
}

.recipe-word {
  display: inline;
}

.hero-description {
  font-size: 1.25rem;
  color: #a69484;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.primary-button {
  background: #7c746a;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 116, 106, 0.3);
}

.primary-button:hover {
  background: #685f56;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 116, 106, 0.4);
}

.primary-button.large {
  padding: 20px 40px;
  font-size: 1.2rem;
}

.secondary-button {
  background: transparent;
  color: #544a42;
  padding: 16px 32px;
  border: 2px solid #ddd8d4;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  border-color: #7c746a;
  color: #7c746a;
  transform: translateY(-2px);
}

/* Hero Demo Card */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.recipe-card-demo {
  perspective: 1000px;
  position: relative;
  width: 300px;
  height: 380px;
}

.demo-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}

.demo-card.active {
  opacity: 1;
  visibility: visible;
  transform: rotateY(-15deg) rotateX(5deg);
}

.demo-card:hover {
  transform: rotateY(-10deg) rotateX(2deg);
}

.card-image {
  height: 200px;
  background: url("https://recipe-hero-images.s3.us-east-1.amazonaws.com/cookies-marketing.png")
    center/cover no-repeat;
  position: relative;
}

/* Remove old cookie emoji */
.card-image::after {
  content: "";
}

.card-image-pasta {
  height: 200px;
  background: url("https://recipe-hero-images.s3.us-east-1.amazonaws.com/spaghetti-marketing.png")
    center/cover no-repeat;
  position: relative;
}

/* Fallback for when image fails to load */
.card-image-pasta::after {
  content: "🍝";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show fallback when image fails */
.card-image-pasta[data-image-error="true"]::after {
  opacity: 1;
}

.card-image-pasta[data-image-error="true"] {
  background: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%);
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.card-content p {
  color: #6b7280;
  margin-bottom: 16px;
}

.card-tags {
  display: flex;
  gap: 8px;
}

.tag {
  background: #f7e8d3;
  color: #7c746a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Mobile Beta Section */
.mobile-beta-section {
  display: none;
  padding: 60px 0;
  background: linear-gradient(135deg, #f7e8d3 0%, #fff9f3 100%);
  border-bottom: 1px solid #ddd8d4;
}

.mobile-beta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-beta-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #544a42;
  margin-bottom: 16px;
  width: 100%;
}

.mobile-beta-content p {
  font-size: 1.1rem;
  color: #a69484;
  margin-bottom: 24px;
  width: 100%;
}

.mobile-beta-content .primary-button {
  width: auto;
  min-width: 200px;
  display: inline-block;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #544a42;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: #f7f7f7;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #544a42;
}

.feature-card p {
  color: #a69484;
  line-height: 1.7;
}

/* Meal Planning Section */
.meal-planning {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.meal-planning-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.meal-planning-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #544a42;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #7c746a;
  margin-bottom: 40px;
  line-height: 1.6;
}

.meal-planning-features {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.planning-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.planning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.planning-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #544a42;
  margin-bottom: 8px;
}

.planning-content p {
  color: #7c746a;
  line-height: 1.5;
}

.meal-planning-cta {
  margin-top: 20px;
}

/* Calendar Demo Visual */
.calendar-demo {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f9ff;
}

.calendar-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #544a42;
  margin: 0;
}

.calendar-date {
  color: #7c746a;
  font-size: 0.9rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.calendar-day {
  text-align: center;
}

.day-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7c746a;
  margin-bottom: 8px;
}

.meal-slot {
  background: linear-gradient(135deg, #f7f3f0 0%, #ede8e3 100%);
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 0.75rem;
  margin-bottom: 4px;
  color: #544a42;
  font-weight: 500;
  line-height: 1.2;
}

.meal-slot.breakfast {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.meal-slot.dinner {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.shopping-list-preview {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}

.shopping-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 600;
  color: #544a42;
  font-size: 0.9rem;
}

.item-count {
  background: #7c746a;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.shopping-items {
  display: grid;
  gap: 6px;
}

.shopping-item {
  font-size: 0.85rem;
  color: #7c746a;
  padding: 4px 0;
}

/* Mobile responsiveness for meal planning */
@media (max-width: 1024px) {
  .meal-planning-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .calendar-demo {
    transform: none;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .meal-planning-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .meal-planning {
    padding: 60px 0;
  }
  
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .planning-feature {
    text-align: left;
  }
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: #ffffff;
}

.story-content h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #544a42;
  margin-bottom: 60px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #544a42;
}

.story-text p {
  margin-bottom: 24px;
}

.story-text strong {
  color: #7c746a;
  font-weight: 600;
}

.story-highlight {
  background: #f7e8d3;
  padding: 24px;
  border-radius: 12px;
  font-style: italic;
  border-left: 4px solid #7c746a;
  margin-top: 32px;
}

.recipe-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.recipe-card {
  width: 280px;
  height: 350px;
  background: #fff9f3;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: rotate(-2deg);
  border: 1px solid #ddd8d4;
}

.recipe-card.vintage {
  background: linear-gradient(135deg, #fffef7 0%, #f9f5e8 100%);
}

.card-header {
  font-size: 0.875rem;
  color: #a69484;
  text-align: center;
  margin-bottom: 8px;
  font-style: italic;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #544a42;
  text-align: center;
  margin-bottom: 32px;
  border-bottom: 2px solid #ddd8d4;
  padding-bottom: 16px;
}

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

.line {
  height: 2px;
  background: #a69484;
  border-radius: 1px;
  opacity: 0.7;
}

.line.short {
  width: 60%;
}

.card-stain {
  position: absolute;
  top: 80px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: radial-gradient(
    circle,
    rgba(124, 116, 106, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.card-stain::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(124, 116, 106, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #eee9e5 0%, #ddd8d4 100%);
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #544a42;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.25rem;
  color: #a69484;
  line-height: 1.7;
  margin-bottom: 60px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #7c746a;
  margin-bottom: 8px;
}

.stat p {
  color: #a69484;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: #3f352f;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.25rem;
  color: #ddd8d4;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 60px 0 20px;
  background: #2b211d;
  color: #ddd8d4;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
  text-align: center;
}

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
}

.footer-brand h3 {
  color: #7c746a;
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column a {
  color: #ddd8d4;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #7c746a;
}

.footer-bottom {
  border-top: 1px solid #544a42;
  padding-top: 20px;
  text-align: center;
  color: #b0a99f;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .recipe-word {
    display: block;
    margin-top: 8px;
  }

  .rotating-text {
    width: auto;
    min-width: 100px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a:not(.cta-button) {
    display: none;
  }

  .mobile-beta-section {
    display: block;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .story-content h2 {
    font-size: 2rem;
  }

  .recipe-cards {
    height: 300px;
  }

  .recipe-card {
    width: 240px;
    height: 300px;
    padding: 24px 20px;
  }

  .card-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 40px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* Show beta section on tablets and mobile */
@media (max-width: 1024px) {
  .mobile-beta-section {
    display: block !important;
  }
}

/* Additional mobile breakpoint for phones */
@media (max-width: 480px) {
  .mobile-beta-section {
    display: block !important;
    padding: 40px 0;
    clear: both;
    overflow: hidden;
  }

  .mobile-beta-content {
    max-width: 300px;
    padding: 0 20px;
  }

  .mobile-beta-content h3 {
    font-size: 1.25rem;
  }

  .mobile-beta-content .primary-button {
    width: 100%;
    max-width: 260px;
    box-sizing: border-box;
  }
}

/* Show beta section on tablets and mobile */
@media (max-width: 1024px) {
  .mobile-beta-section {
    display: block !important;
  }
}

/* Additional mobile breakpoint for phones */
@media (max-width: 480px) {
  .mobile-beta-section {
    display: block !important;
    padding: 40px 0;
    clear: both;
    overflow: hidden;
  }

  .mobile-beta-content {
    max-width: 300px;
    padding: 0 20px;
  }

  .mobile-beta-content h3 {
    font-size: 1.25rem;
  }

  .mobile-beta-content .primary-button {
    width: 100%;
    max-width: 260px;
    box-sizing: border-box;
  }
}

/* Recipe Showcase Section */
.recipe-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfcfb 0%, #f7f3f0 100%);
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-header h2 {
  color: #544a42;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.showcase-header p {
  color: #7c746a;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.recipe-carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.recipe-carousel {
  overflow: hidden;
  margin: 0 60px;
}

.recipe-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease;
  padding: 20px 0;
}

.recipe-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(84, 74, 66, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.recipe-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(84, 74, 66, 0.15);
}

.recipe-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #7c746a 0%, #a69484 100%);
  position: relative;
  overflow: hidden;
}

.recipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-card-image img {
  transform: scale(1.05);
}

.recipe-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.recipe-card-content {
  padding: 20px;
}

.recipe-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #544a42;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recipe-card-description {
  color: #7c746a;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recipe-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #a69484;
}

.recipe-card-author {
  font-weight: 500;
}

.recipe-card-time {
  background: #f7f3f0;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(84, 74, 66, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  color: #7c746a;
}

.carousel-nav:hover {
  background: #7c746a;
  color: white;
  box-shadow: 0 6px 24px rgba(84, 74, 66, 0.2);
}

.carousel-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-nav:disabled:hover {
  background: white;
  color: #7c746a;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.loading-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #7c746a;
  width: 100%;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f7f3f0;
  border-top: 4px solid #7c746a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

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

.error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #7c746a;
  width: 100%;
  text-align: center;
}

.error-message h3 {
  color: #544a42;
  margin-bottom: 8px;
}

/* Mobile responsiveness for recipe showcase */
@media (max-width: 768px) {
  .recipe-showcase {
    padding: 60px 0;
  }

  .showcase-header h2 {
    font-size: 2rem;
  }

  .showcase-header p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .recipe-carousel {
    margin: 0 20px;
  }

  .recipe-card {
    flex: 0 0 280px;
    transform: scale(0.9);
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .recipe-card.active {
    transform: scale(1);
    opacity: 1;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }
}
