.elementor-11 .elementor-element.elementor-element-eb7f20b{--display:flex;--min-height:1440px;}.elementor-11 .elementor-element.elementor-element-693b36a{width:var( --container-widget-width, 100.314% );max-width:100.314%;--container-widget-width:100.314%;--container-widget-flex-grow:0;}.elementor-11 .elementor-element.elementor-element-693b36a.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-11 .elementor-element.elementor-element-69b7090{width:var( --container-widget-width, 100.816% );max-width:100.816%;--container-widget-width:100.816%;--container-widget-flex-grow:0;}.elementor-11 .elementor-element.elementor-element-69b7090.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-693b36a *//* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff8f2;
  color: #5c3d2e;
}

h1, h2, h3 {
  font-family: 'DynaPuff', cursive;
}


/* HEADER */
.main-header {
  width: 100%;
  background: linear-gradient(90deg, #fde5e9 0%, #fff4e2 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 120px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

.contact-boxes {
  display: flex;
  gap: 15px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #4b3a26;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.header-contact i {
  font-size: 1.1rem;
  color: #c7882b;
}

.header-contact.email:hover {
  background: #fde5e9;
}
.header-contact.phone:hover {
  background: #d2f8d2;
}
/* HERO SECTION */
.hero {
  text-align: center;
  background-color: #fffaf2;
  padding: 100px 20px 80px;
}

/* Logo */
.hero-logo {
  width: 380px; /* increased size */
  max-width: 90%; /* keeps it responsive */
  height: auto;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.08);
}

/* Brand Name (Main Heading) */
.hero h1 {
  font-family: 'DynaPuff', cursive;
  font-size: 3.2rem;
  font-weight: 700;
  color: #2e897c; /* soft green tone matching logo */
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 0 #fff, 4px 4px 0 rgba(46, 137, 124, 0.15); /* playful soft shadow */
}

/* Optional gradient effect inside brand text */
.hero h1 span {
  background: linear-gradient(90deg, #2e897c 0%, #47b39c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle (Below Brand Name) */
.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #c16a2c; /* warm caramel tone from logo */
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

/* Tagline / Extra line (optional small italic line) */
.hero-tagline {
  font-family: 'Poppins', sans-serif;
  color: #a0582d;
  font-size: 1.05rem;
  font-style: italic;
  margin-top: 8px;
}


/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero {
    padding: 80px 15px 60px;
  }

  .hero-logo {
    width: 200px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }
}

/* GALLERY */
.gallery {
  padding: 70px 20px;
  background-color: #fff;
  text-align: center;
}
.gallery h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  
}
.gallery-slider {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(92,61,46,0.15);
}
.gallery-track {
  display: flex;
  animation: scroll 25s linear infinite;
}
.gallery-item {
  min-width: 320px;
  margin: 10px;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform .4s;
}
.gallery-item img:hover {
  transform: scale(1.05);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ABOUT */
.about-section {
  background: linear-gradient(180deg, #fffaf2 0%, #fde5e9 100%);
  padding: 80px 20px;
  text-align: center;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-content h2 {
  font-size: 2.2rem;
  color: ##2E897C;
  font-weight: 700;
  margin-bottom: 15px;
}
.divider {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #c7882b, #e29bb8);
  margin: 0 auto 25px auto;
  border-radius: 2px;
}
.about-content p {
  color: #6b4a2b;
  font-size: 1.1rem;
  line-height: 1.8;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 22px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.contact-section {
  background: linear-gradient(to bottom, #fff6ec 0%, #ffeaea 100%);
  text-align: center;
  padding: 80px 20px;
}

.contact-section h2 {
  font-family: 'DynaPuff', cursive;
  font-size: 2.8rem;
  color: #2e897c; /* Updated to teal theme */
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact-section p {
  font-family: 'Poppins', sans-serif;
  color: #3b7361;
  font-size: 1.1rem;
  margin-bottom: 45px;
}

/* BUTTON WRAPPER */
.contact-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* BUTTONS */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ICONS */
.contact-item i {
  font-size: 1.1rem;
  color: #fff !important;
}

/* BUTTON COLORS - NOW MATCHING #2e897c THEME */
.contact-item.email {
  background: linear-gradient(135deg, #2e897c, #47b39c);
}

.contact-item.whatsapp {
  background: linear-gradient(135deg, #47b39c, #2e897c);
}

/* HOVER EFFECT */
.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  filter: brightness(1.1);
}
/* FACEBOOK & INSTAGRAM BUTTONS — SAME STYLE */
.contact-item.facebook {
  background: linear-gradient(135deg, #2e897c, #47b39c);
}

.contact-item.instagram {
  background: linear-gradient(135deg, #47b39c, #2e897c);
}


/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .contact-section {
    padding: 70px 15px;
  }

  .contact-section h2 {
    font-size: 2.2rem;
  }

  .contact-section p {
    font-size: 1rem;
  }

  .contact-item {
    font-size: 0.95rem;
    padding: 12px 22px;
  }
}

/* optional: small-screen adjustment */
@media (max-width: 480px) {
  .contact-item {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* FOOTER */
.footer {
  background: #fde5e9;
  color: #4a2e14;
  text-align: center;
  padding: 25px 10px;
  width: 100%;
}
.footer img {
  width: 100px;
  margin-bottom: 8px;
}
.footer p {
  margin: 0;
  font-size: 0.9rem;
}
/* ===== CLEAN & FINAL HEADER RESPONSIVE FIX ===== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column; /* Stack logo and contact info */
    align-items: center;
    text-align: center;
  }

  .contact-boxes {
    flex-direction: column; /* Email & phone upar-neeche */
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .header-contact {
    width: 85%;
    max-width: 340px;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 35px;
    font-size: 0.95rem;
    color: #4b3a26; /* keep same text color */
    background: #fff; /* same background */
  }

  /* keep original icon colors */
  .header-contact.email i {
    color: #c7882b !important; /* gold/orange */
  }

  .header-contact.phone i {
    color: #34b76f !important; /* green */
  }

  .logo img {
    width: 110px;
    margin-bottom: 10px;
  }
}

/* Desktop layout unchanged */
@media (min-width: 769px) {
  .contact-boxes {
    flex-direction: row;
    gap: 15px;
  }
}
/* ✅ Balanced Email & WhatsApp Boxes for Mobile */
@media (max-width: 768px) {
  .header-contact {
    width: 85%;
    max-width: 340px;
    justify-content: center;
    padding: 8px 14px; /* smaller padding for uniform height */
    border-radius: 30px;
    font-size: 0.85rem; /* slightly smaller text for both */
  }

  .header-contact i {
    font-size: 1rem;
  }

  .header-contact.email {
    background: #fff;
    color: #4b3a26;
    word-break: break-word;
    white-space: normal;
  }

  .header-contact.phone {
    background: #fff;
    color: #4b3a26;
  }
}
/* ✅ FINAL FIX — Equal Email & WhatsApp Box Size */
@media (max-width: 768px) {
  .header-contact {
    width: 85% !important;
    max-width: 320px !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 8px 14px !important;
    border-radius: 35px !important;
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
    background: #fff !important;
    color: #4b3a26 !important;
    text-align: center !important;
  }

  .header-contact i {
    font-size: 1rem !important;
    margin-right: 6px !important;
  }

  .header-contact.email {
    white-space: nowrap !important;  /* keeps email on one line */
    overflow: hidden !important;
    text-overflow: ellipsis !important; /* adds ... if text too long */
  }

  .header-contact.phone {
    white-space: nowrap !important;
  }
}
.promo-section {
  width: 100%;
  background: linear-gradient(180deg, #fffaf2 0%, #fde5e9 100%);
  padding: 80px 20px;
}

.promo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.promo-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.promo-text {
  flex: 1;
  min-width: 300px;
}

.promo-text h1 {
  font-family: 'DynaPuff', sans-serif;
  color: #e46a3c;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.promo-text h3 {
  color: #2d756f;
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.promo-text p {
  color: #5c3d2e;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}

.occasions-title {
  display: block;
  font-family: 'DynaPuff', sans-serif;
  color: #2d756f;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.treats-icons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.treat-item {
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-weight: 600;
  color: #e46a3c;
  transition: all 0.3s ease;
}

.treat-item:hover {
  transform: translateY(-4px);
  background: #fff5ef;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
    text-align: center;
  }
  .promo-image img {
    max-width: 100%;
  }
  .promo-text h1 {
    font-size: 2rem;
  }
}
.features-section {
  background-color: #fff7f4;
  padding: 80px 0;
  text-align: center;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background-color: #ffd8cc;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  flex: 1 1 45%;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background-color: #ffb7a2;
  color: #156b5d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin: 0 auto 15px;
}

.feature-card h3 {
  color: #156b5d;
  font-family: "DynaPuff", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
:root {
  --bg: #fff9f1;
  --panel: #ffdede;
  --accent1: #ff6b35;
  --accent2: #2fa38b;
  --text: #333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
}

:root {
  --bg: #fffaf6;
  --gradient: linear-gradient(180deg, #ffe7e7 0%, #ffe2f1 100%);
  --accent1: #ff6b6b;
  --accent2: #28b88b;
  --text: #453939;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* === Top Cartoon Section === */
.hero-top {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.party-img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
  position: relative;
  z-index: 2;
}

/* === Sweet Section === */
.sweet-section {
  background: var(--gradient);
  margin-top: -40px; /* lift to overlap with cartoon slightly */
  padding: 80px 10% 100px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -10px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.sweet-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.sweet-image {
  flex: 1 1 420px;
  text-align: center;
}

.sweet-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
  transition: transform 0.4s ease;
}

.sweet-image img:hover {
  transform: scale(1.03);
}

.sweet-content {
  flex: 1 1 420px;
}

.sweet-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.sweet-content h2 .accent1 {
  color: var(--accent1);
}

.sweet-content h2 .accent2 {
  color: var(--accent2);
}

.sweet-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #5b4e4e;
}

.points {
  list-style: none;
  font-weight: 600;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 25px;
  font-size: 1rem;
}

.points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a3f3f;
}

@media (max-width: 900px) {
  .sweet-container {
    flex-direction: column;
    text-align: center;
  }

  .sweet-content h2 {
    font-size: 1.9rem;
  }

  .points {
    grid-template-columns: 1fr;
  }
}
/* Packages Section */
.packages-section {
  text-align: center;
  background: linear-gradient(180deg, #fff8f3 0%, #ffe6e6 100%);
  padding: 100px 20px;
  border-radius: 40px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Animated background circles */
.packages-section::before,
.packages-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.packages-section::before {
  width: 200px;
  height: 200px;
  background: #ff8f88;
  top: -60px;
  left: -60px;
  animation-delay: 0s;
}

.packages-section::after {
  width: 250px;
  height: 250px;
  background: #23827f;
  bottom: -80px;
  right: -80px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

/* Content styling */
.packages-content {
  position: relative;
  z-index: 2;
}

.call-text {
  font-family: "Caveat", cursive;
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.packages-content h2 {
  font-size: 44px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.packages-content .highlight {
  color: #ff6f61;
}

.packages-content .celebration {
  color: #1a9b83;
}

/* Wavy underline (hand-drawn style) */
.wavy-line {
  width: 220px;
  height: 30px;
  margin: 25px auto 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='30'><path d='M0 15 Q10 5,20 15 T40 15 T60 15 T80 15 T100 15 T120 15 T140 15 T160 15 T180 15 T200 15 T220 15' stroke='%23333' stroke-width='3' fill='transparent' stroke-linecap='round'/></svg>") no-repeat center;
  background-size: contain;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Title styling */
.packages-content h2 {
  font-size: 56px;
  font-weight: 800;
  color: #23827f;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

/* Highlight the “Designed” word */
.packages-content h2 span {
  color: #ff6f61;
  text-shadow: 2px 2px 0 #fff;
}

/* Subtitle text */
.packages-content p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.9;
}

/* Title hover animation */
.packages-content h2:hover {
  transform: scale(1.02);
  transition: 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
  .packages-content h2 {
    font-size: 40px;
  }

  .packages-content p {
    font-size: 16px;
  }
}
.services-section {
  background: #fddfd8;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.services-title {
  font-family: 'DynaPuff', cursive;
  font-size: 3rem;
  color: #21736f;
  margin-bottom: 10px;
}

.services-subtitle {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 40px;
  font-weight: 500;
}

.services-subtitle span {
  color: #f36f5b;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #21736f;
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: 600;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* === FINAL BACKGROUND FIX === */
html, body {
  background: linear-gradient(to bottom, #fff6ec 0%, #ffeaea 100%) !important;
  min-height: 100%;
  overflow-x: hidden;
}

/* make all sections blend smoothly */
section, .faq-section, .sweet-section, .packages-section, .services-section, .contact-section, .about-section, .promo-section, .features-section, .sweet-footer {
  background: transparent !important;
}

/* remove any accidental white gaps */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff6ec 0%, #ffeaea 100%);
  z-index: -1;
}

.sweet-top-image {
  text-align: center;
  margin: 40px 0 -20px;
}

.sweet-top-image img {
  display: inline-block;
  max-width: 250px;
  width: 100%;
  height: auto;
}
/* Background container */
.packages-banner {
  background: #fff8ef; /* soft cream background */
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 900px;
}


/* Heading style */
.packages-content h2 {
  font-family: 'DynaPuff', cursive;
  font-size: 2.8rem;
  color: #2e897c; /* teal-green */
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Highlighted orange word */
.packages-content h2 .highlight {
  color: #f37035; /* sweet orange accent */
}

/* Celebration word (green tone) */
.packages-content h2 .celebration {
  color: #2e897c;
}

/* Paragraph text */
.packages-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .packages-content h2 {
    font-size: 2rem;
  }

  .packages-content p {
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-69b7090 *//* FAQ Section Styling */
.faq-section {
  background: linear-gradient(to bottom, #ffd9de 0%, #fff6e3 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq-title {
  font-size: 48px;
  color: #23827f;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

/* FAQ Boxes */
details {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

summary {
  background: #ff8f88;
  color: #fff;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  list-style: none;
  position: relative;
}

summary::marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  padding: 20px 25px;
  background: #fff;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  border-top: 1px solid #ffe1e1;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 36px;
  }

  summary {
    font-size: 16px;
    padding: 15px 20px;
  }
}

/* Footer Styling */
.sweet-footer {
  background: linear-gradient(to bottom, #fff6e3 0%, #ffe3e3 100%);
  text-align: center;
  padding: 60px 20px;
  border-top: 4px solid #ffd9de;
  font-family: "Poppins", sans-serif;
  border-radius: 30px 30px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 190px;
  height: auto;
  margin: 0 auto 20px auto;
  transition: transform 0.3s ease;
  display: block;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 18px;
  color: #23827f;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social a {
  display: inline-block;
  background-color: #ff8f88;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 42px;
  text-align: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.footer-social a:hover {
  background-color: #23827f;
  transform: scale(1.1);
}

.footer-copy {
  font-size: 15px;
  color: #666;
  text-align: center;
}

.footer-copy a {
  color: #ff8f88;
  text-decoration: none;
  font-weight: 600;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-logo {
    width: 150px;
  }

  .footer-tagline {
    font-size: 16px;
  }

  .footer-copy {
    font-size: 14px;
  }
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #47b39c; /* same green hover as others */
  transform: scale(1.2);
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #47b39c; /* same green hover as others */
  transform: scale(1.2);
}

/* Pretzel Symbol (make it match icon look) */
.pretzel-icon {
  font-size: 1.4rem;
  color: #fff !important; /* white color */
  text-decoration: none;
}/* End custom CSS */