body {
    font-family: 'Questrial', sans-serif;
}

/* Slogan Ribbon */

.slogan-ribbon {
  position: relative;
  background-color: #ffc4ea; /* stronger pink */
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  width: fit-content;
  margin: 2rem auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
}

.slogan-ribbon::before,
.slogan-ribbon::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1rem solid transparent;
  z-index: -1;
}

.slogan-ribbon::before {
  left: -2rem;
  border-right-color: #ffc4ea;
}

.slogan-ribbon::after {
  right: -2rem;
  border-left-color: #ffc4ea;
}

.slogan-ribbon p {
  margin: 0;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffc4ea;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.category-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.category-card span {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

/* Secondary Navigation Bar */

.secondary-nav {
  border-bottom: 1px solid #ccc;
  background-color: white;
  padding: 12px 0;
  text-align: center;
}

.secondary-nav ul {
  list-style: none;           /* Remove bullets */
  padding: 0;
  margin: 0;
  display: flex;              /* Make horizontal */
  justify-content: center;    /* Center the items */
  flex-wrap: wrap;            /* Wrap on small screens */
  gap: 24px;                  /* Space between links */
}

.secondary-nav li {
  margin: 0;
}

.secondary-nav a {
  text-decoration: none;
  color: #fc78b5;            
  font-weight: 600;
  font-size: 16px;
}

.secondary-nav a.highlight {
  color: #ffc4ea;
}

.shop-label {
  text-align: center;
  font-size: 75px;
  font-weight: 300;
  color: #fc78b5; 
  font-family: 'Italiana', cursive;
  margin-top: 40px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.striped-line {
  height: 4px;
  width: 175px;
  margin: 20px auto;
  background: repeating-linear-gradient(
    45deg,
    #fc78b5,
    #fc78b5 10px,
    #f0f0f0 10px,
    #f0f0f0 20px
  );
  border-radius: 2px;
}


/* Top Nav */
.top-nav {
  background-color: #ffc4ea;
  padding: 1.5rem 0;
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 0 1rem;
}

.nav-list.left {
  justify-self: end;
}

.nav-list.right {
  justify-self: start;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  background-color: transparent;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  white-space: nowrap;
  border-left: 2px solid white;
}

.nav-list li:last-child a {
  border-right: 2px solid white;
}

.nav-logo img {
  height: 200px;
  display: block;
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animated X state */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav-drawer {
  background-color: #ffc4ea;
  border-top: 2px solid rgba(255,255,255,0.6);
}

.mobile-nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.mobile-nav-drawer a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: background-color 0.15s ease;
}

.mobile-nav-drawer a:hover {
  background-color: rgba(255,255,255,0.25);
}

/* Stacked layout: left nav above logo, right nav below */
@media (max-width: 900px) {
  .nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
  }
  .nav-logo img { height: 150px; }
  .nav-list a { padding: 0.5rem 0.75rem; font-size: 14px; }
}

/* Hamburger: only for very small screens */
@media (max-width: 380px) {
  .nav-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 0 1rem;
  }
  .nav-list { display: none; }
  .nav-logo img { height: 100px; }
  .nav-hamburger { display: flex; }
}



/* Shop; page title */
.page-title {
  text-align: center;
  margin-top: 50px;
  font-size: 2.5rem;
  color: #333;
  font-weight: 500;
  font-family: cursive;
}


/* Product grid stuff */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* ensures square box */
  overflow: hidden;
  border-radius: 6px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures cropping instead of stretching */
  display: block;
}

.product-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}


/* Product Details - Desktop */
.product-detail-container {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 1.5rem;
}

.product-detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  gap: 40px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  padding: 24px;
}

.product-detail-image {
  padding: 0;              
  background: transparent; 
  display: block;
  max-width: 560px;
}

.product-detail-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.product-detail-info {
  flex: 1 1 350px;
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-name { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; color: #222; }
.product-price { font-size: 1.5rem; font-weight: 600; color: #fc78b5; margin-bottom: 1rem; }
.product-description { font-size: 1rem; line-height: 1.6; color: #555; margin-bottom: 2rem;  white-space: pre-line}

.product-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.product-actions input[type="number"] {
  width: 60px;
  padding: 0.4rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
}

.add-to-cart-button {
  padding: 0.6rem 1.4rem;
  background-color: #fc78b5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.add-to-cart-button:hover { background-color: #e05a9f; }

/* === Responsive for Mobile === */
@media (max-width: 900px) {
  .product-detail-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 24px;
  }

  .product-detail-info {
    padding: 0;
  }

  .product-detail-image {
    max-width: 100%;
  }

  .product-detail-image img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .product-name { font-size: 1.5rem; }
  .product-price { font-size: 1.2rem; }
  .product-description { font-size: 0.95rem; }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .add-to-cart-button {
    width: 100%;
    text-align: center;
  }
}


/* About Page */
.about-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1100px;
    margin: 2rem auto 4rem auto;
    padding: 0 1rem;
}
.about-text {
    font-size: 1.15rem;      /* slightly bigger than default */
    line-height: 1.65;       /* increases readability */
    letter-spacing: 0.5px;   /* subtle spacing between letters */
    margin-bottom: 1.5rem;   /* space between paragraphs */
}
.about-content { flex: 1 1 60%; }
.about-image { 
    flex: 0 0 340px; 
    margin-top: 30px;
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    object-fit: cover;
}
.about-cta {
    display: inline-block;
    padding: .75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    background: #fc78b5;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: background-color 0.2s ease;
}
.about-cta:hover { background-color: #e05a9f; }

@media (max-width: 900px) {
    .about-wrapper { flex-direction: column; }
    .about-image { order: 2; width: 100%; max-width: 480px; }
    .about-content { order: 1; }
}


/* Favors Page */
/* Favors page */
.favors-wrapper {
    max-width: 1100px;
    margin: 2rem auto 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.favors-intro {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.favors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.favor-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.favors-cta {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
}


/* Tesimonials */
/* Testimonials page */
.testimonials-wrapper {
    max-width: 1100px;
    margin: 2rem auto 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: #fc78b5;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    text-align: right;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact page */
.contact-wrapper {
    max-width: 700px;
    margin: 2rem auto 4rem auto;
    padding: 0 1rem;
}

.contact-intro {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    background-color: #fc78b5;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: #e05a9f;
}


/* Cart */
/* Treat card */
.treat-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.treat-card button {
    margin-top: 0.5rem;
    background-color: #ffc4ea;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.treat-card button:hover {
    background-color: #fc78b5;
}

/* Live cart display */
#cart-display div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
#cart-display button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #fc78b5;
}


/* Floating Cart - Always Bottom Right, Consistent Across Devices */
#floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: inherit;
}

/* Bubble Toggle Button */
#cart-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;                     /* spacing for icon + text */
    background-color: #fc78b5;
    color: #fff;
    border: none;
    border-radius: 50px;             /* smooth pill shape */
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: background-color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

#cart-toggle:hover {
    background-color: #e05a9f;
    transform: translateY(-2px);
}

/* Dropdown expands upward from the bubble */
#cart-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;                    /* anchored above the button */
    right: 0;
    margin-bottom: 0.75rem;
    width: 320px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

#floating-cart.open #cart-dropdown {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Cart Items */
#cart-dropdown > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

#cart-dropdown > div:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Remove Button */
#cart-dropdown button {
    background: transparent;
    border: none;
    color: #fc78b5;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

#cart-dropdown button:hover {
    color: #ff90c3;
}

/* "Go to Cart" CTA */
.go-to-cart-btn {
    display: block;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    background-color: #fc78b5;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.go-to-cart-btn:hover {
    background-color: #e05a9f;
    transform: translateY(-1px);
}

/* Total Price */
#cart-dropdown > div.total {
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: right;
}

/* Scrollbar Styling */
#cart-dropdown::-webkit-scrollbar {
    width: 6px;
}

#cart-dropdown::-webkit-scrollbar-thumb {
    background-color: rgba(252, 120, 181, 0.5);
    border-radius: 3px;
}


/*slides */

.product-detail-image .swiper{
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.product-detail-image .swiper-slide{ display:flex; }
.product-detail-image .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px){
  .product-detail-card{ grid-template-columns: 1fr; gap: 24px; }
  .product-detail-image .swiper{ max-width: 100%; }
}


.product-card .product-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;   /* keeps consistent card height */
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card .img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #888;
  font-size: 0.9rem;
}

/* === Slider theme (pink, not blue) === */
:root{
  --accent:#fc78b5;
  --accent-soft:#ffd1e6;
}

/* Scope swiper colors to pink */
#product-gallery,
.hero-carousel-swiper {
  --swiper-theme-color: var(--accent);
  --swiper-navigation-color: var(--accent);
  --swiper-pagination-color: var(--accent);
}

/* Pagination dots */
#product-gallery .swiper-pagination-bullet{
  background: var(--accent-soft);
  opacity: 1;
  width: 8px; height: 8px;
}
#product-gallery .swiper-pagination-bullet-active{
  background: var(--accent);
  transform: scale(1.25);
}

/* Arrows – round white chips with pink icons */
#product-gallery .swiper-button-next,
#product-gallery .swiper-button-prev{
  width: 38px; height: 38px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
#product-gallery .swiper-button-next::after,
#product-gallery .swiper-button-prev::after{
  font-size: 18px;
}
#product-gallery .swiper-button-next:focus,
#product-gallery .swiper-button-prev:focus{ outline: none; }
#product-gallery .swiper-button-next:focus-visible,
#product-gallery .swiper-button-prev:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* Cupcake page carousel */
/* Main image wrapper keeps consistent aspect ratio */
.carousel-main-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;   /* adjust ratio (4:3, 1:1, 16:9, etc.) */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-main-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnails */
.carousel-thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.carousel-thumbnails img.thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252,120,181,0.8);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

.carousel-arrow.right {
  right: 10px;
}

.carousel-arrow:not(.right) {
  left: 10px;
}

/* Cart toast notification */
.cart-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: #333;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(-20px);
  z-index: 9999;
  font-weight: 600;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* No specials notice */
.no-specials-notice {
  max-width: 520px;
  margin: 3rem auto;
  padding: 2rem 2.5rem;
  background-color: #fff;
  border: 2px dashed #ffc4ea;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(252, 120, 181, 0.12);
}

.no-specials-notice .notice-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.no-specials-notice h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fc78b5;
  margin: 0 0 0.5rem;
}

.no-specials-notice p {
  font-size: 1rem;
  color: #777;
  margin: 0;
  line-height: 1.6;
}


/* ── Holiday Classes Carousel ──────────────────── */
.val-carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.val-carousel-main-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: linear-gradient(#fff, #f3f3f3);
}

.val-carousel-main-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.val-carousel-thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.val-carousel-thumbnails img.val-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.val-carousel-thumbnails img.val-thumb.active {
  border-color: #fc78b5;
}

.val-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252,120,181,0.85);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.val-carousel-arrow.left { left: 10px; }
.val-carousel-arrow.right { right: 10px; }


/* ── Hero Carousel ─────────────────────────────── */
.hero-carousel-wrapper {
  padding: 2rem 0 0;
}

.hero-carousel-swiper {
  max-width: 900px;
  width: 90%;
  height: 350px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-carousel-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-shop-now {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hero-shop-now.btn-primary:hover {
  transform: translate(-50%, -50%);
}

@media (max-width: 600px) {
  .hero-carousel-swiper { height: 220px; }
}


/* ── Primary Button (pill) ─────────────────────── */
.btn-primary {
  display: inline-block;
  background-color: #fc78b5;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-width: 200px;
  text-align: center;
}

.btn-primary:hover {
  background-color: #e05a9f;
  transform: translateY(-2px);
}


/* ── Homepage Banner Cards ─────────────────────── */
.banner-card {
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 900px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.banner-card--pink {
  background: #ffe3f0;
}

.banner-card--outline {
  background: #fff;
  border: 2px solid #ffc4ea;
}

.banner-card__title {
  color: #fc78b5;
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.banner-card__text {
  color: #333;
  font-size: 1.1rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.banner-card__subtext {
  color: #555;
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}


/* ── Site Footer ───────────────────────────────── */
.site-footer {
  background-color: #ffc4ea;
  margin-top: 4rem;
  padding: 2.5rem 1.5rem 1.5rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.site-footer__logo {
  height: 80px;
  display: block;
  margin-bottom: 0.5rem;
}

.site-footer__tagline {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover {
  color: #e05a9f;
}

.site-footer__contact p {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: #444;
}

.site-footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 1rem;
}
/* 404 page */
.not-found-container {
  text-align: center;
  padding: 4rem 1rem 6rem;
}

.not-found-code {
  font-size: 6rem;
  font-weight: 700;
  color: #fc78b5;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.not-found-message {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.5rem;
}

.not-found-sub {
  color: #888;
  margin: 0 0 2rem;
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
