/* Existing theme CSS ... */
* Reset and basics */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Fredoka', cursive, Arial, sans-serif;
  margin: 0;
  background: #f7faff;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER: Centered Logo + Nav */

.header-centered {
  text-align: center;
  padding: 40px 10px 10px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-centered .logo {
  font-weight: 900;
  font-size: 3rem;
  color: #FF6B6B;
  margin-bottom: 8px;
  user-select: none;
  letter-spacing: 0.1em;
}

/* Navigation */

.nav-centered ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  gap: 25px;
  justify-content: center;
}

.nav-centered ul li a {
  color: #444;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-centered ul li a:hover,
.nav-centered ul li a:focus {
  color: #FF6B6B;
  outline: none;
}

/* HERO SECTION */

.hero {
  padding: 50px 0 30px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.25rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* MAIN ACTION CARDS */

.main-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.card {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
  border-radius: 25px;
  padding: 30px 15px;
  color: white;
  box-shadow:
    0 4px 15px rgba(255, 107, 107, 0.3),
    0 8px 25px rgba(255, 214, 61, 0.2);
  cursor: pointer;
  text-align: center;
  user-select: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  outline-offset: 4px;
}

.card:nth-child(2) {
  background: linear-gradient(135deg, #2D98DA 0%, #70C1B3 100%);
  box-shadow:
    0 4px 15px rgba(45, 152, 218, 0.3),
    0 8px 25px rgba(112, 193, 179, 0.2);
}

.card:nth-child(3) {
  background: linear-gradient(135deg, #6A0572 0%, #AB83A1 100%);
  box-shadow:
    0 4px 15px rgba(106, 5, 114, 0.3),
    0 8px 25px rgba(171, 131, 161, 0.2);
}

.card:nth-child(4) {
  background: linear-gradient(135deg, #F79F1F 0%, #A3CB38 100%);
  box-shadow:
    0 4px 15px rgba(247, 159, 31, 0.3),
    0 8px 25px rgba(163, 203, 56, 0.2);
}

.card:hover,
.card:focus {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.2);
  outline: none;
}

.card img {
  max-width: 80px;
  margin-bottom: 20px;
  pointer-events: none;
}

.card h3 {
  font-size: 1.5rem;
  margin: 0;
  user-select: none;
}

/* SIGNUP/LOGIN BUTTON BELOW CARDS */

.signup-container {
  text-align: center;
  margin-bottom: 80px;
}

.btn {
  background: #FF6B6B;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px 40px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.btn:hover,
.btn:focus {
  background: #e85c5c;
  box-shadow: 0 12px 35px rgba(232, 92, 92, 0.6);
  outline: none;
}

/* Responsive */

@media (max-width: 600px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .nav-centered ul {
    flex-direction: column;
    gap: 15px;
  }
}
/* 🌈 Rainbow Background */
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #a1c4fd 50%, #c2e9fb 75%, #d4fc79 100%);
  z-index: -1;
}

/* 💬 Testimonials */
.testimonial-section {
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
  background: #ffffffcc;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.section-heading {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}
.testimonial-slider {
  position: relative;
  height: 80px;
}
.testimonial {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 700px;
  font-style: italic;
  font-size: 1.2rem;
  color: #444;
}
.testimonial.active {
  opacity: 1;
}
/* 🎉 Early Bird Popup */
.special-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  border: 3px solid #fff;
  padding: 25px 20px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 999;
  animation: popup-fade 1s ease forwards;
  max-width: 330px;
  font-family: 'Fredoka', cursive;
  color: #5c1a1a;
}

.popup-content h2 {
  margin-top: 0;
  color: #ff2e63;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.popup-content p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.5;
}

.popup-button {
  display: block;
  text-align: center;
  background: #ff2e63;
  color: #fff;
  padding: 10px 20px;
  margin: 0 auto;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: fit-content;
}

.popup-button:hover {
  background: #d92150;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #444;
  font-weight: bold;
}

@keyframes popup-fade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .special-popup {
    right: 10px;
    left: 10px;
    bottom: 20px;
    max-width: 90%;
  }
}
/* 🔊 Announcement Strip */
.announcement-strip {
  background: #ff2e63;
  color: #fff;
  font-weight: bold;
  font-family: 'Fredoka', cursive;
  font-size: 1rem;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 99;
}

.scroll-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---------------------------
   📱 MOBILE RESPONSIVE LAYOUT
---------------------------- */
@media only screen and (max-width: 768px) {

  body {
    padding: 10px;
    font-size: 16px;
  }

  header, .navbar, .hero, .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }

  .hero img,
  .container img,
  .product-card img,
  .gallery-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-card, .gallery-box {
    width: 100% !important;
    margin: 10px 0;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial {
    margin: 15px 0;
  }

  .footer-links, .footer {
    flex-direction: column;
    text-align: center;
  }

  form input,
  form textarea,
  form button {
    width: 100% !important;
    margin-bottom: 15px;
  }
}
/* ✨ Mobile Responsiveness */
@media (max-width: 600px) {
  .container { padding: 0 15px; }
  .logo { font-size: 2.4rem; }
  .nav-centered ul { flex-direction: column; gap: 12px; }
  .nav-centered ul li a { font-size: 1rem; }
  
  .announcement-strip { font-size: 0.9rem; padding: 8px 0; }
  .scroll-text { animation-duration: 20s; }

  .hero { padding: 40px 0; }
  .hero h2 { font-size: 2rem; }
  .hero p { font-size: 1rem; line-height: 1.5; }

  .main-actions { grid-template-columns: 1fr; gap: 20px; }
  .card { padding: 20px; }
  .card img { max-width: 60px; margin-bottom: 12px; }

  .testimonial-section { padding: 30px 0; }
  .testimonial-slider { height: auto; }
  .testimonial { position: static; opacity: 1 !important; margin-bottom: 15px; }

  .special-popup { max-width: 90%; right: 5%; left: 5%; bottom: 10px; font-size: 0.92rem; padding: 20px; }
  .popup-content h2 { font-size: 1.3rem; }
  .popup-content p { font-size: 0.9rem; }
  .popup-button { padding: 10px 18px; font-size: 1rem; }
}

