@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo-text {
  font-family: "Fredoka", cursive;
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #74b9ff;
  transform: translateY(-2px);
}

.nav-links .order-btn {
  background: linear-gradient(135deg, #fd79a8, #e84393);
  color: white !important;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
}

.nav-links .order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 67, 147, 0.4);
  color: white !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #a8edea, #ffd89b);
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #ffd89b 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="30" r="8" fill="rgba(116,185,255,0.2)"/><circle cx="150" cy="50" r="5" fill="rgba(253,121,168,0.3)"/><circle cx="80" cy="120" r="6" fill="rgba(116,185,255,0.15)"/><circle cx="170" cy="140" r="4" fill="rgba(253,121,168,0.2)"/><circle cx="40" cy="180" r="7" fill="rgba(116,185,255,0.25)"/></svg>') repeat;
  animation: floatBubbles 25s linear infinite;
}

@keyframes floatBubbles {
  0% {
    transform: translateY(100vh) scale(0);
  }
  10% {
    transform: translateY(90vh) scale(1);
  }
  90% {
    transform: translateY(-10vh) scale(1);
  }
  100% {
    transform: translateY(-20vh) scale(0);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: "Fredoka", cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 24px;
  animation: slideInFromLeft 1s ease-out;
  line-height: 1.2;
}

.hero-text .heart {
  color: #fd79a8;
  display: inline-block;
  animation: heartbeat 2s ease-in-out infinite;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  color: #74b9ff;
  margin-bottom: 32px;
  font-weight: 500;
  animation: slideInFromLeft 1s ease-out 0.2s both;
}

.hero-text p {
  font-size: 1.1rem;
  color: #636e72;
  margin-bottom: 40px;
  animation: slideInFromLeft 1s ease-out 0.4s both;
  line-height: 1.7;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideInFromLeft 1s ease-out 0.6s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fd79a8, #e84393);
  color: white;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(232, 67, 147, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 67, 147, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #74b9ff;
  border: 2px solid #74b9ff;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: #74b9ff;
  color: white;
  box-shadow: 0 10px 30px rgba(116, 185, 255, 0.3);
}

.hero-image {
  animation: slideInFromRight 1s ease-out 0.3s both;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.02) rotate(-1deg);
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #2c3e50;
  animation: float 3s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  top: 10%;
  right: -10%;
  animation-delay: -1s;
}

.floating-element:nth-child(3) {
  bottom: 15%;
  left: -15%;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffecd2 0%, #fcb69f 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-family: "Fredoka", cursive;
  font-size: 3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.2rem;
  color: #636e72;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.8s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-family: "Fredoka", cursive;
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: #636e72;
  line-height: 1.6;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(116, 185, 255, 0.2);
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,120V0c40,20,80,30,120,30s80-10,120-30s80,10,120,30s80-10,120-30s80,20,120,40s80,0,120-20s80,10,120,30s80-20,120-40s80,10,120,30s80-10,120-30V120H0z" fill="%23fcb69f"/></svg>') no-repeat center center;
  background-size: cover;
  transform: translateY(-50px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #ffd700;
  font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
  padding: 100px 0;
  background: #fff;
  text-align: center;
  position: relative;
}

.guarantee-section h2 {
  font-family: "Fredoka", cursive;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.guarantee-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #2c3e50;
  padding: 25px 50px;
  border-radius: 50px;
  font-family: "Fredoka", cursive;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Final CTA Section */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
  color: white;
  text-align: center;
  position: relative;
}

.final-cta h2 {
  font-family: "Fredoka", cursive;
  font-size: 3rem;
  margin-bottom: 20px;
}

.final-cta .price {
  font-family: "Fredoka", cursive;
  font-size: 4rem;
  font-weight: 700;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  color: #ffd700;
}

.final-cta .cta-button {
  background: white;
  color: #e84393;
  font-size: 1.3rem;
  padding: 20px 40px;
  margin-top: 20px;
}

.final-cta .cta-button:hover {
  background: #ffd700;
  color: #2c3e50;
}

.final-cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.final-cta-features {
  margin-top: 30px;
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Testimonials specific styles */
.testimonials-title {
  color: white;
  font-family: "Fredoka", cursive;
}

.testimonials-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Guarantee section specific styles */
.guarantee-text {
  font-size: 1.2rem;
  color: #636e72;
  max-width: 600px;
  margin: 20px auto;
  line-height: 1.7;
}

/* Scroll animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery Styles */
.gallery-hero {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #ffd89b 100%);
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="30" r="8" fill="rgba(116,185,255,0.2)"/><circle cx="150" cy="50" r="5" fill="rgba(253,121,168,0.3)"/><circle cx="80" cy="120" r="6" fill="rgba(116,185,255,0.15)"/><circle cx="170" cy="140" r="4" fill="rgba(253,121,168,0.2)"/><circle cx="40" cy="180" r="7" fill="rgba(116,185,255,0.25)"/></svg>') repeat;
  animation: floatBubbles 25s linear infinite;
}

.gallery-hero-content h1 {
  font-family: "Fredoka", cursive;
  font-size: 3.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  animation: slideInFromLeft 1s ease-out;
}

.gallery-subtitle {
  font-size: 1.3rem;
  color: #74b9ff;
  font-weight: 500;
  animation: slideInFromLeft 1s ease-out 0.2s both;
}

.gallery-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffecd2 0%, #fcb69f 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-family: "Fredoka", cursive;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.gallery-info {
  text-align: center;
  margin-top: 60px;
}

.gallery-info h2 {
  font-family: "Fredoka", cursive;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.info-card h3 {
  font-family: "Fredoka", cursive;
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card p {
  color: #636e72;
  line-height: 1.5;
  font-size: 0.95rem;
}

.gallery-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
  color: white;
  text-align: center;
}

.gallery-cta h2 {
  font-family: "Fredoka", cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.gallery-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.close:hover,
.close:focus {
  color: #74b9ff;
  text-decoration: none;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Story Styles */
.story-hero {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #ffd89b 100%);
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="30" r="8" fill="rgba(116,185,255,0.2)"/><circle cx="150" cy="50" r="5" fill="rgba(253,121,168,0.3)"/><circle cx="80" cy="120" r="6" fill="rgba(116,185,255,0.15)"/><circle cx="170" cy="140" r="4" fill="rgba(253,121,168,0.2)"/><circle cx="40" cy="180" r="7" fill="rgba(116,185,255,0.25)"/></svg>') repeat;
  animation: floatBubbles 25s linear infinite;
}

.story-hero-content h1 {
  font-family: "Fredoka", cursive;
  font-size: 3.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  animation: slideInFromLeft 1s ease-out;
}

.story-subtitle {
  font-size: 1.3rem;
  color: #74b9ff;
  font-weight: 500;
  animation: slideInFromLeft 1s ease-out 0.2s both;
}

.story-section {
  padding: 100px 0;
  position: relative;
}

.story-section:nth-child(odd) {
  background: linear-gradient(180deg, #ffecd2 0%, #fcb69f 100%);
}

.story-section:nth-child(even) {
  background: linear-gradient(180deg, #a8edea 0%, #fed6e3 100%);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.story-content.reverse {
  direction: rtl;
}

.story-content.reverse > * {
  direction: ltr;
}

.story-text h2 {
  font-family: "Fredoka", cursive;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
}

.story-text p {
  font-size: 1.1rem;
  color: #636e72;
  line-height: 1.8;
  margin-bottom: 25px;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.02) rotate(-1deg);
}

.story-promise {
  padding: 120px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.promise-content h2 {
  font-family: "Fredoka", cursive;
  font-size: 3rem;
  margin-bottom: 60px;
  color: white;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.promise-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.promise-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promise-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.promise-card h3 {
  font-family: "Fredoka", cursive;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.promise-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.story-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
  color: white;
  text-align: center;
}

.story-cta h2 {
  font-family: "Fredoka", cursive;
  font-size: 3rem;
  margin-bottom: 20px;
}

.story-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.story-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: "Fredoka", cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Checkout Styles */
.checkout-hero {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #ffd89b 100%);
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.checkout-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="30" r="8" fill="rgba(116,185,255,0.2)"/><circle cx="150" cy="50" r="5" fill="rgba(253,121,168,0.3)"/><circle cx="80" cy="120" r="6" fill="rgba(116,185,255,0.15)"/><circle cx="170" cy="140" r="4" fill="rgba(253,121,168,0.2)"/><circle cx="40" cy="180" r="7" fill="rgba(116,185,255,0.25)"/></svg>') repeat;
  animation: floatBubbles 25s linear infinite;
}

.checkout-hero-content h1 {
  font-family: "Fredoka", cursive;
  font-size: 3.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  animation: slideInFromLeft 1s ease-out;
}

.checkout-subtitle {
  font-size: 1.3rem;
  color: #74b9ff;
  font-weight: 500;
  animation: slideInFromLeft 1s ease-out 0.2s both;
}

.checkout-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffecd2 0%, #fcb69f 100%);
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-summary {
  display: flex;
  flex-direction: column;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 30px;
}

.product-details h2 {
  font-family: "Fredoka", cursive;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-description {
  font-size: 1.1rem;
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 25px;
}

.product-features {
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 500;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  border-radius: 15px;
  color: white;
}

.price {
  font-family: "Fredoka", cursive;
  font-size: 2.5rem;
  font-weight: 700;
}

.shipping {
  font-size: 1.1rem;
  opacity: 0.9;
}

.payment-form-container {
  display: flex;
  flex-direction: column;
}

.payment-form-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.payment-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.payment-form-card h3 {
  font-family: "Fredoka", cursive;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: #74b9ff;
  box-shadow: 0 0 0 3px rgba(116, 185, 255, 0.1);
}

.form-group input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.field-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  font-weight: 500;
}

.card-element {
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  background: white;
  transition: all 0.3s ease;
}

.card-element:focus-within {
  border-color: #74b9ff;
  box-shadow: 0 0 0 3px rgba(116, 185, 255, 0.1);
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 10px;
  display: none;
  font-weight: 500;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #fd79a8, #e84393);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 67, 147, 0.4);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner.hidden {
  display: none;
}

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

.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #636e72;
  font-weight: 500;
}

.trust-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.trust-section h2 {
  font-family: "Fredoka", cursive;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.trust-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.trust-card h3 {
  font-family: "Fredoka", cursive;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
}

.trust-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Active navigation link */
.nav-links a.active {
  color: #74b9ff;
  background: rgba(116, 185, 255, 0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .floating-element {
    display: none;
  }

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

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item img {
    height: 200px;
  }

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

  .gallery-cta h2 {
    font-size: 2rem;
  }

  .modal-content {
    max-width: 95%;
    max-height: 80%;
  }

  .close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }

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

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

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

  .story-image img {
    height: 300px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .story-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .checkout-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-details h2 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2rem;
  }

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

  .security-badges {
    gap: 15px;
  }
}
